From svn at tinysofa.org Wed Sep 1 18:59:39 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 2 Sep 2004 04:59:39 +1000 (EST) Subject: [tinysofa-svn] r4232 - tinysofa/misc/comps/releases/1.1 Message-ID: <20040901185939.EDB5F4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-02 04:59:38 +1000 (Thu, 02 Sep 2004) New Revision: 4232 Modified: tinysofa/misc/comps/releases/1.1/comps Log: - remove gettext from Base Modified: tinysofa/misc/comps/releases/1.1/comps =================================================================== --- tinysofa/misc/comps/releases/1.1/comps 2004-08-31 19:27:49 UTC (rev 4231) +++ tinysofa/misc/comps/releases/1.1/comps 2004-09-01 18:59:38 UTC (rev 4232) @@ -32,7 +32,6 @@ gawk libstdc++ libgcc - gettext glib glibc glibc-i18n-common From svn at tinysofa.org Wed Sep 1 20:50:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 2 Sep 2004 06:50:35 +1000 (EST) Subject: [tinysofa-svn] r4233 - tinysofa/releases/1.1/apt/current/sources Message-ID: <20040901205035.62BEB4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-02 06:50:34 +1000 (Thu, 02 Sep 2004) New Revision: 4233 Modified: tinysofa/releases/1.1/apt/current/sources/apt.cron Log: - fix gpg home location Modified: tinysofa/releases/1.1/apt/current/sources/apt.cron =================================================================== --- tinysofa/releases/1.1/apt/current/sources/apt.cron 2004-09-01 18:59:38 UTC (rev 4232) +++ tinysofa/releases/1.1/apt/current/sources/apt.cron 2004-09-01 20:50:34 UTC (rev 4233) @@ -19,7 +19,7 @@ exit 1 fi -export GNUPGHOME="/etc/apt/gpg/.gnupg" +export GNUPGHOME="/etc/apt/gpg/gnupg" for command in $RUN_COMMANDS; do /usr/bin/apt-get -qq -y $command From svn at tinysofa.org Wed Sep 1 20:51:23 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 2 Sep 2004 06:51:23 +1000 (EST) Subject: [tinysofa-svn] r4234 - tinysofa/releases/1.1/apt/current/specs Message-ID: <20040901205123.DA7894E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-02 06:51:23 +1000 (Thu, 02 Sep 2004) New Revision: 4234 Modified: tinysofa/releases/1.1/apt/current/specs/apt.spec Log: - increase release Modified: tinysofa/releases/1.1/apt/current/specs/apt.spec =================================================================== --- tinysofa/releases/1.1/apt/current/specs/apt.spec 2004-09-01 20:50:34 UTC (rev 4233) +++ tinysofa/releases/1.1/apt/current/specs/apt.spec 2004-09-01 20:51:23 UTC (rev 4234) @@ -4,7 +4,7 @@ Summary: Debian's Advanced Packaging Tool with RPM support. Name: apt Version: 0.5.15cnc6 -Release: 4jh +Release: 5jh Epoch: 0 Group: main URL: https://moin.conectiva.com.br/AptRpm From svn at tinysofa.org Fri Sep 3 13:11:55 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 3 Sep 2004 23:11:55 +1000 (EST) Subject: [tinysofa-svn] r4235 - in tinysofa/releases/1.1/squid/current: sources specs Message-ID: <20040903131155.2727E4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-03 23:11:54 +1000 (Fri, 03 Sep 2004) New Revision: 4235 Added: tinysofa/releases/1.1/squid/current/sources/squid-2.5.STABLE6-ntlm_fetch_string.patch Modified: tinysofa/releases/1.1/squid/current/specs/squid.spec Log: - add fix for ntlm auth DoS Added: tinysofa/releases/1.1/squid/current/sources/squid-2.5.STABLE6-ntlm_fetch_string.patch =================================================================== --- tinysofa/releases/1.1/squid/current/sources/squid-2.5.STABLE6-ntlm_fetch_string.patch 2004-09-01 20:51:23 UTC (rev 4234) +++ tinysofa/releases/1.1/squid/current/sources/squid-2.5.STABLE6-ntlm_fetch_string.patch 2004-09-03 13:11:54 UTC (rev 4235) @@ -0,0 +1,42 @@ +Index: squid/helpers/ntlm_auth/fakeauth/fakeauth_auth.c +diff -c squid/helpers/ntlm_auth/fakeauth/fakeauth_auth.c:1.3 squid/helpers/ntlm_auth/fakeauth/fakeauth_auth.c:1.3.2.1 +*** squid/helpers/ntlm_auth/fakeauth/fakeauth_auth.c:1.3 Wed Aug 29 08:57:38 2001 +--- squid/helpers/ntlm_auth/fakeauth/fakeauth_auth.c Fri Aug 20 02:09:58 2004 +*************** +*** 150,156 **** + o = WSWAP(str->offset); + + /* Sanity checks. XXX values arbitrarialy chosen */ +! if (l <= 0 || l >= 32 || o >= 256) { + fprintf(stderr, "ntlmGetString: insane: l:%d o:%d\n", l, o); + return (NULL); + } +--- 150,156 ---- + o = WSWAP(str->offset); + + /* Sanity checks. XXX values arbitrarialy chosen */ +! if (l <= 0 || o <= 0 || l >= 32 || o >= 256) { + fprintf(stderr, "ntlmGetString: insane: l:%d o:%d\n", l, o); + return (NULL); + } +Index: squid/lib/ntlmauth.c +diff -c squid/lib/ntlmauth.c:1.5.2.2 squid/lib/ntlmauth.c:1.5.2.3 +*** squid/lib/ntlmauth.c:1.5.2.2 Sun Jul 21 20:06:31 2002 +--- squid/lib/ntlmauth.c Fri Aug 20 02:09:58 2004 +*************** +*** 84,90 **** + o = WSWAP(str->offset); + /* debug("fetch_string(plength=%d,l=%d,o=%d)\n",length,l,o); */ + +! if (l < 0 || l > MAX_FIELD_LENGTH || o + l > length || o == 0) { + /* debug("ntlmssp: insane data (l: %d, o: %d)\n", l,o); */ + return rv; + } +--- 84,90 ---- + o = WSWAP(str->offset); + /* debug("fetch_string(plength=%d,l=%d,o=%d)\n",length,l,o); */ + +! if (l < 0 || o <= 0 || l > MAX_FIELD_LENGTH || o + l > length) { + /* debug("ntlmssp: insane data (l: %d, o: %d)\n", l,o); */ + return rv; + } Modified: tinysofa/releases/1.1/squid/current/specs/squid.spec =================================================================== --- tinysofa/releases/1.1/squid/current/specs/squid.spec 2004-09-01 20:51:23 UTC (rev 4234) +++ tinysofa/releases/1.1/squid/current/specs/squid.spec 2004-09-03 13:11:54 UTC (rev 4235) @@ -4,7 +4,7 @@ Summary: The Squid proxy caching server. Name: squid Version: 2.5.STABLE5 -Release: 7ts +Release: 8jh Epoch: 0 License: GPL Group: extra @@ -34,7 +34,9 @@ Patch107: http://www.squid-cache.org/Versions/v2/2.5/bugs/squid-2.5.STABLE5-deny_info.patch Patch108: http://www.squid-cache.org/Versions/v2/2.5/bugs/squid-2.5.STABLE5-CONNECT_timeout.patch Patch109: http://www.squid-cache.org/Versions/v2/2.5/bugs/squid-2.5.STABLE5-cache_swap_log.patch +Patch110: http://www1.uk.squid-cache.org/squid/Versions/v2/2.5/bugs/squid-2.5.STABLE6-ntlm_fetch_string.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-root Prereq: logrotate coreutils /usr/bin/find Requires: bash >= 2.0 @@ -77,6 +79,7 @@ %patch107 -p1 %patch108 -p1 %patch109 -p1 +%patch110 -p1 %build @@ -302,6 +305,10 @@ %changelog +* Fri Sep 3 2004 Jaakko Heinonen 2.5.STABLE5-8jh +- add fix for ntlm auth DoS + (http://www.squid-cache.org/bugs/show_bug.cgi?id=1045) + * Thu Aug 05 2004 tsintegrate 2.5.STABLE5-7ts - current (2.5.STABLE5-7jh) integrated as 2.5.STABLE5-7ts for release 1.1 From svn at tinysofa.org Sat Sep 4 13:03:59 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:03:59 +1000 (EST) Subject: [tinysofa-svn] r4236 - in tinysofa/releases/1.1/anaconda: current/specs releases releases/1.1.6 releases/1.1.6/1ts/specs Message-ID: <20040904130359.03EEF4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:03:58 +1000 (Sat, 04 Sep 2004) New Revision: 4236 Added: tinysofa/releases/1.1/anaconda/releases/1.1.6/ tinysofa/releases/1.1/anaconda/releases/1.1.6/1ts/ Modified: tinysofa/releases/1.1/anaconda/current/specs/anaconda.spec tinysofa/releases/1.1/anaconda/releases/1.1.6/1ts/specs/anaconda.spec Log: anaconda: * integrate current (1.1.6-1jh) as releases/1.1.6/1ts Modified: tinysofa/releases/1.1/anaconda/current/specs/anaconda.spec =================================================================== --- tinysofa/releases/1.1/anaconda/current/specs/anaconda.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/anaconda/current/specs/anaconda.spec 2004-09-04 13:03:58 UTC (rev 4236) @@ -2,7 +2,7 @@ ExclusiveArch: i386 i586 Name: anaconda Version: 1.1.6 -Release: 1jh +Release: 1ts Epoch: 1 License: GPL Summary: The tinysofa installation program. @@ -161,6 +161,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 1.1.6-1ts +- current (1.1.6-1jh) integrated as 1.1.6-1ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 1.1.4-1ts - current (1.1.4-1jh) integrated as 1.1.4-1ts for release 1.1 Copied: tinysofa/releases/1.1/anaconda/releases/1.1.6/1ts (from rev 4235, tinysofa/releases/1.1/anaconda/current) Modified: tinysofa/releases/1.1/anaconda/releases/1.1.6/1ts/specs/anaconda.spec =================================================================== --- tinysofa/releases/1.1/anaconda/current/specs/anaconda.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/anaconda/releases/1.1.6/1ts/specs/anaconda.spec 2004-09-04 13:03:58 UTC (rev 4236) @@ -2,7 +2,7 @@ ExclusiveArch: i386 i586 Name: anaconda Version: 1.1.6 -Release: 1jh +Release: 1ts Epoch: 1 License: GPL Summary: The tinysofa installation program. @@ -161,6 +161,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 1.1.6-1ts +- current (1.1.6-1jh) integrated as 1.1.6-1ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 1.1.4-1ts - current (1.1.4-1jh) integrated as 1.1.4-1ts for release 1.1 From svn at tinysofa.org Sat Sep 4 13:04:05 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:04:05 +1000 (EST) Subject: [tinysofa-svn] r4237 - tinysofa/releases/1.1/anaconda Message-ID: <20040904130405.DF85E4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:04:05 +1000 (Sat, 04 Sep 2004) New Revision: 4237 Removed: tinysofa/releases/1.1/anaconda/pristine/ Log: anaconda: * removing pristine (1.1.4-1ts) From svn at tinysofa.org Sat Sep 4 13:04:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:04:13 +1000 (EST) Subject: [tinysofa-svn] r4238 - tinysofa/releases/1.1/anaconda Message-ID: <20040904130413.30FF94E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:04:13 +1000 (Sat, 04 Sep 2004) New Revision: 4238 Added: tinysofa/releases/1.1/anaconda/pristine/ Log: anaconda: * retarget pristine (1.1.4-1ts) to releases/1.1.6/1ts Copied: tinysofa/releases/1.1/anaconda/pristine (from rev 4236, tinysofa/releases/1.1/anaconda/releases/1.1.6/1ts) From svn at tinysofa.org Sat Sep 4 13:04:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:04:28 +1000 (EST) Subject: [tinysofa-svn] r4239 - in tinysofa/releases/1.1/apt: current/specs releases/0.5.15cnc6 releases/0.5.15cnc6/5ts/specs Message-ID: <20040904130428.087C14E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:04:27 +1000 (Sat, 04 Sep 2004) New Revision: 4239 Added: tinysofa/releases/1.1/apt/releases/0.5.15cnc6/5ts/ Modified: tinysofa/releases/1.1/apt/current/specs/apt.spec tinysofa/releases/1.1/apt/releases/0.5.15cnc6/5ts/specs/apt.spec Log: apt: * integrate current (0.5.15cnc6-5jh) as releases/0.5.15cnc6/5ts Modified: tinysofa/releases/1.1/apt/current/specs/apt.spec =================================================================== --- tinysofa/releases/1.1/apt/current/specs/apt.spec 2004-09-04 13:04:13 UTC (rev 4238) +++ tinysofa/releases/1.1/apt/current/specs/apt.spec 2004-09-04 13:04:27 UTC (rev 4239) @@ -4,7 +4,7 @@ Summary: Debian's Advanced Packaging Tool with RPM support. Name: apt Version: 0.5.15cnc6 -Release: 5jh +Release: 5ts Epoch: 0 Group: main URL: https://moin.conectiva.com.br/AptRpm @@ -358,6 +358,9 @@ exit 0 %changelog +* Sat Sep 04 2004 tsintegrate 0.5.15cnc6-5ts +- current (0.5.15cnc6-5jh) integrated as 0.5.15cnc6-5ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 0.5.15cnc6-3ts - current (0.5.15cnc6-3jh) integrated as 0.5.15cnc6-3ts for release 1.1 Copied: tinysofa/releases/1.1/apt/releases/0.5.15cnc6/5ts (from rev 4235, tinysofa/releases/1.1/apt/current) Modified: tinysofa/releases/1.1/apt/releases/0.5.15cnc6/5ts/specs/apt.spec =================================================================== --- tinysofa/releases/1.1/apt/current/specs/apt.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/apt/releases/0.5.15cnc6/5ts/specs/apt.spec 2004-09-04 13:04:27 UTC (rev 4239) @@ -4,7 +4,7 @@ Summary: Debian's Advanced Packaging Tool with RPM support. Name: apt Version: 0.5.15cnc6 -Release: 5jh +Release: 5ts Epoch: 0 Group: main URL: https://moin.conectiva.com.br/AptRpm @@ -358,6 +358,9 @@ exit 0 %changelog +* Sat Sep 04 2004 tsintegrate 0.5.15cnc6-5ts +- current (0.5.15cnc6-5jh) integrated as 0.5.15cnc6-5ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 0.5.15cnc6-3ts - current (0.5.15cnc6-3jh) integrated as 0.5.15cnc6-3ts for release 1.1 From svn at tinysofa.org Sat Sep 4 13:04:33 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:04:33 +1000 (EST) Subject: [tinysofa-svn] r4240 - tinysofa/releases/1.1/apt Message-ID: <20040904130433.E2A884E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:04:33 +1000 (Sat, 04 Sep 2004) New Revision: 4240 Removed: tinysofa/releases/1.1/apt/pristine/ Log: apt: * removing pristine (0.5.15cnc6-3ts) From svn at tinysofa.org Sat Sep 4 13:04:40 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:04:40 +1000 (EST) Subject: [tinysofa-svn] r4241 - tinysofa/releases/1.1/apt Message-ID: <20040904130440.D2C704E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:04:40 +1000 (Sat, 04 Sep 2004) New Revision: 4241 Added: tinysofa/releases/1.1/apt/pristine/ Log: apt: * retarget pristine (0.5.15cnc6-3ts) to releases/0.5.15cnc6/5ts Copied: tinysofa/releases/1.1/apt/pristine (from rev 4239, tinysofa/releases/1.1/apt/releases/0.5.15cnc6/5ts) From svn at tinysofa.org Sat Sep 4 13:04:54 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:04:54 +1000 (EST) Subject: [tinysofa-svn] r4242 - in tinysofa/releases/1.1/bzip2: current/specs releases/1.0.2 releases/1.0.2/16ts/specs Message-ID: <20040904130454.A30134E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:04:54 +1000 (Sat, 04 Sep 2004) New Revision: 4242 Added: tinysofa/releases/1.1/bzip2/releases/1.0.2/16ts/ Modified: tinysofa/releases/1.1/bzip2/current/specs/bzip2.spec tinysofa/releases/1.1/bzip2/releases/1.0.2/16ts/specs/bzip2.spec Log: bzip2: * integrate current (1.0.2-16jh) as releases/1.0.2/16ts Modified: tinysofa/releases/1.1/bzip2/current/specs/bzip2.spec =================================================================== --- tinysofa/releases/1.1/bzip2/current/specs/bzip2.spec 2004-09-04 13:04:40 UTC (rev 4241) +++ tinysofa/releases/1.1/bzip2/current/specs/bzip2.spec 2004-09-04 13:04:54 UTC (rev 4242) @@ -1,7 +1,7 @@ Summary: A file compression utility. Name: bzip2 Version: 1.0.2 -Release: 16jh +Release: 16ts License: BSD Group: main URL: http://sources.redhat.com/bzip2/ @@ -105,6 +105,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 1.0.2-16ts +- current (1.0.2-16jh) integrated as 1.0.2-16ts for release 1.1-U1 + * Fri Aug 13 2004 Jaakko Heinonen - port to tinysosfa 1.1 Copied: tinysofa/releases/1.1/bzip2/releases/1.0.2/16ts (from rev 4235, tinysofa/releases/1.1/bzip2/current) Modified: tinysofa/releases/1.1/bzip2/releases/1.0.2/16ts/specs/bzip2.spec =================================================================== --- tinysofa/releases/1.1/bzip2/current/specs/bzip2.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/bzip2/releases/1.0.2/16ts/specs/bzip2.spec 2004-09-04 13:04:54 UTC (rev 4242) @@ -1,7 +1,7 @@ Summary: A file compression utility. Name: bzip2 Version: 1.0.2 -Release: 16jh +Release: 16ts License: BSD Group: main URL: http://sources.redhat.com/bzip2/ @@ -105,6 +105,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 1.0.2-16ts +- current (1.0.2-16jh) integrated as 1.0.2-16ts for release 1.1-U1 + * Fri Aug 13 2004 Jaakko Heinonen - port to tinysosfa 1.1 From svn at tinysofa.org Sat Sep 4 13:04:59 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:04:59 +1000 (EST) Subject: [tinysofa-svn] r4243 - tinysofa/releases/1.1/bzip2 Message-ID: <20040904130459.297D44E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:04:58 +1000 (Sat, 04 Sep 2004) New Revision: 4243 Removed: tinysofa/releases/1.1/bzip2/pristine/ Log: bzip2: * removing pristine (1.0.2-15ts) From svn at tinysofa.org Sat Sep 4 13:05:06 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:05:06 +1000 (EST) Subject: [tinysofa-svn] r4244 - tinysofa/releases/1.1/bzip2 Message-ID: <20040904130506.2F1D14E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:05:05 +1000 (Sat, 04 Sep 2004) New Revision: 4244 Added: tinysofa/releases/1.1/bzip2/pristine/ Log: bzip2: * retarget pristine (1.0.2-15ts) to releases/1.0.2/16ts Copied: tinysofa/releases/1.1/bzip2/pristine (from rev 4242, tinysofa/releases/1.1/bzip2/releases/1.0.2/16ts) From svn at tinysofa.org Sat Sep 4 13:05:20 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:05:20 +1000 (EST) Subject: [tinysofa-svn] r4245 - in tinysofa/releases/1.1/cdrtools: current/specs releases/2.00.3 releases/2.00.3/9ts/specs Message-ID: <20040904130520.57C724E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:05:20 +1000 (Sat, 04 Sep 2004) New Revision: 4245 Added: tinysofa/releases/1.1/cdrtools/releases/2.00.3/9ts/ Modified: tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec tinysofa/releases/1.1/cdrtools/releases/2.00.3/9ts/specs/cdrtools.spec Log: cdrtools: * integrate current (2.00.3-9jh) as releases/2.00.3/9ts Modified: tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec =================================================================== --- tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-04 13:05:05 UTC (rev 4244) +++ tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-04 13:05:20 UTC (rev 4245) @@ -1,6 +1,6 @@ Name: cdrtools Version: 2.00.3 -Release: 9jh +Release: 9ts Summary: Tools for CD/DVD recording Summary(pt_BR): Ferramentas para grava??o de CDs e DVDS Group: extra @@ -248,6 +248,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 2.00.3-9ts +- current (2.00.3-9jh) integrated as 2.00.3-9ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 2.00.3-8ts - current (2.00.3-8jh) integrated as 2.00.3-8ts for release 1.1 Copied: tinysofa/releases/1.1/cdrtools/releases/2.00.3/9ts (from rev 4235, tinysofa/releases/1.1/cdrtools/current) Modified: tinysofa/releases/1.1/cdrtools/releases/2.00.3/9ts/specs/cdrtools.spec =================================================================== --- tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/cdrtools/releases/2.00.3/9ts/specs/cdrtools.spec 2004-09-04 13:05:20 UTC (rev 4245) @@ -1,6 +1,6 @@ Name: cdrtools Version: 2.00.3 -Release: 9jh +Release: 9ts Summary: Tools for CD/DVD recording Summary(pt_BR): Ferramentas para grava??o de CDs e DVDS Group: extra @@ -248,6 +248,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 2.00.3-9ts +- current (2.00.3-9jh) integrated as 2.00.3-9ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 2.00.3-8ts - current (2.00.3-8jh) integrated as 2.00.3-8ts for release 1.1 From svn at tinysofa.org Sat Sep 4 13:05:25 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:05:25 +1000 (EST) Subject: [tinysofa-svn] r4246 - tinysofa/releases/1.1/cdrtools Message-ID: <20040904130525.B21374E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:05:25 +1000 (Sat, 04 Sep 2004) New Revision: 4246 Removed: tinysofa/releases/1.1/cdrtools/pristine/ Log: cdrtools: * removing pristine (2.00.3-8ts) From svn at tinysofa.org Sat Sep 4 13:05:31 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:05:31 +1000 (EST) Subject: [tinysofa-svn] r4247 - tinysofa/releases/1.1/cdrtools Message-ID: <20040904130531.899EA4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:05:31 +1000 (Sat, 04 Sep 2004) New Revision: 4247 Added: tinysofa/releases/1.1/cdrtools/pristine/ Log: cdrtools: * retarget pristine (2.00.3-8ts) to releases/2.00.3/9ts Copied: tinysofa/releases/1.1/cdrtools/pristine (from rev 4245, tinysofa/releases/1.1/cdrtools/releases/2.00.3/9ts) From svn at tinysofa.org Sat Sep 4 13:05:46 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:05:46 +1000 (EST) Subject: [tinysofa-svn] r4248 - in tinysofa/releases/1.1/cracklib: current/specs releases/2.7 releases/2.7/20ts/specs Message-ID: <20040904130546.66B494E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:05:46 +1000 (Sat, 04 Sep 2004) New Revision: 4248 Added: tinysofa/releases/1.1/cracklib/releases/2.7/20ts/ Modified: tinysofa/releases/1.1/cracklib/current/specs/cracklib.spec tinysofa/releases/1.1/cracklib/releases/2.7/20ts/specs/cracklib.spec Log: cracklib: * integrate current (2.7-20jh) as releases/2.7/20ts Modified: tinysofa/releases/1.1/cracklib/current/specs/cracklib.spec =================================================================== --- tinysofa/releases/1.1/cracklib/current/specs/cracklib.spec 2004-09-04 13:05:31 UTC (rev 4247) +++ tinysofa/releases/1.1/cracklib/current/specs/cracklib.spec 2004-09-04 13:05:46 UTC (rev 4248) @@ -1,7 +1,7 @@ Summary: A password-checking library. Name: cracklib Version: 2.7 -Release: 20jh +Release: 20ts Group: main Source: http://www.users.dircon.co.uk/~crypto/download/cracklib,2.7.tgz Source1: crack.h @@ -93,6 +93,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 2.7-20ts +- current (2.7-20jh) integrated as 2.7-20ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 2.7-19ts - current (2.7-19jh) integrated as 2.7-19ts for release 1.1 Copied: tinysofa/releases/1.1/cracklib/releases/2.7/20ts (from rev 4235, tinysofa/releases/1.1/cracklib/current) Modified: tinysofa/releases/1.1/cracklib/releases/2.7/20ts/specs/cracklib.spec =================================================================== --- tinysofa/releases/1.1/cracklib/current/specs/cracklib.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/cracklib/releases/2.7/20ts/specs/cracklib.spec 2004-09-04 13:05:46 UTC (rev 4248) @@ -1,7 +1,7 @@ Summary: A password-checking library. Name: cracklib Version: 2.7 -Release: 20jh +Release: 20ts Group: main Source: http://www.users.dircon.co.uk/~crypto/download/cracklib,2.7.tgz Source1: crack.h @@ -93,6 +93,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 2.7-20ts +- current (2.7-20jh) integrated as 2.7-20ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 2.7-19ts - current (2.7-19jh) integrated as 2.7-19ts for release 1.1 From svn at tinysofa.org Sat Sep 4 13:05:51 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:05:51 +1000 (EST) Subject: [tinysofa-svn] r4249 - tinysofa/releases/1.1/cracklib Message-ID: <20040904130551.257234E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:05:50 +1000 (Sat, 04 Sep 2004) New Revision: 4249 Removed: tinysofa/releases/1.1/cracklib/pristine/ Log: cracklib: * removing pristine (2.7-19ts) From svn at tinysofa.org Sat Sep 4 13:05:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:05:57 +1000 (EST) Subject: [tinysofa-svn] r4250 - tinysofa/releases/1.1/cracklib Message-ID: <20040904130557.61C774E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:05:57 +1000 (Sat, 04 Sep 2004) New Revision: 4250 Added: tinysofa/releases/1.1/cracklib/pristine/ Log: cracklib: * retarget pristine (2.7-19ts) to releases/2.7/20ts Copied: tinysofa/releases/1.1/cracklib/pristine (from rev 4248, tinysofa/releases/1.1/cracklib/releases/2.7/20ts) From svn at tinysofa.org Sat Sep 4 13:06:10 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:06:10 +1000 (EST) Subject: [tinysofa-svn] r4251 - in tinysofa/releases/1.1/cyrus-imapd: current/specs releases/2.2.3 releases/2.2.3/6ts/specs Message-ID: <20040904130610.977B74E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:06:10 +1000 (Sat, 04 Sep 2004) New Revision: 4251 Added: tinysofa/releases/1.1/cyrus-imapd/releases/2.2.3/6ts/ Modified: tinysofa/releases/1.1/cyrus-imapd/current/specs/cyrus-imapd.spec tinysofa/releases/1.1/cyrus-imapd/releases/2.2.3/6ts/specs/cyrus-imapd.spec Log: cyrus-imapd: * integrate current (2.2.3-6jh) as releases/2.2.3/6ts Modified: tinysofa/releases/1.1/cyrus-imapd/current/specs/cyrus-imapd.spec =================================================================== --- tinysofa/releases/1.1/cyrus-imapd/current/specs/cyrus-imapd.spec 2004-09-04 13:05:57 UTC (rev 4250) +++ tinysofa/releases/1.1/cyrus-imapd/current/specs/cyrus-imapd.spec 2004-09-04 13:06:10 UTC (rev 4251) @@ -1,7 +1,7 @@ Summary: A high-performance mail store with IMAP and POP3 support. Name: cyrus-imapd Version: 2.2.3 -Release: 6jh +Release: 6ts License: BSD Group: extra URL: http://asg.web.cmu.edu/cyrus/imapd/ @@ -235,6 +235,9 @@ %{_includedir}/cyrus %changelog +* Sat Sep 04 2004 tsintegrate 2.2.3-6ts +- current (2.2.3-6jh) integrated as 2.2.3-6ts for release 1.1-U1 + * Thu Aug 19 2004 Jaakko Heinonen - compile with -fPIC - x86_64 fixes Copied: tinysofa/releases/1.1/cyrus-imapd/releases/2.2.3/6ts (from rev 4235, tinysofa/releases/1.1/cyrus-imapd/current) Modified: tinysofa/releases/1.1/cyrus-imapd/releases/2.2.3/6ts/specs/cyrus-imapd.spec =================================================================== --- tinysofa/releases/1.1/cyrus-imapd/current/specs/cyrus-imapd.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/cyrus-imapd/releases/2.2.3/6ts/specs/cyrus-imapd.spec 2004-09-04 13:06:10 UTC (rev 4251) @@ -1,7 +1,7 @@ Summary: A high-performance mail store with IMAP and POP3 support. Name: cyrus-imapd Version: 2.2.3 -Release: 6jh +Release: 6ts License: BSD Group: extra URL: http://asg.web.cmu.edu/cyrus/imapd/ @@ -235,6 +235,9 @@ %{_includedir}/cyrus %changelog +* Sat Sep 04 2004 tsintegrate 2.2.3-6ts +- current (2.2.3-6jh) integrated as 2.2.3-6ts for release 1.1-U1 + * Thu Aug 19 2004 Jaakko Heinonen - compile with -fPIC - x86_64 fixes From svn at tinysofa.org Sat Sep 4 13:06:15 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:06:15 +1000 (EST) Subject: [tinysofa-svn] r4252 - tinysofa/releases/1.1/cyrus-imapd Message-ID: <20040904130615.1E6B74E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:06:14 +1000 (Sat, 04 Sep 2004) New Revision: 4252 Removed: tinysofa/releases/1.1/cyrus-imapd/pristine/ Log: cyrus-imapd: * removing pristine (2.2.3-5ts) From svn at tinysofa.org Sat Sep 4 13:06:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:06:21 +1000 (EST) Subject: [tinysofa-svn] r4253 - tinysofa/releases/1.1/cyrus-imapd Message-ID: <20040904130621.592954E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:06:21 +1000 (Sat, 04 Sep 2004) New Revision: 4253 Added: tinysofa/releases/1.1/cyrus-imapd/pristine/ Log: cyrus-imapd: * retarget pristine (2.2.3-5ts) to releases/2.2.3/6ts Copied: tinysofa/releases/1.1/cyrus-imapd/pristine (from rev 4251, tinysofa/releases/1.1/cyrus-imapd/releases/2.2.3/6ts) From svn at tinysofa.org Sat Sep 4 13:06:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:06:30 +1000 (EST) Subject: [tinysofa-svn] r4254 - in tinysofa/releases/1.1/dhcp: current/specs releases releases/3.0.1 releases/3.0.1/1ts/specs Message-ID: <20040904130630.67C094E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:06:30 +1000 (Sat, 04 Sep 2004) New Revision: 4254 Added: tinysofa/releases/1.1/dhcp/releases/3.0.1/ tinysofa/releases/1.1/dhcp/releases/3.0.1/1ts/ Modified: tinysofa/releases/1.1/dhcp/current/specs/dhcp.spec tinysofa/releases/1.1/dhcp/releases/3.0.1/1ts/specs/dhcp.spec Log: dhcp: * integrate current (3.0.1-1jh) as releases/3.0.1/1ts Modified: tinysofa/releases/1.1/dhcp/current/specs/dhcp.spec =================================================================== --- tinysofa/releases/1.1/dhcp/current/specs/dhcp.spec 2004-09-04 13:06:21 UTC (rev 4253) +++ tinysofa/releases/1.1/dhcp/current/specs/dhcp.spec 2004-09-04 13:06:30 UTC (rev 4254) @@ -2,7 +2,7 @@ Name: dhcp Epoch: 1 Version: 3.0.1 -Release: 1jh +Release: 1ts License: distributable Group: main URL: http://isc.org/products/DHCP/ @@ -232,6 +232,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 3.0.1-1ts +- current (3.0.1-1jh) integrated as 3.0.1-1ts for release 1.1-U1 + * Fri Aug 13 2004 Jaakko Heinonen 3.0.1-1jh - 3.0.1 Copied: tinysofa/releases/1.1/dhcp/releases/3.0.1/1ts (from rev 4235, tinysofa/releases/1.1/dhcp/current) Modified: tinysofa/releases/1.1/dhcp/releases/3.0.1/1ts/specs/dhcp.spec =================================================================== --- tinysofa/releases/1.1/dhcp/current/specs/dhcp.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/dhcp/releases/3.0.1/1ts/specs/dhcp.spec 2004-09-04 13:06:30 UTC (rev 4254) @@ -2,7 +2,7 @@ Name: dhcp Epoch: 1 Version: 3.0.1 -Release: 1jh +Release: 1ts License: distributable Group: main URL: http://isc.org/products/DHCP/ @@ -232,6 +232,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 3.0.1-1ts +- current (3.0.1-1jh) integrated as 3.0.1-1ts for release 1.1-U1 + * Fri Aug 13 2004 Jaakko Heinonen 3.0.1-1jh - 3.0.1 From svn at tinysofa.org Sat Sep 4 13:06:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:06:35 +1000 (EST) Subject: [tinysofa-svn] r4255 - tinysofa/releases/1.1/dhcp Message-ID: <20040904130635.53CEC4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:06:35 +1000 (Sat, 04 Sep 2004) New Revision: 4255 Removed: tinysofa/releases/1.1/dhcp/pristine/ Log: dhcp: * removing pristine (3.0.1rc14-1ts) From svn at tinysofa.org Sat Sep 4 13:06:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:06:41 +1000 (EST) Subject: [tinysofa-svn] r4256 - tinysofa/releases/1.1/dhcp Message-ID: <20040904130641.A82E84E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:06:41 +1000 (Sat, 04 Sep 2004) New Revision: 4256 Added: tinysofa/releases/1.1/dhcp/pristine/ Log: dhcp: * retarget pristine (3.0.1rc14-1ts) to releases/3.0.1/1ts Copied: tinysofa/releases/1.1/dhcp/pristine (from rev 4254, tinysofa/releases/1.1/dhcp/releases/3.0.1/1ts) From svn at tinysofa.org Sat Sep 4 13:06:58 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:06:58 +1000 (EST) Subject: [tinysofa-svn] r4257 - in tinysofa/releases/1.1/gcc: current/specs releases/3.3.3 releases/3.3.3/9ts/specs Message-ID: <20040904130658.3BA3B4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:06:58 +1000 (Sat, 04 Sep 2004) New Revision: 4257 Added: tinysofa/releases/1.1/gcc/releases/3.3.3/9ts/ Modified: tinysofa/releases/1.1/gcc/current/specs/gcc.spec tinysofa/releases/1.1/gcc/releases/3.3.3/9ts/specs/gcc.spec Log: gcc: * integrate current (3.3.3-9jh) as releases/3.3.3/9ts Modified: tinysofa/releases/1.1/gcc/current/specs/gcc.spec =================================================================== --- tinysofa/releases/1.1/gcc/current/specs/gcc.spec 2004-09-04 13:06:41 UTC (rev 4256) +++ tinysofa/releases/1.1/gcc/current/specs/gcc.spec 2004-09-04 13:06:58 UTC (rev 4257) @@ -23,7 +23,7 @@ Summary: Various compilers (C, C++, Objective-C, Java, ...) Name: gcc Version: %{gcc_version} -Release: 9jh +Release: 9ts Copyright: GPL Group: development Source0: gcc-%{version}-%{DATE}.tar.bz2 @@ -1172,6 +1172,9 @@ %endif %changelog +* Sat Sep 04 2004 tsintegrate 3.3.3-9ts +- current (3.3.3-9jh) integrated as 3.3.3-9ts for release 1.1-U1 + * Thu Aug 5 2004 Jaakko Heinonen 3.3.3-9jh - fix gcc version information Copied: tinysofa/releases/1.1/gcc/releases/3.3.3/9ts (from rev 4235, tinysofa/releases/1.1/gcc/current) Modified: tinysofa/releases/1.1/gcc/releases/3.3.3/9ts/specs/gcc.spec =================================================================== --- tinysofa/releases/1.1/gcc/current/specs/gcc.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/gcc/releases/3.3.3/9ts/specs/gcc.spec 2004-09-04 13:06:58 UTC (rev 4257) @@ -23,7 +23,7 @@ Summary: Various compilers (C, C++, Objective-C, Java, ...) Name: gcc Version: %{gcc_version} -Release: 9jh +Release: 9ts Copyright: GPL Group: development Source0: gcc-%{version}-%{DATE}.tar.bz2 @@ -1172,6 +1172,9 @@ %endif %changelog +* Sat Sep 04 2004 tsintegrate 3.3.3-9ts +- current (3.3.3-9jh) integrated as 3.3.3-9ts for release 1.1-U1 + * Thu Aug 5 2004 Jaakko Heinonen 3.3.3-9jh - fix gcc version information From svn at tinysofa.org Sat Sep 4 13:07:06 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:07:06 +1000 (EST) Subject: [tinysofa-svn] r4258 - tinysofa/releases/1.1/gcc Message-ID: <20040904130706.1558D4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:07:05 +1000 (Sat, 04 Sep 2004) New Revision: 4258 Removed: tinysofa/releases/1.1/gcc/pristine/ Log: gcc: * removing pristine (3.3.3-8ts) From svn at tinysofa.org Sat Sep 4 13:07:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:07:13 +1000 (EST) Subject: [tinysofa-svn] r4259 - tinysofa/releases/1.1/gcc Message-ID: <20040904130713.E6A744E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:07:13 +1000 (Sat, 04 Sep 2004) New Revision: 4259 Added: tinysofa/releases/1.1/gcc/pristine/ Log: gcc: * retarget pristine (3.3.3-8ts) to releases/3.3.3/9ts Copied: tinysofa/releases/1.1/gcc/pristine (from rev 4257, tinysofa/releases/1.1/gcc/releases/3.3.3/9ts) From svn at tinysofa.org Sat Sep 4 13:07:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:07:30 +1000 (EST) Subject: [tinysofa-svn] r4260 - in tinysofa/releases/1.1/gettext: current/specs releases/0.14.1 releases/0.14.1/9ts/specs Message-ID: <20040904130730.A2B324E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:07:30 +1000 (Sat, 04 Sep 2004) New Revision: 4260 Added: tinysofa/releases/1.1/gettext/releases/0.14.1/9ts/ Modified: tinysofa/releases/1.1/gettext/current/specs/gettext.spec tinysofa/releases/1.1/gettext/releases/0.14.1/9ts/specs/gettext.spec Log: gettext: * integrate current (0.14.1-9jh) as releases/0.14.1/9ts Modified: tinysofa/releases/1.1/gettext/current/specs/gettext.spec =================================================================== --- tinysofa/releases/1.1/gettext/current/specs/gettext.spec 2004-09-04 13:07:13 UTC (rev 4259) +++ tinysofa/releases/1.1/gettext/current/specs/gettext.spec 2004-09-04 13:07:30 UTC (rev 4260) @@ -1,7 +1,7 @@ Summary: GNU libraries and utilities for producing multi-lingual messages. Name: gettext Version: 0.14.1 -Release: 9jh +Release: 9ts License: GPL/LGPL Group: development Source: ftp://ftp.gnu.org/gnu/gettext-%{version}.tar.gz @@ -106,6 +106,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 0.14.1-9ts +- current (0.14.1-9jh) integrated as 0.14.1-9ts for release 1.1-U1 + * Mon Aug 16 2004 Jaakko Heinonen - split to -devel - x86_64 fixes Copied: tinysofa/releases/1.1/gettext/releases/0.14.1/9ts (from rev 4235, tinysofa/releases/1.1/gettext/current) Modified: tinysofa/releases/1.1/gettext/releases/0.14.1/9ts/specs/gettext.spec =================================================================== --- tinysofa/releases/1.1/gettext/current/specs/gettext.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/gettext/releases/0.14.1/9ts/specs/gettext.spec 2004-09-04 13:07:30 UTC (rev 4260) @@ -1,7 +1,7 @@ Summary: GNU libraries and utilities for producing multi-lingual messages. Name: gettext Version: 0.14.1 -Release: 9jh +Release: 9ts License: GPL/LGPL Group: development Source: ftp://ftp.gnu.org/gnu/gettext-%{version}.tar.gz @@ -106,6 +106,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 0.14.1-9ts +- current (0.14.1-9jh) integrated as 0.14.1-9ts for release 1.1-U1 + * Mon Aug 16 2004 Jaakko Heinonen - split to -devel - x86_64 fixes From svn at tinysofa.org Sat Sep 4 13:07:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:07:35 +1000 (EST) Subject: [tinysofa-svn] r4261 - tinysofa/releases/1.1/gettext Message-ID: <20040904130735.5248D4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:07:35 +1000 (Sat, 04 Sep 2004) New Revision: 4261 Removed: tinysofa/releases/1.1/gettext/pristine/ Log: gettext: * removing pristine (0.14.1-8ts) From svn at tinysofa.org Sat Sep 4 13:07:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:07:41 +1000 (EST) Subject: [tinysofa-svn] r4262 - tinysofa/releases/1.1/gettext Message-ID: <20040904130741.9E9014E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:07:41 +1000 (Sat, 04 Sep 2004) New Revision: 4262 Added: tinysofa/releases/1.1/gettext/pristine/ Log: gettext: * retarget pristine (0.14.1-8ts) to releases/0.14.1/9ts Copied: tinysofa/releases/1.1/gettext/pristine (from rev 4260, tinysofa/releases/1.1/gettext/releases/0.14.1/9ts) From svn at tinysofa.org Sat Sep 4 13:07:51 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:07:51 +1000 (EST) Subject: [tinysofa-svn] r4263 - in tinysofa/releases/1.1/ipsec-tools: current/specs releases releases/0.3.3 releases/0.3.3/1ts/specs Message-ID: <20040904130751.850F34E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:07:51 +1000 (Sat, 04 Sep 2004) New Revision: 4263 Added: tinysofa/releases/1.1/ipsec-tools/releases/0.3.3/ tinysofa/releases/1.1/ipsec-tools/releases/0.3.3/1ts/ Modified: tinysofa/releases/1.1/ipsec-tools/current/specs/ipsec-tools.spec tinysofa/releases/1.1/ipsec-tools/releases/0.3.3/1ts/specs/ipsec-tools.spec Log: ipsec-tools: * integrate current (0.3.3-1jh) as releases/0.3.3/1ts Modified: tinysofa/releases/1.1/ipsec-tools/current/specs/ipsec-tools.spec =================================================================== --- tinysofa/releases/1.1/ipsec-tools/current/specs/ipsec-tools.spec 2004-09-04 13:07:41 UTC (rev 4262) +++ tinysofa/releases/1.1/ipsec-tools/current/specs/ipsec-tools.spec 2004-09-04 13:07:51 UTC (rev 4263) @@ -1,6 +1,6 @@ Name: ipsec-tools Version: 0.3.3 -Release: 1jh +Release: 1ts Summary: Tools for configuring and using IPSEC License: BSD Group: main @@ -84,6 +84,9 @@ %config(noreplace) /etc/racoon/racoon.conf %changelog +* Sat Sep 04 2004 tsintegrate 0.3.3-1ts +- current (0.3.3-1jh) integrated as 0.3.3-1ts for release 1.1-U1 + * Tue Aug 10 2004 Jaakko Heinonen - 0.3.3 Copied: tinysofa/releases/1.1/ipsec-tools/releases/0.3.3/1ts (from rev 4235, tinysofa/releases/1.1/ipsec-tools/current) Modified: tinysofa/releases/1.1/ipsec-tools/releases/0.3.3/1ts/specs/ipsec-tools.spec =================================================================== --- tinysofa/releases/1.1/ipsec-tools/current/specs/ipsec-tools.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/ipsec-tools/releases/0.3.3/1ts/specs/ipsec-tools.spec 2004-09-04 13:07:51 UTC (rev 4263) @@ -1,6 +1,6 @@ Name: ipsec-tools Version: 0.3.3 -Release: 1jh +Release: 1ts Summary: Tools for configuring and using IPSEC License: BSD Group: main @@ -84,6 +84,9 @@ %config(noreplace) /etc/racoon/racoon.conf %changelog +* Sat Sep 04 2004 tsintegrate 0.3.3-1ts +- current (0.3.3-1jh) integrated as 0.3.3-1ts for release 1.1-U1 + * Tue Aug 10 2004 Jaakko Heinonen - 0.3.3 From svn at tinysofa.org Sat Sep 4 13:07:55 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:07:55 +1000 (EST) Subject: [tinysofa-svn] r4264 - tinysofa/releases/1.1/ipsec-tools Message-ID: <20040904130755.EC3F44E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:07:55 +1000 (Sat, 04 Sep 2004) New Revision: 4264 Removed: tinysofa/releases/1.1/ipsec-tools/pristine/ Log: ipsec-tools: * removing pristine (0.2.5-1ts) From svn at tinysofa.org Sat Sep 4 13:08:01 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:08:01 +1000 (EST) Subject: [tinysofa-svn] r4265 - tinysofa/releases/1.1/ipsec-tools Message-ID: <20040904130801.DCB424E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:08:01 +1000 (Sat, 04 Sep 2004) New Revision: 4265 Added: tinysofa/releases/1.1/ipsec-tools/pristine/ Log: ipsec-tools: * retarget pristine (0.2.5-1ts) to releases/0.3.3/1ts Copied: tinysofa/releases/1.1/ipsec-tools/pristine (from rev 4263, tinysofa/releases/1.1/ipsec-tools/releases/0.3.3/1ts) From svn at tinysofa.org Sat Sep 4 13:08:14 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:08:14 +1000 (EST) Subject: [tinysofa-svn] r4266 - in tinysofa/releases/1.1/kerberos5: current/sources current/specs releases releases/1.3.4 releases/1.3.4/2ts/sources releases/1.3.4/2ts/specs Message-ID: <20040904130814.EB19E4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:08:14 +1000 (Sat, 04 Sep 2004) New Revision: 4266 Added: tinysofa/releases/1.1/kerberos5/current/sources/2004-002-dblfree_patch.txt tinysofa/releases/1.1/kerberos5/current/sources/2004-003-patch_1.3.4.txt tinysofa/releases/1.1/kerberos5/releases/1.3.4/ tinysofa/releases/1.1/kerberos5/releases/1.3.4/2ts/ tinysofa/releases/1.1/kerberos5/releases/1.3.4/2ts/sources/2004-002-dblfree_patch.txt tinysofa/releases/1.1/kerberos5/releases/1.3.4/2ts/sources/2004-003-patch_1.3.4.txt Modified: tinysofa/releases/1.1/kerberos5/current/specs/kerberos5.spec tinysofa/releases/1.1/kerberos5/releases/1.3.4/2ts/specs/kerberos5.spec Log: kerberos5: * integrate current (1.3.4-2jh) as releases/1.3.4/2ts Added: tinysofa/releases/1.1/kerberos5/current/sources/2004-002-dblfree_patch.txt =================================================================== --- tinysofa/releases/1.1/kerberos5/current/sources/2004-002-dblfree_patch.txt 2004-09-04 13:08:01 UTC (rev 4265) +++ tinysofa/releases/1.1/kerberos5/current/sources/2004-002-dblfree_patch.txt 2004-09-04 13:08:14 UTC (rev 4266) @@ -0,0 +1,268 @@ +Index: src/clients/klist/klist.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/clients/klist/klist.c,v +retrieving revision 5.63 +diff -c -r5.63 klist.c +*** src/clients/klist/klist.c 11 Apr 2002 03:21:46 -0000 5.63 +--- src/clients/klist/klist.c 23 Aug 2004 03:37:26 -0000 +*************** +*** 614,619 **** +--- 614,622 ---- + + if (show_etype) { + retval = krb5_decode_ticket(&cred->ticket, &tkt); ++ if (retval) ++ goto err_tkt; ++ + if (!extra_field) + fputs("\t",stdout); + else +*************** +*** 622,629 **** + etype_string(cred->keyblock.enctype)); + printf("%s ", + etype_string(tkt->enc_part.enctype)); +- krb5_free_ticket(kcontext, tkt); + extra_field++; + } + + /* if any additional info was printed, extra_field is non-zero */ +--- 625,635 ---- + etype_string(cred->keyblock.enctype)); + printf("%s ", + etype_string(tkt->enc_part.enctype)); + extra_field++; ++ ++ err_tkt: ++ if (tkt != NULL) ++ krb5_free_ticket(kcontext, tkt); + } + + /* if any additional info was printed, extra_field is non-zero */ +Index: src/krb524/krb524d.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/krb524/krb524d.c,v +retrieving revision 1.55.2.3 +diff -c -r1.55.2.3 krb524d.c +*** src/krb524/krb524d.c 28 May 2003 04:06:31 -0000 1.55.2.3 +--- src/krb524/krb524d.c 23 Aug 2004 03:37:26 -0000 +*************** +*** 582,589 **** + printf("v4 credentials encoded\n"); + + error: +! if (v5tkt->enc_part2) + krb5_free_enc_tkt_part(context, v5tkt->enc_part2); + + if(v5_service_key.contents) + krb5_free_keyblock_contents(context, &v5_service_key); +--- 582,591 ---- + printf("v4 credentials encoded\n"); + + error: +! if (v5tkt->enc_part2) { + krb5_free_enc_tkt_part(context, v5tkt->enc_part2); ++ v5tkt->enc_part2 = NULL; ++ } + + if(v5_service_key.contents) + krb5_free_keyblock_contents(context, &v5_service_key); +Index: src/lib/krb5/asn.1/asn1buf.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/lib/krb5/asn.1/asn1buf.c,v +retrieving revision 5.24 +diff -c -r5.24 asn1buf.c +*** src/lib/krb5/asn.1/asn1buf.c 12 Mar 2003 04:33:30 -0000 5.24 +--- src/lib/krb5/asn.1/asn1buf.c 23 Aug 2004 03:37:27 -0000 +*************** +*** 255,260 **** +--- 255,261 ---- + (*code)->data = (char*)malloc((((*code)->length)+1)*sizeof(char)); + if ((*code)->data == NULL) { + free(*code); ++ *code = NULL; + return ENOMEM; + } + for(i=0; i < (*code)->length; i++) +Index: src/lib/krb5/asn.1/krb5_decode.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/lib/krb5/asn.1/krb5_decode.c,v +retrieving revision 5.40.2.5 +diff -c -r5.40.2.5 krb5_decode.c +*** src/lib/krb5/asn.1/krb5_decode.c 10 Oct 2003 23:57:38 -0000 5.40.2.5 +--- src/lib/krb5/asn.1/krb5_decode.c 23 Aug 2004 03:37:27 -0000 +*************** +*** 183,190 **** + #define cleanup(cleanup_routine)\ + return 0; \ + error_out: \ +! if (rep && *rep) \ + cleanup_routine(*rep); \ + return retval; + + #define cleanup_none()\ +--- 183,192 ---- + #define cleanup(cleanup_routine)\ + return 0; \ + error_out: \ +! if (rep && *rep) { \ + cleanup_routine(*rep); \ ++ *rep = NULL; \ ++ } \ + return retval; + + #define cleanup_none()\ +*************** +*** 233,238 **** +--- 235,241 ---- + free_field(*rep,checksum); + free_field(*rep,client); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 254,260 **** + { begin_structure(); + { krb5_kvno kvno; + get_field(kvno,0,asn1_decode_kvno); +! if(kvno != KVNO) return KRB5KDC_ERR_BAD_PVNO; + } + alloc_field((*rep)->server,krb5_principal_data); + get_field((*rep)->server,1,asn1_decode_realm); +--- 257,263 ---- + { begin_structure(); + { krb5_kvno kvno; + get_field(kvno,0,asn1_decode_kvno); +! if(kvno != KVNO) clean_return(KRB5KDC_ERR_BAD_PVNO); + } + alloc_field((*rep)->server,krb5_principal_data); + get_field((*rep)->server,1,asn1_decode_realm); +*************** +*** 268,273 **** +--- 271,277 ---- + if (rep && *rep) { + free_field(*rep,server); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 320,325 **** +--- 324,330 ---- + free_field(*rep,session); + free_field(*rep,client); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 403,408 **** +--- 408,414 ---- + if (rep && *rep) { + free_field(*rep,ticket); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 451,456 **** +--- 457,463 ---- + if (rep && *rep) { + free_field(*rep,subkey); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 556,561 **** +--- 563,569 ---- + if (rep && *rep) { + free_field(*rep,checksum); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 614,619 **** +--- 622,628 ---- + free_field(*rep,r_address); + free_field(*rep,s_address); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 668,673 **** +--- 677,683 ---- + free_field(*rep,r_address); + free_field(*rep,s_address); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 713,718 **** +--- 723,729 ---- + free_field(*rep,server); + free_field(*rep,client); + free(*rep); ++ *rep = NULL; + } + return retval; + } +Index: src/lib/krb5/krb/rd_rep.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/lib/krb5/krb/rd_rep.c,v +retrieving revision 5.33.2.2 +diff -c -r5.33.2.2 rd_rep.c +*** src/lib/krb5/krb/rd_rep.c 14 Jun 2003 00:09:47 -0000 5.33.2.2 +--- src/lib/krb5/krb/rd_rep.c 23 Aug 2004 03:37:27 -0000 +*************** +*** 71,76 **** +--- 71,78 ---- + + /* now decode the decrypted stuff */ + retval = decode_krb5_ap_rep_enc_part(&scratch, repl); ++ if (retval) ++ goto clean_scratch; + + /* Check reply fields */ + if (((*repl)->ctime != auth_context->authentp->ctime) || +Index: src/lib/krb5/krb/send_tgs.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/lib/krb5/krb/send_tgs.c,v +retrieving revision 5.55.2.1 +diff -c -r5.55.2.1 send_tgs.c +*** src/lib/krb5/krb/send_tgs.c 13 May 2004 19:27:59 -0000 5.55.2.1 +--- src/lib/krb5/krb/send_tgs.c 23 Aug 2004 03:37:27 -0000 +*************** +*** 269,274 **** +--- 269,276 ---- + if (!tcp_only) { + krb5_error *err_reply; + retval = decode_krb5_error(&rep->response, &err_reply); ++ if (retval) ++ goto send_tgs_error_3; + if (err_reply->error == KRB_ERR_RESPONSE_TOO_BIG) { + tcp_only = 1; + krb5_free_error(context, err_reply); +*************** +*** 277,282 **** +--- 279,286 ---- + goto send_again; + } + krb5_free_error(context, err_reply); ++ send_tgs_error_3: ++ ; + } + rep->message_type = KRB5_ERROR; + } else if (krb5_is_tgs_rep(&rep->response)) Added: tinysofa/releases/1.1/kerberos5/current/sources/2004-003-patch_1.3.4.txt =================================================================== --- tinysofa/releases/1.1/kerberos5/current/sources/2004-003-patch_1.3.4.txt 2004-09-04 13:08:01 UTC (rev 4265) +++ tinysofa/releases/1.1/kerberos5/current/sources/2004-003-patch_1.3.4.txt 2004-09-04 13:08:14 UTC (rev 4266) @@ -0,0 +1,17 @@ +Index: src/lib/krb5/asn.1/asn1buf.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/lib/krb5/asn.1/asn1buf.c,v +retrieving revision 5.24 +*** src/lib/krb5/asn.1/asn1buf.c 12 Mar 2003 04:33:30 -0000 5.24 +--- src/lib/krb5/asn.1/asn1buf.c 23 Aug 2004 03:43:47 -0000 +*************** +*** 122,127 **** +--- 122,129 ---- + return ASN1_OVERRUN; + } + while (nestlevel > 0) { ++ if (buf->bound - buf->next + 1 <= 0) ++ return ASN1_OVERRUN; + retval = asn1_get_tag_2(buf, &t); + if (retval) return retval; + if (!t.indef) { Modified: tinysofa/releases/1.1/kerberos5/current/specs/kerberos5.spec =================================================================== --- tinysofa/releases/1.1/kerberos5/current/specs/kerberos5.spec 2004-09-04 13:08:01 UTC (rev 4265) +++ tinysofa/releases/1.1/kerberos5/current/specs/kerberos5.spec 2004-09-04 13:08:14 UTC (rev 4266) @@ -1,9 +1,11 @@ Summary: Kerberos is a network authentication protocol. Name: kerberos5 Version: 1.3.4 -Release: 1jh +Release: 2ts Group: main Source0: krb5-%{version}.tar.gz +Patch0: http://web.mit.edu/kerberos/advisories/2004-002-dblfree_patch.txt +Patch1: http://web.mit.edu/kerberos/advisories/2004-003-patch_1.3.4.txt URL: http://web.mit.edu/kerberos License: Distributable Requires: libcom_err libtermcap ncurses @@ -37,6 +39,8 @@ %prep %setup -q -n krb5-%{version} +%patch0 -p0 -b .dblfree-2004-002 +%patch1 -p0 -b .asn1buf-2004-003 %build @@ -84,6 +88,12 @@ %changelog +* Sat Sep 04 2004 tsintegrate 1.3.4-2ts +- current (1.3.4-2jh) integrated as 1.3.4-2ts for release 1.1-U1 + +* Tue Aug 31 2004 Jaakko Heinonen +- MITKRB5-SA-2004-002 and MITKRB5-SA-2004-003 security fixes + * Thu Aug 19 2004 Jaakko Heinonen - 1.3.4 - spec cleanup Copied: tinysofa/releases/1.1/kerberos5/releases/1.3.4/2ts (from rev 4235, tinysofa/releases/1.1/kerberos5/current) Added: tinysofa/releases/1.1/kerberos5/releases/1.3.4/2ts/sources/2004-002-dblfree_patch.txt =================================================================== --- tinysofa/releases/1.1/kerberos5/current/sources/2004-002-dblfree_patch.txt 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/kerberos5/releases/1.3.4/2ts/sources/2004-002-dblfree_patch.txt 2004-09-04 13:08:14 UTC (rev 4266) @@ -0,0 +1,268 @@ +Index: src/clients/klist/klist.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/clients/klist/klist.c,v +retrieving revision 5.63 +diff -c -r5.63 klist.c +*** src/clients/klist/klist.c 11 Apr 2002 03:21:46 -0000 5.63 +--- src/clients/klist/klist.c 23 Aug 2004 03:37:26 -0000 +*************** +*** 614,619 **** +--- 614,622 ---- + + if (show_etype) { + retval = krb5_decode_ticket(&cred->ticket, &tkt); ++ if (retval) ++ goto err_tkt; ++ + if (!extra_field) + fputs("\t",stdout); + else +*************** +*** 622,629 **** + etype_string(cred->keyblock.enctype)); + printf("%s ", + etype_string(tkt->enc_part.enctype)); +- krb5_free_ticket(kcontext, tkt); + extra_field++; + } + + /* if any additional info was printed, extra_field is non-zero */ +--- 625,635 ---- + etype_string(cred->keyblock.enctype)); + printf("%s ", + etype_string(tkt->enc_part.enctype)); + extra_field++; ++ ++ err_tkt: ++ if (tkt != NULL) ++ krb5_free_ticket(kcontext, tkt); + } + + /* if any additional info was printed, extra_field is non-zero */ +Index: src/krb524/krb524d.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/krb524/krb524d.c,v +retrieving revision 1.55.2.3 +diff -c -r1.55.2.3 krb524d.c +*** src/krb524/krb524d.c 28 May 2003 04:06:31 -0000 1.55.2.3 +--- src/krb524/krb524d.c 23 Aug 2004 03:37:26 -0000 +*************** +*** 582,589 **** + printf("v4 credentials encoded\n"); + + error: +! if (v5tkt->enc_part2) + krb5_free_enc_tkt_part(context, v5tkt->enc_part2); + + if(v5_service_key.contents) + krb5_free_keyblock_contents(context, &v5_service_key); +--- 582,591 ---- + printf("v4 credentials encoded\n"); + + error: +! if (v5tkt->enc_part2) { + krb5_free_enc_tkt_part(context, v5tkt->enc_part2); ++ v5tkt->enc_part2 = NULL; ++ } + + if(v5_service_key.contents) + krb5_free_keyblock_contents(context, &v5_service_key); +Index: src/lib/krb5/asn.1/asn1buf.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/lib/krb5/asn.1/asn1buf.c,v +retrieving revision 5.24 +diff -c -r5.24 asn1buf.c +*** src/lib/krb5/asn.1/asn1buf.c 12 Mar 2003 04:33:30 -0000 5.24 +--- src/lib/krb5/asn.1/asn1buf.c 23 Aug 2004 03:37:27 -0000 +*************** +*** 255,260 **** +--- 255,261 ---- + (*code)->data = (char*)malloc((((*code)->length)+1)*sizeof(char)); + if ((*code)->data == NULL) { + free(*code); ++ *code = NULL; + return ENOMEM; + } + for(i=0; i < (*code)->length; i++) +Index: src/lib/krb5/asn.1/krb5_decode.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/lib/krb5/asn.1/krb5_decode.c,v +retrieving revision 5.40.2.5 +diff -c -r5.40.2.5 krb5_decode.c +*** src/lib/krb5/asn.1/krb5_decode.c 10 Oct 2003 23:57:38 -0000 5.40.2.5 +--- src/lib/krb5/asn.1/krb5_decode.c 23 Aug 2004 03:37:27 -0000 +*************** +*** 183,190 **** + #define cleanup(cleanup_routine)\ + return 0; \ + error_out: \ +! if (rep && *rep) \ + cleanup_routine(*rep); \ + return retval; + + #define cleanup_none()\ +--- 183,192 ---- + #define cleanup(cleanup_routine)\ + return 0; \ + error_out: \ +! if (rep && *rep) { \ + cleanup_routine(*rep); \ ++ *rep = NULL; \ ++ } \ + return retval; + + #define cleanup_none()\ +*************** +*** 233,238 **** +--- 235,241 ---- + free_field(*rep,checksum); + free_field(*rep,client); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 254,260 **** + { begin_structure(); + { krb5_kvno kvno; + get_field(kvno,0,asn1_decode_kvno); +! if(kvno != KVNO) return KRB5KDC_ERR_BAD_PVNO; + } + alloc_field((*rep)->server,krb5_principal_data); + get_field((*rep)->server,1,asn1_decode_realm); +--- 257,263 ---- + { begin_structure(); + { krb5_kvno kvno; + get_field(kvno,0,asn1_decode_kvno); +! if(kvno != KVNO) clean_return(KRB5KDC_ERR_BAD_PVNO); + } + alloc_field((*rep)->server,krb5_principal_data); + get_field((*rep)->server,1,asn1_decode_realm); +*************** +*** 268,273 **** +--- 271,277 ---- + if (rep && *rep) { + free_field(*rep,server); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 320,325 **** +--- 324,330 ---- + free_field(*rep,session); + free_field(*rep,client); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 403,408 **** +--- 408,414 ---- + if (rep && *rep) { + free_field(*rep,ticket); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 451,456 **** +--- 457,463 ---- + if (rep && *rep) { + free_field(*rep,subkey); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 556,561 **** +--- 563,569 ---- + if (rep && *rep) { + free_field(*rep,checksum); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 614,619 **** +--- 622,628 ---- + free_field(*rep,r_address); + free_field(*rep,s_address); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 668,673 **** +--- 677,683 ---- + free_field(*rep,r_address); + free_field(*rep,s_address); + free(*rep); ++ *rep = NULL; + } + return retval; + } +*************** +*** 713,718 **** +--- 723,729 ---- + free_field(*rep,server); + free_field(*rep,client); + free(*rep); ++ *rep = NULL; + } + return retval; + } +Index: src/lib/krb5/krb/rd_rep.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/lib/krb5/krb/rd_rep.c,v +retrieving revision 5.33.2.2 +diff -c -r5.33.2.2 rd_rep.c +*** src/lib/krb5/krb/rd_rep.c 14 Jun 2003 00:09:47 -0000 5.33.2.2 +--- src/lib/krb5/krb/rd_rep.c 23 Aug 2004 03:37:27 -0000 +*************** +*** 71,76 **** +--- 71,78 ---- + + /* now decode the decrypted stuff */ + retval = decode_krb5_ap_rep_enc_part(&scratch, repl); ++ if (retval) ++ goto clean_scratch; + + /* Check reply fields */ + if (((*repl)->ctime != auth_context->authentp->ctime) || +Index: src/lib/krb5/krb/send_tgs.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/lib/krb5/krb/send_tgs.c,v +retrieving revision 5.55.2.1 +diff -c -r5.55.2.1 send_tgs.c +*** src/lib/krb5/krb/send_tgs.c 13 May 2004 19:27:59 -0000 5.55.2.1 +--- src/lib/krb5/krb/send_tgs.c 23 Aug 2004 03:37:27 -0000 +*************** +*** 269,274 **** +--- 269,276 ---- + if (!tcp_only) { + krb5_error *err_reply; + retval = decode_krb5_error(&rep->response, &err_reply); ++ if (retval) ++ goto send_tgs_error_3; + if (err_reply->error == KRB_ERR_RESPONSE_TOO_BIG) { + tcp_only = 1; + krb5_free_error(context, err_reply); +*************** +*** 277,282 **** +--- 279,286 ---- + goto send_again; + } + krb5_free_error(context, err_reply); ++ send_tgs_error_3: ++ ; + } + rep->message_type = KRB5_ERROR; + } else if (krb5_is_tgs_rep(&rep->response)) Added: tinysofa/releases/1.1/kerberos5/releases/1.3.4/2ts/sources/2004-003-patch_1.3.4.txt =================================================================== --- tinysofa/releases/1.1/kerberos5/current/sources/2004-003-patch_1.3.4.txt 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/kerberos5/releases/1.3.4/2ts/sources/2004-003-patch_1.3.4.txt 2004-09-04 13:08:14 UTC (rev 4266) @@ -0,0 +1,17 @@ +Index: src/lib/krb5/asn.1/asn1buf.c +=================================================================== +RCS file: /cvs/krbdev/krb5/src/lib/krb5/asn.1/asn1buf.c,v +retrieving revision 5.24 +*** src/lib/krb5/asn.1/asn1buf.c 12 Mar 2003 04:33:30 -0000 5.24 +--- src/lib/krb5/asn.1/asn1buf.c 23 Aug 2004 03:43:47 -0000 +*************** +*** 122,127 **** +--- 122,129 ---- + return ASN1_OVERRUN; + } + while (nestlevel > 0) { ++ if (buf->bound - buf->next + 1 <= 0) ++ return ASN1_OVERRUN; + retval = asn1_get_tag_2(buf, &t); + if (retval) return retval; + if (!t.indef) { Modified: tinysofa/releases/1.1/kerberos5/releases/1.3.4/2ts/specs/kerberos5.spec =================================================================== --- tinysofa/releases/1.1/kerberos5/current/specs/kerberos5.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/kerberos5/releases/1.3.4/2ts/specs/kerberos5.spec 2004-09-04 13:08:14 UTC (rev 4266) @@ -1,9 +1,11 @@ Summary: Kerberos is a network authentication protocol. Name: kerberos5 Version: 1.3.4 -Release: 1jh +Release: 2ts Group: main Source0: krb5-%{version}.tar.gz +Patch0: http://web.mit.edu/kerberos/advisories/2004-002-dblfree_patch.txt +Patch1: http://web.mit.edu/kerberos/advisories/2004-003-patch_1.3.4.txt URL: http://web.mit.edu/kerberos License: Distributable Requires: libcom_err libtermcap ncurses @@ -37,6 +39,8 @@ %prep %setup -q -n krb5-%{version} +%patch0 -p0 -b .dblfree-2004-002 +%patch1 -p0 -b .asn1buf-2004-003 %build @@ -84,6 +88,12 @@ %changelog +* Sat Sep 04 2004 tsintegrate 1.3.4-2ts +- current (1.3.4-2jh) integrated as 1.3.4-2ts for release 1.1-U1 + +* Tue Aug 31 2004 Jaakko Heinonen +- MITKRB5-SA-2004-002 and MITKRB5-SA-2004-003 security fixes + * Thu Aug 19 2004 Jaakko Heinonen - 1.3.4 - spec cleanup From svn at tinysofa.org Sat Sep 4 13:08:20 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:08:20 +1000 (EST) Subject: [tinysofa-svn] r4267 - tinysofa/releases/1.1/kerberos5 Message-ID: <20040904130820.C6DBD4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:08:20 +1000 (Sat, 04 Sep 2004) New Revision: 4267 Removed: tinysofa/releases/1.1/kerberos5/pristine/ Log: kerberos5: * removing pristine (1.3.3-5ts) From svn at tinysofa.org Sat Sep 4 13:08:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:08:27 +1000 (EST) Subject: [tinysofa-svn] r4268 - tinysofa/releases/1.1/kerberos5 Message-ID: <20040904130827.453D64E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:08:27 +1000 (Sat, 04 Sep 2004) New Revision: 4268 Added: tinysofa/releases/1.1/kerberos5/pristine/ Log: kerberos5: * retarget pristine (1.3.3-5ts) to releases/1.3.4/2ts Copied: tinysofa/releases/1.1/kerberos5/pristine (from rev 4266, tinysofa/releases/1.1/kerberos5/releases/1.3.4/2ts) From svn at tinysofa.org Sat Sep 4 13:09:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:09:21 +1000 (EST) Subject: [tinysofa-svn] r4269 - in tinysofa/releases/1.1/kernel: current/specs releases/2.4.21 releases/2.4.21/4ts/specs Message-ID: <20040904130921.623684E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:09:21 +1000 (Sat, 04 Sep 2004) New Revision: 4269 Added: tinysofa/releases/1.1/kernel/releases/2.4.21/4ts/ Modified: tinysofa/releases/1.1/kernel/current/specs/kernel.spec tinysofa/releases/1.1/kernel/releases/2.4.21/4ts/specs/kernel.spec Log: kernel: * integrate current (2.4.21-4jh) as releases/2.4.21/4ts Modified: tinysofa/releases/1.1/kernel/current/specs/kernel.spec =================================================================== --- tinysofa/releases/1.1/kernel/current/specs/kernel.spec 2004-09-04 13:08:27 UTC (rev 4268) +++ tinysofa/releases/1.1/kernel/current/specs/kernel.spec 2004-09-04 13:09:21 UTC (rev 4269) @@ -126,7 +126,7 @@ Group: main License: GPLv2 Version: %{kversion} -Release: 4jh +Release: 4ts Epoch: 1 ExclusiveArch: %{all_x86} %{all_x86_64} s390 s390x %{all_ppc64} ia64 ExclusiveOS: Linux @@ -2184,6 +2184,9 @@ %endif %changelog +* Sat Sep 04 2004 tsintegrate 2.4.21-4ts +- current (2.4.21-4jh) integrated as 2.4.21-4ts for release 1.1-U1 + * Thu Aug 26 2004 Jaakko Heinonen 2.4.21-4jh - build jfs as module - exclude /boot/vmlinux on x86 Copied: tinysofa/releases/1.1/kernel/releases/2.4.21/4ts (from rev 4235, tinysofa/releases/1.1/kernel/current) Modified: tinysofa/releases/1.1/kernel/releases/2.4.21/4ts/specs/kernel.spec =================================================================== --- tinysofa/releases/1.1/kernel/current/specs/kernel.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/kernel/releases/2.4.21/4ts/specs/kernel.spec 2004-09-04 13:09:21 UTC (rev 4269) @@ -126,7 +126,7 @@ Group: main License: GPLv2 Version: %{kversion} -Release: 4jh +Release: 4ts Epoch: 1 ExclusiveArch: %{all_x86} %{all_x86_64} s390 s390x %{all_ppc64} ia64 ExclusiveOS: Linux @@ -2184,6 +2184,9 @@ %endif %changelog +* Sat Sep 04 2004 tsintegrate 2.4.21-4ts +- current (2.4.21-4jh) integrated as 2.4.21-4ts for release 1.1-U1 + * Thu Aug 26 2004 Jaakko Heinonen 2.4.21-4jh - build jfs as module - exclude /boot/vmlinux on x86 From svn at tinysofa.org Sat Sep 4 13:09:43 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:09:43 +1000 (EST) Subject: [tinysofa-svn] r4270 - tinysofa/releases/1.1/kernel Message-ID: <20040904130943.4C0EA4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:09:43 +1000 (Sat, 04 Sep 2004) New Revision: 4270 Removed: tinysofa/releases/1.1/kernel/pristine/ Log: kernel: * removing pristine (2.4.21-3ts) From svn at tinysofa.org Sat Sep 4 13:10:22 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:10:22 +1000 (EST) Subject: [tinysofa-svn] r4271 - tinysofa/releases/1.1/kernel Message-ID: <20040904131022.88EEC4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:10:22 +1000 (Sat, 04 Sep 2004) New Revision: 4271 Added: tinysofa/releases/1.1/kernel/pristine/ Log: kernel: * retarget pristine (2.4.21-3ts) to releases/2.4.21/4ts Copied: tinysofa/releases/1.1/kernel/pristine (from rev 4269, tinysofa/releases/1.1/kernel/releases/2.4.21/4ts) From svn at tinysofa.org Sat Sep 4 13:10:48 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:10:48 +1000 (EST) Subject: [tinysofa-svn] r4272 - in tinysofa/releases/1.1/links: current/specs releases/2.1pre15 releases/2.1pre15/4ts/specs Message-ID: <20040904131048.512684E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:10:48 +1000 (Sat, 04 Sep 2004) New Revision: 4272 Added: tinysofa/releases/1.1/links/releases/2.1pre15/4ts/ Modified: tinysofa/releases/1.1/links/current/specs/links.spec tinysofa/releases/1.1/links/releases/2.1pre15/4ts/specs/links.spec Log: links: * integrate current (2.1pre15-4jh) as releases/2.1pre15/4ts Modified: tinysofa/releases/1.1/links/current/specs/links.spec =================================================================== --- tinysofa/releases/1.1/links/current/specs/links.spec 2004-09-04 13:10:22 UTC (rev 4271) +++ tinysofa/releases/1.1/links/current/specs/links.spec 2004-09-04 13:10:48 UTC (rev 4272) @@ -2,7 +2,7 @@ Name: links Version: 2.1pre15 -Release: 4jh +Release: 4ts License: GPL Summary: Links is a text-only browser very similar to lynx. Group: main @@ -43,6 +43,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 2.1pre15-4ts +- current (2.1pre15-4jh) integrated as 2.1pre15-4ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 2.1pre15-3ts - current (2.1pre15-3jh) integrated as 2.1pre15-3ts for release 1.1 Copied: tinysofa/releases/1.1/links/releases/2.1pre15/4ts (from rev 4235, tinysofa/releases/1.1/links/current) Modified: tinysofa/releases/1.1/links/releases/2.1pre15/4ts/specs/links.spec =================================================================== --- tinysofa/releases/1.1/links/current/specs/links.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/links/releases/2.1pre15/4ts/specs/links.spec 2004-09-04 13:10:48 UTC (rev 4272) @@ -2,7 +2,7 @@ Name: links Version: 2.1pre15 -Release: 4jh +Release: 4ts License: GPL Summary: Links is a text-only browser very similar to lynx. Group: main @@ -43,6 +43,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 2.1pre15-4ts +- current (2.1pre15-4jh) integrated as 2.1pre15-4ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 2.1pre15-3ts - current (2.1pre15-3jh) integrated as 2.1pre15-3ts for release 1.1 From svn at tinysofa.org Sat Sep 4 13:10:52 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:10:52 +1000 (EST) Subject: [tinysofa-svn] r4273 - tinysofa/releases/1.1/links Message-ID: <20040904131052.DDCED4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:10:52 +1000 (Sat, 04 Sep 2004) New Revision: 4273 Removed: tinysofa/releases/1.1/links/pristine/ Log: links: * removing pristine (2.1pre15-3ts) From svn at tinysofa.org Sat Sep 4 13:10:59 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:10:59 +1000 (EST) Subject: [tinysofa-svn] r4274 - tinysofa/releases/1.1/links Message-ID: <20040904131059.2A8D34E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:10:58 +1000 (Sat, 04 Sep 2004) New Revision: 4274 Added: tinysofa/releases/1.1/links/pristine/ Log: links: * retarget pristine (2.1pre15-3ts) to releases/2.1pre15/4ts Copied: tinysofa/releases/1.1/links/pristine (from rev 4272, tinysofa/releases/1.1/links/releases/2.1pre15/4ts) From svn at tinysofa.org Sat Sep 4 13:11:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:11:13 +1000 (EST) Subject: [tinysofa-svn] r4275 - in tinysofa/releases/1.1/module-init-tools: current/specs releases/3.0 releases/3.0/6ts/specs Message-ID: <20040904131113.D8D9B4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:11:13 +1000 (Sat, 04 Sep 2004) New Revision: 4275 Added: tinysofa/releases/1.1/module-init-tools/releases/3.0/6ts/ Modified: tinysofa/releases/1.1/module-init-tools/current/specs/module-init-tools.spec tinysofa/releases/1.1/module-init-tools/releases/3.0/6ts/specs/module-init-tools.spec Log: module-init-tools: * integrate current (3.0-6jh) as releases/3.0/6ts Modified: tinysofa/releases/1.1/module-init-tools/current/specs/module-init-tools.spec =================================================================== --- tinysofa/releases/1.1/module-init-tools/current/specs/module-init-tools.spec 2004-09-04 13:10:58 UTC (rev 4274) +++ tinysofa/releases/1.1/module-init-tools/current/specs/module-init-tools.spec 2004-09-04 13:11:13 UTC (rev 4275) @@ -1,7 +1,7 @@ Summary: The kernel module init tools. Name: module-init-tools Version: 3.0 -Release: 6jh +Release: 6ts License: GPL Group: main Source: http://kernel.us.themoes.org/pub/linux/utils/kernel/module-init-tools/%{name}-%{version}.tar.bz2 @@ -68,6 +68,9 @@ %ghost %{_sysconfdir}/modprobe.conf %changelog +* Sat Sep 04 2004 tsintegrate 3.0-6ts +- current (3.0-6jh) integrated as 3.0-6ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 3.0-5ts - current (3.0-5jh) integrated as 3.0-5ts for release 1.1 Copied: tinysofa/releases/1.1/module-init-tools/releases/3.0/6ts (from rev 4235, tinysofa/releases/1.1/module-init-tools/current) Modified: tinysofa/releases/1.1/module-init-tools/releases/3.0/6ts/specs/module-init-tools.spec =================================================================== --- tinysofa/releases/1.1/module-init-tools/current/specs/module-init-tools.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/module-init-tools/releases/3.0/6ts/specs/module-init-tools.spec 2004-09-04 13:11:13 UTC (rev 4275) @@ -1,7 +1,7 @@ Summary: The kernel module init tools. Name: module-init-tools Version: 3.0 -Release: 6jh +Release: 6ts License: GPL Group: main Source: http://kernel.us.themoes.org/pub/linux/utils/kernel/module-init-tools/%{name}-%{version}.tar.bz2 @@ -68,6 +68,9 @@ %ghost %{_sysconfdir}/modprobe.conf %changelog +* Sat Sep 04 2004 tsintegrate 3.0-6ts +- current (3.0-6jh) integrated as 3.0-6ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 3.0-5ts - current (3.0-5jh) integrated as 3.0-5ts for release 1.1 From svn at tinysofa.org Sat Sep 4 13:11:19 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:11:19 +1000 (EST) Subject: [tinysofa-svn] r4276 - tinysofa/releases/1.1/module-init-tools Message-ID: <20040904131119.B25054E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:11:19 +1000 (Sat, 04 Sep 2004) New Revision: 4276 Removed: tinysofa/releases/1.1/module-init-tools/pristine/ Log: module-init-tools: * removing pristine (3.0-5ts) From svn at tinysofa.org Sat Sep 4 13:11:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:11:27 +1000 (EST) Subject: [tinysofa-svn] r4277 - tinysofa/releases/1.1/module-init-tools Message-ID: <20040904131127.39C2F4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:11:27 +1000 (Sat, 04 Sep 2004) New Revision: 4277 Added: tinysofa/releases/1.1/module-init-tools/pristine/ Log: module-init-tools: * retarget pristine (3.0-5ts) to releases/3.0/6ts Copied: tinysofa/releases/1.1/module-init-tools/pristine (from rev 4275, tinysofa/releases/1.1/module-init-tools/releases/3.0/6ts) From svn at tinysofa.org Sat Sep 4 13:11:45 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:11:45 +1000 (EST) Subject: [tinysofa-svn] r4278 - in tinysofa/releases/1.1/nfs-utils: current/specs releases/1.0.6 releases/1.0.6/7ts/specs Message-ID: <20040904131145.631894E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:11:45 +1000 (Sat, 04 Sep 2004) New Revision: 4278 Added: tinysofa/releases/1.1/nfs-utils/releases/1.0.6/7ts/ Modified: tinysofa/releases/1.1/nfs-utils/current/specs/nfs-utils.spec tinysofa/releases/1.1/nfs-utils/releases/1.0.6/7ts/specs/nfs-utils.spec Log: nfs-utils: * integrate current (1.0.6-7jh) as releases/1.0.6/7ts Modified: tinysofa/releases/1.1/nfs-utils/current/specs/nfs-utils.spec =================================================================== --- tinysofa/releases/1.1/nfs-utils/current/specs/nfs-utils.spec 2004-09-04 13:11:27 UTC (rev 4277) +++ tinysofa/releases/1.1/nfs-utils/current/specs/nfs-utils.spec 2004-09-04 13:11:45 UTC (rev 4278) @@ -3,7 +3,7 @@ Summary: NFS utlilities and supporting daemons for the kernel NFS server. Name: nfs-utils Version: 1.0.6 -Release: 7jh +Release: 7ts Source0: http://prdownloads.sourceforge.net/nfs/nfs-utils-1.0.6.tar.gz Source1: ftp://nfs.sourceforge.net/pub/nfs/nfs.doc.tar.gz Source10: nfs.init @@ -217,6 +217,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 1.0.6-7ts +- current (1.0.6-7jh) integrated as 1.0.6-7ts for release 1.1-U1 + * Sat Aug 7 2004 Jaakko Heinonen - port to tinysofa 1.1 Copied: tinysofa/releases/1.1/nfs-utils/releases/1.0.6/7ts (from rev 4235, tinysofa/releases/1.1/nfs-utils/current) Modified: tinysofa/releases/1.1/nfs-utils/releases/1.0.6/7ts/specs/nfs-utils.spec =================================================================== --- tinysofa/releases/1.1/nfs-utils/current/specs/nfs-utils.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/nfs-utils/releases/1.0.6/7ts/specs/nfs-utils.spec 2004-09-04 13:11:45 UTC (rev 4278) @@ -3,7 +3,7 @@ Summary: NFS utlilities and supporting daemons for the kernel NFS server. Name: nfs-utils Version: 1.0.6 -Release: 7jh +Release: 7ts Source0: http://prdownloads.sourceforge.net/nfs/nfs-utils-1.0.6.tar.gz Source1: ftp://nfs.sourceforge.net/pub/nfs/nfs.doc.tar.gz Source10: nfs.init @@ -217,6 +217,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 1.0.6-7ts +- current (1.0.6-7jh) integrated as 1.0.6-7ts for release 1.1-U1 + * Sat Aug 7 2004 Jaakko Heinonen - port to tinysofa 1.1 From svn at tinysofa.org Sat Sep 4 13:11:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:11:50 +1000 (EST) Subject: [tinysofa-svn] r4279 - tinysofa/releases/1.1/nfs-utils Message-ID: <20040904131150.BA4A14E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:11:50 +1000 (Sat, 04 Sep 2004) New Revision: 4279 Removed: tinysofa/releases/1.1/nfs-utils/pristine/ Log: nfs-utils: * removing pristine (1.0.6-6ts) From svn at tinysofa.org Sat Sep 4 13:11:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:11:57 +1000 (EST) Subject: [tinysofa-svn] r4280 - tinysofa/releases/1.1/nfs-utils Message-ID: <20040904131157.5299D4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:11:57 +1000 (Sat, 04 Sep 2004) New Revision: 4280 Added: tinysofa/releases/1.1/nfs-utils/pristine/ Log: nfs-utils: * retarget pristine (1.0.6-6ts) to releases/1.0.6/7ts Copied: tinysofa/releases/1.1/nfs-utils/pristine (from rev 4278, tinysofa/releases/1.1/nfs-utils/releases/1.0.6/7ts) From svn at tinysofa.org Sat Sep 4 13:12:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:12:13 +1000 (EST) Subject: [tinysofa-svn] r4281 - in tinysofa/releases/1.1/openssl: current/specs releases/0.9.7c releases/0.9.7c/12ts/specs Message-ID: <20040904131213.6FBC54E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:12:13 +1000 (Sat, 04 Sep 2004) New Revision: 4281 Added: tinysofa/releases/1.1/openssl/releases/0.9.7c/12ts/ Modified: tinysofa/releases/1.1/openssl/current/specs/openssl.spec tinysofa/releases/1.1/openssl/releases/0.9.7c/12ts/specs/openssl.spec Log: openssl: * integrate current (0.9.7c-12jh) as releases/0.9.7c/12ts Modified: tinysofa/releases/1.1/openssl/current/specs/openssl.spec =================================================================== --- tinysofa/releases/1.1/openssl/current/specs/openssl.spec 2004-09-04 13:11:57 UTC (rev 4280) +++ tinysofa/releases/1.1/openssl/current/specs/openssl.spec 2004-09-04 13:12:13 UTC (rev 4281) @@ -2,7 +2,7 @@ Name: openssl %define majorver 0.9.7 Version: %{majorver}c -Release: 12jh +Release: 12ts License: BSD-like Group: main %define m2crypto_version 0.13.1 @@ -267,6 +267,9 @@ %doc m2crypto-%{m2crypto_version}/{BUGS,CHANGES,LIC*,README} %changelog +* Sat Sep 04 2004 tsintegrate 0.9.7c-12ts +- current (0.9.7c-12jh) integrated as 0.9.7c-12ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 0.9.7c-11ts - current (0.9.7c-11jh) integrated as 0.9.7c-11ts for release 1.1 Copied: tinysofa/releases/1.1/openssl/releases/0.9.7c/12ts (from rev 4235, tinysofa/releases/1.1/openssl/current) Modified: tinysofa/releases/1.1/openssl/releases/0.9.7c/12ts/specs/openssl.spec =================================================================== --- tinysofa/releases/1.1/openssl/current/specs/openssl.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/openssl/releases/0.9.7c/12ts/specs/openssl.spec 2004-09-04 13:12:13 UTC (rev 4281) @@ -2,7 +2,7 @@ Name: openssl %define majorver 0.9.7 Version: %{majorver}c -Release: 12jh +Release: 12ts License: BSD-like Group: main %define m2crypto_version 0.13.1 @@ -267,6 +267,9 @@ %doc m2crypto-%{m2crypto_version}/{BUGS,CHANGES,LIC*,README} %changelog +* Sat Sep 04 2004 tsintegrate 0.9.7c-12ts +- current (0.9.7c-12jh) integrated as 0.9.7c-12ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 0.9.7c-11ts - current (0.9.7c-11jh) integrated as 0.9.7c-11ts for release 1.1 From svn at tinysofa.org Sat Sep 4 13:12:19 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:12:19 +1000 (EST) Subject: [tinysofa-svn] r4282 - tinysofa/releases/1.1/openssl Message-ID: <20040904131219.3F0354E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:12:19 +1000 (Sat, 04 Sep 2004) New Revision: 4282 Removed: tinysofa/releases/1.1/openssl/pristine/ Log: openssl: * removing pristine (0.9.7c-11ts) From svn at tinysofa.org Sat Sep 4 13:12:25 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:12:25 +1000 (EST) Subject: [tinysofa-svn] r4283 - tinysofa/releases/1.1/openssl Message-ID: <20040904131225.296CA4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:12:24 +1000 (Sat, 04 Sep 2004) New Revision: 4283 Added: tinysofa/releases/1.1/openssl/pristine/ Log: openssl: * retarget pristine (0.9.7c-11ts) to releases/0.9.7c/12ts Copied: tinysofa/releases/1.1/openssl/pristine (from rev 4281, tinysofa/releases/1.1/openssl/releases/0.9.7c/12ts) From svn at tinysofa.org Sat Sep 4 13:12:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:12:41 +1000 (EST) Subject: [tinysofa-svn] r4284 - in tinysofa/releases/1.1/pam: current/specs releases/0.77 releases/0.77/42ts/specs Message-ID: <20040904131241.F06EA4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:12:41 +1000 (Sat, 04 Sep 2004) New Revision: 4284 Added: tinysofa/releases/1.1/pam/releases/0.77/42ts/ Modified: tinysofa/releases/1.1/pam/current/specs/pam.spec tinysofa/releases/1.1/pam/releases/0.77/42ts/specs/pam.spec Log: pam: * integrate current (0.77-42jh) as releases/0.77/42ts Modified: tinysofa/releases/1.1/pam/current/specs/pam.spec =================================================================== --- tinysofa/releases/1.1/pam/current/specs/pam.spec 2004-09-04 13:12:24 UTC (rev 4283) +++ tinysofa/releases/1.1/pam/current/specs/pam.spec 2004-09-04 13:12:41 UTC (rev 4284) @@ -9,7 +9,7 @@ Summary: A security tool which provides authentication for applications. Name: pam Version: 0.77 -Release: 42jh +Release: 42ts License: GPL or BSD Group: main Source0: ftp.us.kernel.org:/pub/linux/libs/pam/pre/library/Linux-PAM-%{version}.tar.bz2 @@ -408,6 +408,9 @@ %{_libdir}/libpam_misc.so %changelog +* Sat Sep 04 2004 tsintegrate 0.77-42ts +- current (0.77-42jh) integrated as 0.77-42ts for release 1.1-U1 + * Mon Aug 16 2004 Jaakko Heinonen - x86_64 fixes - create correct lib{pam,pam_misc} symlinks Copied: tinysofa/releases/1.1/pam/releases/0.77/42ts (from rev 4235, tinysofa/releases/1.1/pam/current) Modified: tinysofa/releases/1.1/pam/releases/0.77/42ts/specs/pam.spec =================================================================== --- tinysofa/releases/1.1/pam/current/specs/pam.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/pam/releases/0.77/42ts/specs/pam.spec 2004-09-04 13:12:41 UTC (rev 4284) @@ -9,7 +9,7 @@ Summary: A security tool which provides authentication for applications. Name: pam Version: 0.77 -Release: 42jh +Release: 42ts License: GPL or BSD Group: main Source0: ftp.us.kernel.org:/pub/linux/libs/pam/pre/library/Linux-PAM-%{version}.tar.bz2 @@ -408,6 +408,9 @@ %{_libdir}/libpam_misc.so %changelog +* Sat Sep 04 2004 tsintegrate 0.77-42ts +- current (0.77-42jh) integrated as 0.77-42ts for release 1.1-U1 + * Mon Aug 16 2004 Jaakko Heinonen - x86_64 fixes - create correct lib{pam,pam_misc} symlinks From svn at tinysofa.org Sat Sep 4 13:12:47 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:12:47 +1000 (EST) Subject: [tinysofa-svn] r4285 - tinysofa/releases/1.1/pam Message-ID: <20040904131247.055E74E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:12:46 +1000 (Sat, 04 Sep 2004) New Revision: 4285 Removed: tinysofa/releases/1.1/pam/pristine/ Log: pam: * removing pristine (0.77-41ts) From svn at tinysofa.org Sat Sep 4 13:12:52 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:12:52 +1000 (EST) Subject: [tinysofa-svn] r4286 - tinysofa/releases/1.1/pam Message-ID: <20040904131252.6F2B44E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:12:52 +1000 (Sat, 04 Sep 2004) New Revision: 4286 Added: tinysofa/releases/1.1/pam/pristine/ Log: pam: * retarget pristine (0.77-41ts) to releases/0.77/42ts Copied: tinysofa/releases/1.1/pam/pristine (from rev 4284, tinysofa/releases/1.1/pam/releases/0.77/42ts) From svn at tinysofa.org Sat Sep 4 13:13:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:13:07 +1000 (EST) Subject: [tinysofa-svn] r4287 - in tinysofa/releases/1.1/perl: current/specs releases/5.8.5 releases/5.8.5/3ts/specs Message-ID: <20040904131307.3D6084E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:13:07 +1000 (Sat, 04 Sep 2004) New Revision: 4287 Added: tinysofa/releases/1.1/perl/releases/5.8.5/3ts/ Modified: tinysofa/releases/1.1/perl/current/specs/perl.spec tinysofa/releases/1.1/perl/releases/5.8.5/3ts/specs/perl.spec Log: perl: * integrate current (5.8.5-3jh) as releases/5.8.5/3ts Modified: tinysofa/releases/1.1/perl/current/specs/perl.spec =================================================================== --- tinysofa/releases/1.1/perl/current/specs/perl.spec 2004-09-04 13:12:52 UTC (rev 4286) +++ tinysofa/releases/1.1/perl/current/specs/perl.spec 2004-09-04 13:13:07 UTC (rev 4287) @@ -4,7 +4,7 @@ Name: perl Version: 5.8.5 Epoch: 1 -Release: 3jh +Release: 3ts License: GPL Group: main Url: http://www.perl.com @@ -438,6 +438,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 5.8.5-3ts +- current (5.8.5-3jh) integrated as 5.8.5-3ts for release 1.1-U1 + * Mon Aug 16 2004 Jaakko Heinonen 5.8.5-3jh - add initial multilib support - enable useshrplib Copied: tinysofa/releases/1.1/perl/releases/5.8.5/3ts (from rev 4235, tinysofa/releases/1.1/perl/current) Modified: tinysofa/releases/1.1/perl/releases/5.8.5/3ts/specs/perl.spec =================================================================== --- tinysofa/releases/1.1/perl/current/specs/perl.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/perl/releases/5.8.5/3ts/specs/perl.spec 2004-09-04 13:13:07 UTC (rev 4287) @@ -4,7 +4,7 @@ Name: perl Version: 5.8.5 Epoch: 1 -Release: 3jh +Release: 3ts License: GPL Group: main Url: http://www.perl.com @@ -438,6 +438,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 5.8.5-3ts +- current (5.8.5-3jh) integrated as 5.8.5-3ts for release 1.1-U1 + * Mon Aug 16 2004 Jaakko Heinonen 5.8.5-3jh - add initial multilib support - enable useshrplib From svn at tinysofa.org Sat Sep 4 13:13:11 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:13:11 +1000 (EST) Subject: [tinysofa-svn] r4288 - tinysofa/releases/1.1/perl Message-ID: <20040904131311.D8FB44E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:13:11 +1000 (Sat, 04 Sep 2004) New Revision: 4288 Removed: tinysofa/releases/1.1/perl/pristine/ Log: perl: * removing pristine (5.8.5-2ts) From svn at tinysofa.org Sat Sep 4 13:13:17 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:13:17 +1000 (EST) Subject: [tinysofa-svn] r4289 - tinysofa/releases/1.1/perl Message-ID: <20040904131317.8D3554E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:13:17 +1000 (Sat, 04 Sep 2004) New Revision: 4289 Added: tinysofa/releases/1.1/perl/pristine/ Log: perl: * retarget pristine (5.8.5-2ts) to releases/5.8.5/3ts Copied: tinysofa/releases/1.1/perl/pristine (from rev 4287, tinysofa/releases/1.1/perl/releases/5.8.5/3ts) From svn at tinysofa.org Sat Sep 4 13:13:36 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:13:36 +1000 (EST) Subject: [tinysofa-svn] r4291 - tinysofa/releases/1.1/php4 Message-ID: <20040904131336.69B5A4E80E6@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:13:36 +1000 (Sat, 04 Sep 2004) New Revision: 4291 Removed: tinysofa/releases/1.1/php4/pristine/ Log: php4: * removing pristine (4.3.8-2ts) From svn at tinysofa.org Sat Sep 4 13:13:31 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:13:31 +1000 (EST) Subject: [tinysofa-svn] r4290 - in tinysofa/releases/1.1/php4: current/specs releases/4.3.8 releases/4.3.8/5ts/specs Message-ID: <20040904131331.2FF674E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:13:30 +1000 (Sat, 04 Sep 2004) New Revision: 4290 Added: tinysofa/releases/1.1/php4/releases/4.3.8/5ts/ Modified: tinysofa/releases/1.1/php4/current/specs/php4.spec tinysofa/releases/1.1/php4/releases/4.3.8/5ts/specs/php4.spec Log: php4: * integrate current (4.3.8-5jh) as releases/4.3.8/5ts Modified: tinysofa/releases/1.1/php4/current/specs/php4.spec =================================================================== --- tinysofa/releases/1.1/php4/current/specs/php4.spec 2004-09-04 13:13:17 UTC (rev 4289) +++ tinysofa/releases/1.1/php4/current/specs/php4.spec 2004-09-04 13:13:30 UTC (rev 4290) @@ -7,7 +7,7 @@ Summary: The PHP HTML-embedded scripting language. (PHP: Hypertext Preprocessor) Name: php4 Version: 4.3.8 -Release: 5jh +Release: 5ts License: The PHP License Group: main URL: http://www.php.net/ @@ -608,6 +608,9 @@ %endif %changelog +* Sat Sep 04 2004 tsintegrate 4.3.8-5ts +- current (4.3.8-5jh) integrated as 4.3.8-5ts for release 1.1-U1 + * Mon Aug 30 2004 Jaakko Heinonen 4.3.8-5jh - enable gd support Copied: tinysofa/releases/1.1/php4/releases/4.3.8/5ts (from rev 4235, tinysofa/releases/1.1/php4/current) Modified: tinysofa/releases/1.1/php4/releases/4.3.8/5ts/specs/php4.spec =================================================================== --- tinysofa/releases/1.1/php4/current/specs/php4.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/php4/releases/4.3.8/5ts/specs/php4.spec 2004-09-04 13:13:30 UTC (rev 4290) @@ -7,7 +7,7 @@ Summary: The PHP HTML-embedded scripting language. (PHP: Hypertext Preprocessor) Name: php4 Version: 4.3.8 -Release: 5jh +Release: 5ts License: The PHP License Group: main URL: http://www.php.net/ @@ -608,6 +608,9 @@ %endif %changelog +* Sat Sep 04 2004 tsintegrate 4.3.8-5ts +- current (4.3.8-5jh) integrated as 4.3.8-5ts for release 1.1-U1 + * Mon Aug 30 2004 Jaakko Heinonen 4.3.8-5jh - enable gd support From svn at tinysofa.org Sat Sep 4 13:13:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:13:41 +1000 (EST) Subject: [tinysofa-svn] r4292 - tinysofa/releases/1.1/php4 Message-ID: <20040904131341.6BE8A4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:13:41 +1000 (Sat, 04 Sep 2004) New Revision: 4292 Added: tinysofa/releases/1.1/php4/pristine/ Log: php4: * retarget pristine (4.3.8-2ts) to releases/4.3.8/5ts Copied: tinysofa/releases/1.1/php4/pristine (from rev 4290, tinysofa/releases/1.1/php4/releases/4.3.8/5ts) From svn at tinysofa.org Sat Sep 4 13:13:52 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:13:52 +1000 (EST) Subject: [tinysofa-svn] r4293 - in tinysofa/releases/1.1/portmap: current/specs releases/4.0 releases/4.0/36ts/specs Message-ID: <20040904131352.BB0294E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:13:52 +1000 (Sat, 04 Sep 2004) New Revision: 4293 Added: tinysofa/releases/1.1/portmap/releases/4.0/36ts/ Modified: tinysofa/releases/1.1/portmap/current/specs/portmap.spec tinysofa/releases/1.1/portmap/releases/4.0/36ts/specs/portmap.spec Log: portmap: * integrate current (4.0-36jh) as releases/4.0/36ts Modified: tinysofa/releases/1.1/portmap/current/specs/portmap.spec =================================================================== --- tinysofa/releases/1.1/portmap/current/specs/portmap.spec 2004-09-04 13:13:41 UTC (rev 4292) +++ tinysofa/releases/1.1/portmap/current/specs/portmap.spec 2004-09-04 13:13:52 UTC (rev 4293) @@ -3,7 +3,7 @@ Summary: A program which manages RPC connections. Name: portmap Version: 4.0 -Release: 36jh +Release: 36ts Group: main License: BSD Source0: ftp://coast.cs.purdue.edu/pub/tools/unix/netutils/portmap/portmap_4.tar.gz @@ -104,6 +104,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 4.0-36ts +- current (4.0-36jh) integrated as 4.0-36ts for release 1.1-U1 + * Sat Aug 7 2004 Jaakko Heinonen - port to 1.1 Copied: tinysofa/releases/1.1/portmap/releases/4.0/36ts (from rev 4235, tinysofa/releases/1.1/portmap/current) Modified: tinysofa/releases/1.1/portmap/releases/4.0/36ts/specs/portmap.spec =================================================================== --- tinysofa/releases/1.1/portmap/current/specs/portmap.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/portmap/releases/4.0/36ts/specs/portmap.spec 2004-09-04 13:13:52 UTC (rev 4293) @@ -3,7 +3,7 @@ Summary: A program which manages RPC connections. Name: portmap Version: 4.0 -Release: 36jh +Release: 36ts Group: main License: BSD Source0: ftp://coast.cs.purdue.edu/pub/tools/unix/netutils/portmap/portmap_4.tar.gz @@ -104,6 +104,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 4.0-36ts +- current (4.0-36jh) integrated as 4.0-36ts for release 1.1-U1 + * Sat Aug 7 2004 Jaakko Heinonen - port to 1.1 From svn at tinysofa.org Sat Sep 4 13:13:56 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:13:56 +1000 (EST) Subject: [tinysofa-svn] r4294 - tinysofa/releases/1.1/portmap Message-ID: <20040904131356.AC4E24E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:13:56 +1000 (Sat, 04 Sep 2004) New Revision: 4294 Removed: tinysofa/releases/1.1/portmap/pristine/ Log: portmap: * removing pristine (4.0-34ts) From svn at tinysofa.org Sat Sep 4 13:14:01 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:14:01 +1000 (EST) Subject: [tinysofa-svn] r4295 - tinysofa/releases/1.1/portmap Message-ID: <20040904131401.30D624E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:14:01 +1000 (Sat, 04 Sep 2004) New Revision: 4295 Added: tinysofa/releases/1.1/portmap/pristine/ Log: portmap: * retarget pristine (4.0-34ts) to releases/4.0/36ts Copied: tinysofa/releases/1.1/portmap/pristine (from rev 4293, tinysofa/releases/1.1/portmap/releases/4.0/36ts) From svn at tinysofa.org Sat Sep 4 13:14:10 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:14:10 +1000 (EST) Subject: [tinysofa-svn] r4296 - in tinysofa/releases/1.1/ppp: current/specs releases releases/2.4.2 releases/2.4.2/1ts/specs Message-ID: <20040904131410.DB68A4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:14:10 +1000 (Sat, 04 Sep 2004) New Revision: 4296 Added: tinysofa/releases/1.1/ppp/releases/2.4.2/ tinysofa/releases/1.1/ppp/releases/2.4.2/1ts/ Modified: tinysofa/releases/1.1/ppp/current/specs/ppp.spec tinysofa/releases/1.1/ppp/releases/2.4.2/1ts/specs/ppp.spec Log: ppp: * integrate current (2.4.2-1jh) as releases/2.4.2/1ts Modified: tinysofa/releases/1.1/ppp/current/specs/ppp.spec =================================================================== --- tinysofa/releases/1.1/ppp/current/specs/ppp.spec 2004-09-04 13:14:01 UTC (rev 4295) +++ tinysofa/releases/1.1/ppp/current/specs/ppp.spec 2004-09-04 13:14:10 UTC (rev 4296) @@ -1,7 +1,7 @@ Summary: The PPP (Point-to-Point Protocol) daemon. Name: ppp Version: 2.4.2 -Release: 1jh +Release: 1ts License: distributable Group: extra Source0: ftp://ftp.samba.org/pub/ppp/ppp-%{version}.tar.gz @@ -104,6 +104,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 2.4.2-1ts +- current (2.4.2-1jh) integrated as 2.4.2-1ts for release 1.1-U1 + * Mon Jun 21 2004 Thomas Woerner 2.4.2-3.1 - fixed compiler warnings - fixed 64bit problem with ms-chap (#125501) Copied: tinysofa/releases/1.1/ppp/releases/2.4.2/1ts (from rev 4235, tinysofa/releases/1.1/ppp/current) Modified: tinysofa/releases/1.1/ppp/releases/2.4.2/1ts/specs/ppp.spec =================================================================== --- tinysofa/releases/1.1/ppp/current/specs/ppp.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/ppp/releases/2.4.2/1ts/specs/ppp.spec 2004-09-04 13:14:10 UTC (rev 4296) @@ -1,7 +1,7 @@ Summary: The PPP (Point-to-Point Protocol) daemon. Name: ppp Version: 2.4.2 -Release: 1jh +Release: 1ts License: distributable Group: extra Source0: ftp://ftp.samba.org/pub/ppp/ppp-%{version}.tar.gz @@ -104,6 +104,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 2.4.2-1ts +- current (2.4.2-1jh) integrated as 2.4.2-1ts for release 1.1-U1 + * Mon Jun 21 2004 Thomas Woerner 2.4.2-3.1 - fixed compiler warnings - fixed 64bit problem with ms-chap (#125501) From svn at tinysofa.org Sat Sep 4 13:14:14 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:14:14 +1000 (EST) Subject: [tinysofa-svn] r4297 - tinysofa/releases/1.1/ppp Message-ID: <20040904131414.BBABB4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:14:14 +1000 (Sat, 04 Sep 2004) New Revision: 4297 Removed: tinysofa/releases/1.1/ppp/pristine/ Log: ppp: * removing pristine (2.4.1-14ts) From svn at tinysofa.org Sat Sep 4 13:14:20 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:14:20 +1000 (EST) Subject: [tinysofa-svn] r4298 - tinysofa/releases/1.1/ppp Message-ID: <20040904131420.308E94E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:14:20 +1000 (Sat, 04 Sep 2004) New Revision: 4298 Added: tinysofa/releases/1.1/ppp/pristine/ Log: ppp: * retarget pristine (2.4.1-14ts) to releases/2.4.2/1ts Copied: tinysofa/releases/1.1/ppp/pristine (from rev 4296, tinysofa/releases/1.1/ppp/releases/2.4.2/1ts) From svn at tinysofa.org Sat Sep 4 13:14:31 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:14:31 +1000 (EST) Subject: [tinysofa-svn] r4299 - in tinysofa/releases/1.1/release: current/specs releases/1.1 releases/1.1/1ts/specs Message-ID: <20040904131431.F09C34E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:14:31 +1000 (Sat, 04 Sep 2004) New Revision: 4299 Added: tinysofa/releases/1.1/release/releases/1.1/1ts/ Modified: tinysofa/releases/1.1/release/current/specs/release.spec tinysofa/releases/1.1/release/releases/1.1/1ts/specs/release.spec Log: release: * integrate current (1.1-1jh) as releases/1.1/1ts Modified: tinysofa/releases/1.1/release/current/specs/release.spec =================================================================== --- tinysofa/releases/1.1/release/current/specs/release.spec 2004-09-04 13:14:20 UTC (rev 4298) +++ tinysofa/releases/1.1/release/current/specs/release.spec 2004-09-04 13:14:31 UTC (rev 4299) @@ -1,11 +1,11 @@ -%define release_name Rio +%define release_name Rio update 1 %define vendor tinysofa %define product classic server Summary: tinysofa release file Name: release Version: 1.1 -Release: 0ts +Release: 1ts Epoch: 2 License: GPL Group: main @@ -45,6 +45,9 @@ %{_sysconfdir}/tinysofa-release %changelog +* Sat Sep 04 2004 tsintegrate 1.1-1ts +- current (1.1-1jh) integrated as 1.1-1ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 1.1-0ts - current (1.1-0jh) integrated as 1.1-0ts for release 1.1 Copied: tinysofa/releases/1.1/release/releases/1.1/1ts (from rev 4235, tinysofa/releases/1.1/release/current) Modified: tinysofa/releases/1.1/release/releases/1.1/1ts/specs/release.spec =================================================================== --- tinysofa/releases/1.1/release/current/specs/release.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/release/releases/1.1/1ts/specs/release.spec 2004-09-04 13:14:31 UTC (rev 4299) @@ -1,11 +1,11 @@ -%define release_name Rio +%define release_name Rio update 1 %define vendor tinysofa %define product classic server Summary: tinysofa release file Name: release Version: 1.1 -Release: 0ts +Release: 1ts Epoch: 2 License: GPL Group: main @@ -45,6 +45,9 @@ %{_sysconfdir}/tinysofa-release %changelog +* Sat Sep 04 2004 tsintegrate 1.1-1ts +- current (1.1-1jh) integrated as 1.1-1ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 1.1-0ts - current (1.1-0jh) integrated as 1.1-0ts for release 1.1 From svn at tinysofa.org Sat Sep 4 13:14:36 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:14:36 +1000 (EST) Subject: [tinysofa-svn] r4300 - tinysofa/releases/1.1/release Message-ID: <20040904131436.9F6CD4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:14:36 +1000 (Sat, 04 Sep 2004) New Revision: 4300 Removed: tinysofa/releases/1.1/release/pristine/ Log: release: * removing pristine (1.1-0ts) From svn at tinysofa.org Sat Sep 4 13:14:42 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:14:42 +1000 (EST) Subject: [tinysofa-svn] r4301 - tinysofa/releases/1.1/release Message-ID: <20040904131442.8FA8C4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:14:42 +1000 (Sat, 04 Sep 2004) New Revision: 4301 Added: tinysofa/releases/1.1/release/pristine/ Log: release: * retarget pristine (1.1-0ts) to releases/1.1/1ts Copied: tinysofa/releases/1.1/release/pristine (from rev 4299, tinysofa/releases/1.1/release/releases/1.1/1ts) From svn at tinysofa.org Sat Sep 4 13:14:59 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:14:59 +1000 (EST) Subject: [tinysofa-svn] r4302 - in tinysofa/releases/1.1/rpm: current/specs releases/4.3.2 releases/4.3.2/3ts/specs Message-ID: <20040904131459.826974E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:14:59 +1000 (Sat, 04 Sep 2004) New Revision: 4302 Added: tinysofa/releases/1.1/rpm/releases/4.3.2/3ts/ Modified: tinysofa/releases/1.1/rpm/current/specs/rpm.spec tinysofa/releases/1.1/rpm/releases/4.3.2/3ts/specs/rpm.spec Log: rpm: * integrate current (4.3.2-3jh) as releases/4.3.2/3ts Modified: tinysofa/releases/1.1/rpm/current/specs/rpm.spec =================================================================== --- tinysofa/releases/1.1/rpm/current/specs/rpm.spec 2004-09-04 13:14:42 UTC (rev 4301) +++ tinysofa/releases/1.1/rpm/current/specs/rpm.spec 2004-09-04 13:14:59 UTC (rev 4302) @@ -21,7 +21,7 @@ %define version 4.3.2 Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 3jh +Release: 3ts Group: main Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz Source1: GROUPS @@ -514,6 +514,9 @@ %{__includedir}/popt.h %changelog +* Sat Sep 04 2004 tsintegrate 4.3.2-3ts +- current (4.3.2-3jh) integrated as 4.3.2-3ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 4.3.2-2ts - current (4.3.2-2jh) integrated as 4.3.2-2ts for release 1.1 Copied: tinysofa/releases/1.1/rpm/releases/4.3.2/3ts (from rev 4235, tinysofa/releases/1.1/rpm/current) Modified: tinysofa/releases/1.1/rpm/releases/4.3.2/3ts/specs/rpm.spec =================================================================== --- tinysofa/releases/1.1/rpm/current/specs/rpm.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/rpm/releases/4.3.2/3ts/specs/rpm.spec 2004-09-04 13:14:59 UTC (rev 4302) @@ -21,7 +21,7 @@ %define version 4.3.2 Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 3jh +Release: 3ts Group: main Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz Source1: GROUPS @@ -514,6 +514,9 @@ %{__includedir}/popt.h %changelog +* Sat Sep 04 2004 tsintegrate 4.3.2-3ts +- current (4.3.2-3jh) integrated as 4.3.2-3ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 4.3.2-2ts - current (4.3.2-2jh) integrated as 4.3.2-2ts for release 1.1 From svn at tinysofa.org Sat Sep 4 13:15:03 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:15:03 +1000 (EST) Subject: [tinysofa-svn] r4303 - tinysofa/releases/1.1/rpm Message-ID: <20040904131503.A4DFE4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:15:03 +1000 (Sat, 04 Sep 2004) New Revision: 4303 Removed: tinysofa/releases/1.1/rpm/pristine/ Log: rpm: * removing pristine (4.3.2-2ts) From svn at tinysofa.org Sat Sep 4 13:15:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:15:08 +1000 (EST) Subject: [tinysofa-svn] r4304 - tinysofa/releases/1.1/rpm Message-ID: <20040904131508.4E7C14E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:15:08 +1000 (Sat, 04 Sep 2004) New Revision: 4304 Added: tinysofa/releases/1.1/rpm/pristine/ Log: rpm: * retarget pristine (4.3.2-2ts) to releases/4.3.2/3ts Copied: tinysofa/releases/1.1/rpm/pristine (from rev 4302, tinysofa/releases/1.1/rpm/releases/4.3.2/3ts) From svn at tinysofa.org Sat Sep 4 13:15:22 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:15:22 +1000 (EST) Subject: [tinysofa-svn] r4305 - in tinysofa/releases/1.1/samba: current/specs releases releases/3.0.6 releases/3.0.6/1ts/specs Message-ID: <20040904131522.832F84E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:15:22 +1000 (Sat, 04 Sep 2004) New Revision: 4305 Added: tinysofa/releases/1.1/samba/releases/3.0.6/ tinysofa/releases/1.1/samba/releases/3.0.6/1ts/ Modified: tinysofa/releases/1.1/samba/current/specs/samba.spec tinysofa/releases/1.1/samba/releases/3.0.6/1ts/specs/samba.spec Log: samba: * integrate current (3.0.6-1jh) as releases/3.0.6/1ts Modified: tinysofa/releases/1.1/samba/current/specs/samba.spec =================================================================== --- tinysofa/releases/1.1/samba/current/specs/samba.spec 2004-09-04 13:15:08 UTC (rev 4304) +++ tinysofa/releases/1.1/samba/current/specs/samba.spec 2004-09-04 13:15:22 UTC (rev 4305) @@ -3,7 +3,7 @@ Summary: The Samba SMB server. Name: samba Version: 3.0.6 -Release: 1jh +Release: 1ts Epoch: 0 License: GNU GPL Version 2 Group: extra @@ -437,6 +437,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 3.0.6-1ts +- current (3.0.6-1jh) integrated as 3.0.6-1ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 3.0.5-2ts - current (3.0.5-2jh) integrated as 3.0.5-2ts for release 1.1 Copied: tinysofa/releases/1.1/samba/releases/3.0.6/1ts (from rev 4235, tinysofa/releases/1.1/samba/current) Modified: tinysofa/releases/1.1/samba/releases/3.0.6/1ts/specs/samba.spec =================================================================== --- tinysofa/releases/1.1/samba/current/specs/samba.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/samba/releases/3.0.6/1ts/specs/samba.spec 2004-09-04 13:15:22 UTC (rev 4305) @@ -3,7 +3,7 @@ Summary: The Samba SMB server. Name: samba Version: 3.0.6 -Release: 1jh +Release: 1ts Epoch: 0 License: GNU GPL Version 2 Group: extra @@ -437,6 +437,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 3.0.6-1ts +- current (3.0.6-1jh) integrated as 3.0.6-1ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 3.0.5-2ts - current (3.0.5-2jh) integrated as 3.0.5-2ts for release 1.1 From svn at tinysofa.org Sat Sep 4 13:15:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:15:28 +1000 (EST) Subject: [tinysofa-svn] r4306 - tinysofa/releases/1.1/samba Message-ID: <20040904131528.24F9B4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:15:27 +1000 (Sat, 04 Sep 2004) New Revision: 4306 Removed: tinysofa/releases/1.1/samba/pristine/ Log: samba: * removing pristine (3.0.5-2ts) From svn at tinysofa.org Sat Sep 4 13:15:33 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:15:33 +1000 (EST) Subject: [tinysofa-svn] r4307 - tinysofa/releases/1.1/samba Message-ID: <20040904131533.837A74E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:15:33 +1000 (Sat, 04 Sep 2004) New Revision: 4307 Added: tinysofa/releases/1.1/samba/pristine/ Log: samba: * retarget pristine (3.0.5-2ts) to releases/3.0.6/1ts Copied: tinysofa/releases/1.1/samba/pristine (from rev 4305, tinysofa/releases/1.1/samba/releases/3.0.6/1ts) From svn at tinysofa.org Sat Sep 4 13:15:45 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:15:45 +1000 (EST) Subject: [tinysofa-svn] r4308 - in tinysofa/releases/1.1/sharutils: current/specs releases/4.2.1 releases/4.2.1/22ts/specs Message-ID: <20040904131545.E81D94E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:15:45 +1000 (Sat, 04 Sep 2004) New Revision: 4308 Added: tinysofa/releases/1.1/sharutils/releases/4.2.1/22ts/ Modified: tinysofa/releases/1.1/sharutils/current/specs/sharutils.spec tinysofa/releases/1.1/sharutils/releases/4.2.1/22ts/specs/sharutils.spec Log: sharutils: * integrate current (4.2.1-22jh) as releases/4.2.1/22ts Modified: tinysofa/releases/1.1/sharutils/current/specs/sharutils.spec =================================================================== --- tinysofa/releases/1.1/sharutils/current/specs/sharutils.spec 2004-09-04 13:15:33 UTC (rev 4307) +++ tinysofa/releases/1.1/sharutils/current/specs/sharutils.spec 2004-09-04 13:15:45 UTC (rev 4308) @@ -1,7 +1,7 @@ Summary: The GNU shar utilities for packaging and unpackaging shell archives. Name: sharutils Version: 4.2.1 -Release: 22jh +Release: 22ts License: GPL Group: extra Source: ftp://prep.ai.mit.edu/pub/gnu/sharutils/sharutils-%{version}.tar.gz @@ -71,6 +71,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 4.2.1-22ts +- current (4.2.1-22jh) integrated as 4.2.1-22ts for release 1.1-U1 + * Tue Aug 31 2004 Jaakko Heinonen 4.2.1-22jh - spec cleanup Copied: tinysofa/releases/1.1/sharutils/releases/4.2.1/22ts (from rev 4235, tinysofa/releases/1.1/sharutils/current) Modified: tinysofa/releases/1.1/sharutils/releases/4.2.1/22ts/specs/sharutils.spec =================================================================== --- tinysofa/releases/1.1/sharutils/current/specs/sharutils.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/sharutils/releases/4.2.1/22ts/specs/sharutils.spec 2004-09-04 13:15:45 UTC (rev 4308) @@ -1,7 +1,7 @@ Summary: The GNU shar utilities for packaging and unpackaging shell archives. Name: sharutils Version: 4.2.1 -Release: 22jh +Release: 22ts License: GPL Group: extra Source: ftp://prep.ai.mit.edu/pub/gnu/sharutils/sharutils-%{version}.tar.gz @@ -71,6 +71,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 4.2.1-22ts +- current (4.2.1-22jh) integrated as 4.2.1-22ts for release 1.1-U1 + * Tue Aug 31 2004 Jaakko Heinonen 4.2.1-22jh - spec cleanup From svn at tinysofa.org Sat Sep 4 13:15:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:15:50 +1000 (EST) Subject: [tinysofa-svn] r4309 - tinysofa/releases/1.1/sharutils Message-ID: <20040904131550.881524E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:15:50 +1000 (Sat, 04 Sep 2004) New Revision: 4309 Removed: tinysofa/releases/1.1/sharutils/pristine/ Log: sharutils: * removing pristine (4.2.1-21ts) From svn at tinysofa.org Sat Sep 4 13:15:55 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:15:55 +1000 (EST) Subject: [tinysofa-svn] r4310 - tinysofa/releases/1.1/sharutils Message-ID: <20040904131555.37EC84E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:15:55 +1000 (Sat, 04 Sep 2004) New Revision: 4310 Added: tinysofa/releases/1.1/sharutils/pristine/ Log: sharutils: * retarget pristine (4.2.1-21ts) to releases/4.2.1/22ts Copied: tinysofa/releases/1.1/sharutils/pristine (from rev 4308, tinysofa/releases/1.1/sharutils/releases/4.2.1/22ts) From svn at tinysofa.org Sat Sep 4 13:16:09 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:16:09 +1000 (EST) Subject: [tinysofa-svn] r4311 - in tinysofa/releases/1.1/squid: current/specs releases/2.5.STABLE5 releases/2.5.STABLE5/8ts/specs Message-ID: <20040904131609.7EC2E4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:16:09 +1000 (Sat, 04 Sep 2004) New Revision: 4311 Added: tinysofa/releases/1.1/squid/releases/2.5.STABLE5/8ts/ Modified: tinysofa/releases/1.1/squid/current/specs/squid.spec tinysofa/releases/1.1/squid/releases/2.5.STABLE5/8ts/specs/squid.spec Log: squid: * integrate current (2.5.STABLE5-8jh) as releases/2.5.STABLE5/8ts Modified: tinysofa/releases/1.1/squid/current/specs/squid.spec =================================================================== --- tinysofa/releases/1.1/squid/current/specs/squid.spec 2004-09-04 13:15:55 UTC (rev 4310) +++ tinysofa/releases/1.1/squid/current/specs/squid.spec 2004-09-04 13:16:09 UTC (rev 4311) @@ -4,7 +4,7 @@ Summary: The Squid proxy caching server. Name: squid Version: 2.5.STABLE5 -Release: 8jh +Release: 8ts Epoch: 0 License: GPL Group: extra @@ -305,6 +305,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 2.5.STABLE5-8ts +- current (2.5.STABLE5-8jh) integrated as 2.5.STABLE5-8ts for release 1.1-U1 + * Fri Sep 3 2004 Jaakko Heinonen 2.5.STABLE5-8jh - add fix for ntlm auth DoS (http://www.squid-cache.org/bugs/show_bug.cgi?id=1045) Copied: tinysofa/releases/1.1/squid/releases/2.5.STABLE5/8ts (from rev 4235, tinysofa/releases/1.1/squid/current) Modified: tinysofa/releases/1.1/squid/releases/2.5.STABLE5/8ts/specs/squid.spec =================================================================== --- tinysofa/releases/1.1/squid/current/specs/squid.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/squid/releases/2.5.STABLE5/8ts/specs/squid.spec 2004-09-04 13:16:09 UTC (rev 4311) @@ -4,7 +4,7 @@ Summary: The Squid proxy caching server. Name: squid Version: 2.5.STABLE5 -Release: 8jh +Release: 8ts Epoch: 0 License: GPL Group: extra @@ -305,6 +305,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 2.5.STABLE5-8ts +- current (2.5.STABLE5-8jh) integrated as 2.5.STABLE5-8ts for release 1.1-U1 + * Fri Sep 3 2004 Jaakko Heinonen 2.5.STABLE5-8jh - add fix for ntlm auth DoS (http://www.squid-cache.org/bugs/show_bug.cgi?id=1045) From svn at tinysofa.org Sat Sep 4 13:16:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:16:13 +1000 (EST) Subject: [tinysofa-svn] r4312 - tinysofa/releases/1.1/squid Message-ID: <20040904131613.C98974E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:16:13 +1000 (Sat, 04 Sep 2004) New Revision: 4312 Removed: tinysofa/releases/1.1/squid/pristine/ Log: squid: * removing pristine (2.5.STABLE5-7ts) From svn at tinysofa.org Sat Sep 4 13:16:19 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:16:19 +1000 (EST) Subject: [tinysofa-svn] r4313 - tinysofa/releases/1.1/squid Message-ID: <20040904131619.48B714E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:16:19 +1000 (Sat, 04 Sep 2004) New Revision: 4313 Added: tinysofa/releases/1.1/squid/pristine/ Log: squid: * retarget pristine (2.5.STABLE5-7ts) to releases/2.5.STABLE5/8ts Copied: tinysofa/releases/1.1/squid/pristine (from rev 4311, tinysofa/releases/1.1/squid/releases/2.5.STABLE5/8ts) From svn at tinysofa.org Sat Sep 4 13:16:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:16:27 +1000 (EST) Subject: [tinysofa-svn] r4314 - in tinysofa/releases/1.1/strace: current/specs releases releases/4.5.6 releases/4.5.6/1ts/specs Message-ID: <20040904131627.E10994E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:16:27 +1000 (Sat, 04 Sep 2004) New Revision: 4314 Added: tinysofa/releases/1.1/strace/releases/4.5.6/ tinysofa/releases/1.1/strace/releases/4.5.6/1ts/ Modified: tinysofa/releases/1.1/strace/current/specs/strace.spec tinysofa/releases/1.1/strace/releases/4.5.6/1ts/specs/strace.spec Log: strace: * integrate current (4.5.6-1jh) as releases/4.5.6/1ts Modified: tinysofa/releases/1.1/strace/current/specs/strace.spec =================================================================== --- tinysofa/releases/1.1/strace/current/specs/strace.spec 2004-09-04 13:16:19 UTC (rev 4313) +++ tinysofa/releases/1.1/strace/current/specs/strace.spec 2004-09-04 13:16:27 UTC (rev 4314) @@ -1,7 +1,7 @@ Summary: Tracks and displays system calls associated with a running process. Name: strace Version: 4.5.6 -Release: 1jh +Release: 1ts License: BSD Group: development URL: http://sourceforge.net/projects/strace/ @@ -79,6 +79,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 4.5.6-1ts +- current (4.5.6-1jh) integrated as 4.5.6-1ts for release 1.1-U1 + * Mon Jul 12 2004 Roland McGrath 4.5.6-1 - new upstream version, updates ioctl lists (#127398), fixes quotactl (#127393), more ioctl decoding (#126917) Copied: tinysofa/releases/1.1/strace/releases/4.5.6/1ts (from rev 4235, tinysofa/releases/1.1/strace/current) Modified: tinysofa/releases/1.1/strace/releases/4.5.6/1ts/specs/strace.spec =================================================================== --- tinysofa/releases/1.1/strace/current/specs/strace.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/strace/releases/4.5.6/1ts/specs/strace.spec 2004-09-04 13:16:27 UTC (rev 4314) @@ -1,7 +1,7 @@ Summary: Tracks and displays system calls associated with a running process. Name: strace Version: 4.5.6 -Release: 1jh +Release: 1ts License: BSD Group: development URL: http://sourceforge.net/projects/strace/ @@ -79,6 +79,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 4.5.6-1ts +- current (4.5.6-1jh) integrated as 4.5.6-1ts for release 1.1-U1 + * Mon Jul 12 2004 Roland McGrath 4.5.6-1 - new upstream version, updates ioctl lists (#127398), fixes quotactl (#127393), more ioctl decoding (#126917) From svn at tinysofa.org Sat Sep 4 13:16:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:16:32 +1000 (EST) Subject: [tinysofa-svn] r4315 - tinysofa/releases/1.1/strace Message-ID: <20040904131632.A55FC4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:16:32 +1000 (Sat, 04 Sep 2004) New Revision: 4315 Removed: tinysofa/releases/1.1/strace/pristine/ Log: strace: * removing pristine (4.5.2-3ts) From svn at tinysofa.org Sat Sep 4 13:16:37 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:16:37 +1000 (EST) Subject: [tinysofa-svn] r4316 - tinysofa/releases/1.1/strace Message-ID: <20040904131637.2A0FF4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:16:36 +1000 (Sat, 04 Sep 2004) New Revision: 4316 Added: tinysofa/releases/1.1/strace/pristine/ Log: strace: * retarget pristine (4.5.2-3ts) to releases/4.5.6/1ts Copied: tinysofa/releases/1.1/strace/pristine (from rev 4314, tinysofa/releases/1.1/strace/releases/4.5.6/1ts) From svn at tinysofa.org Sat Sep 4 13:16:48 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:16:48 +1000 (EST) Subject: [tinysofa-svn] r4317 - in tinysofa/releases/1.1/wget: current/specs releases/1.9.1 releases/1.9.1/8ts/specs Message-ID: <20040904131648.83E7B4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:16:48 +1000 (Sat, 04 Sep 2004) New Revision: 4317 Added: tinysofa/releases/1.1/wget/releases/1.9.1/8ts/ Modified: tinysofa/releases/1.1/wget/current/specs/wget.spec tinysofa/releases/1.1/wget/releases/1.9.1/8ts/specs/wget.spec Log: wget: * integrate current (1.9.1-8jh) as releases/1.9.1/8ts Modified: tinysofa/releases/1.1/wget/current/specs/wget.spec =================================================================== --- tinysofa/releases/1.1/wget/current/specs/wget.spec 2004-09-04 13:16:36 UTC (rev 4316) +++ tinysofa/releases/1.1/wget/current/specs/wget.spec 2004-09-04 13:16:48 UTC (rev 4317) @@ -1,7 +1,7 @@ Summary: A utility for retrieving files using the HTTP or FTP protocols. Name: wget Version: 1.9.1 -Release: 8jh +Release: 8ts License: GPL Group: extra URL: http://wget.sunsite.dk/ @@ -77,6 +77,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 1.9.1-8ts +- current (1.9.1-8jh) integrated as 1.9.1-8ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 1.9.1-7ts - current (1.9.1-7jh) integrated as 1.9.1-7ts for release 1.1 Copied: tinysofa/releases/1.1/wget/releases/1.9.1/8ts (from rev 4235, tinysofa/releases/1.1/wget/current) Modified: tinysofa/releases/1.1/wget/releases/1.9.1/8ts/specs/wget.spec =================================================================== --- tinysofa/releases/1.1/wget/current/specs/wget.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/wget/releases/1.9.1/8ts/specs/wget.spec 2004-09-04 13:16:48 UTC (rev 4317) @@ -1,7 +1,7 @@ Summary: A utility for retrieving files using the HTTP or FTP protocols. Name: wget Version: 1.9.1 -Release: 8jh +Release: 8ts License: GPL Group: extra URL: http://wget.sunsite.dk/ @@ -77,6 +77,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 1.9.1-8ts +- current (1.9.1-8jh) integrated as 1.9.1-8ts for release 1.1-U1 + * Thu Aug 05 2004 tsintegrate 1.9.1-7ts - current (1.9.1-7jh) integrated as 1.9.1-7ts for release 1.1 From svn at tinysofa.org Sat Sep 4 13:16:52 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:16:52 +1000 (EST) Subject: [tinysofa-svn] r4318 - tinysofa/releases/1.1/wget Message-ID: <20040904131652.B6CAF4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:16:52 +1000 (Sat, 04 Sep 2004) New Revision: 4318 Removed: tinysofa/releases/1.1/wget/pristine/ Log: wget: * removing pristine (1.9.1-7ts) From svn at tinysofa.org Sat Sep 4 13:16:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:16:57 +1000 (EST) Subject: [tinysofa-svn] r4319 - tinysofa/releases/1.1/wget Message-ID: <20040904131657.4AEEB4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:16:57 +1000 (Sat, 04 Sep 2004) New Revision: 4319 Added: tinysofa/releases/1.1/wget/pristine/ Log: wget: * retarget pristine (1.9.1-7ts) to releases/1.9.1/8ts Copied: tinysofa/releases/1.1/wget/pristine (from rev 4317, tinysofa/releases/1.1/wget/releases/1.9.1/8ts) From svn at tinysofa.org Sat Sep 4 13:17:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:17:12 +1000 (EST) Subject: [tinysofa-svn] r4320 - in tinysofa/releases/1.1/courier-imap: current/specs releases releases/3.0.7 releases/3.0.7/1ts/specs Message-ID: <20040904131712.564E64E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:17:12 +1000 (Sat, 04 Sep 2004) New Revision: 4320 Added: tinysofa/releases/1.1/courier-imap/releases/3.0.7/ tinysofa/releases/1.1/courier-imap/releases/3.0.7/1ts/ Modified: tinysofa/releases/1.1/courier-imap/current/specs/courier-imap.spec tinysofa/releases/1.1/courier-imap/releases/3.0.7/1ts/specs/courier-imap.spec Log: courier-imap: * integrate current (3.0.7-1gd) as releases/3.0.7/1ts Modified: tinysofa/releases/1.1/courier-imap/current/specs/courier-imap.spec =================================================================== --- tinysofa/releases/1.1/courier-imap/current/specs/courier-imap.spec 2004-09-04 13:16:57 UTC (rev 4319) +++ tinysofa/releases/1.1/courier-imap/current/specs/courier-imap.spec 2004-09-04 13:17:12 UTC (rev 4320) @@ -1,7 +1,7 @@ Summary: Courier-IMAP server Name: courier-imap Version: 3.0.7 -Release: 1gd +Release: 1ts License: GPL Group: extra Source: http://unc.dl.sourceforge.net/sourceforge/courier/courier-imap-%{version}.tar.bz2 @@ -237,6 +237,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 3.0.7-1ts +- current (3.0.7-1gd) integrated as 3.0.7-1ts for release 1.1-U1 + * Fri Aug 20 2004 Gerald Dachs 3.0.7-1gd - New upstream version Copied: tinysofa/releases/1.1/courier-imap/releases/3.0.7/1ts (from rev 4235, tinysofa/releases/1.1/courier-imap/current) Modified: tinysofa/releases/1.1/courier-imap/releases/3.0.7/1ts/specs/courier-imap.spec =================================================================== --- tinysofa/releases/1.1/courier-imap/current/specs/courier-imap.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/courier-imap/releases/3.0.7/1ts/specs/courier-imap.spec 2004-09-04 13:17:12 UTC (rev 4320) @@ -1,7 +1,7 @@ Summary: Courier-IMAP server Name: courier-imap Version: 3.0.7 -Release: 1gd +Release: 1ts License: GPL Group: extra Source: http://unc.dl.sourceforge.net/sourceforge/courier/courier-imap-%{version}.tar.bz2 @@ -237,6 +237,9 @@ %changelog +* Sat Sep 04 2004 tsintegrate 3.0.7-1ts +- current (3.0.7-1gd) integrated as 3.0.7-1ts for release 1.1-U1 + * Fri Aug 20 2004 Gerald Dachs 3.0.7-1gd - New upstream version From svn at tinysofa.org Sat Sep 4 13:17:16 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:17:16 +1000 (EST) Subject: [tinysofa-svn] r4321 - tinysofa/releases/1.1/courier-imap Message-ID: <20040904131716.B17804E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:17:16 +1000 (Sat, 04 Sep 2004) New Revision: 4321 Removed: tinysofa/releases/1.1/courier-imap/pristine/ Log: courier-imap: * removing pristine (3.0.6-1ts) From svn at tinysofa.org Sat Sep 4 13:17:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:17:21 +1000 (EST) Subject: [tinysofa-svn] r4322 - tinysofa/releases/1.1/courier-imap Message-ID: <20040904131721.44D294E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:17:21 +1000 (Sat, 04 Sep 2004) New Revision: 4322 Added: tinysofa/releases/1.1/courier-imap/pristine/ Log: courier-imap: * retarget pristine (3.0.6-1ts) to releases/3.0.7/1ts Copied: tinysofa/releases/1.1/courier-imap/pristine (from rev 4320, tinysofa/releases/1.1/courier-imap/releases/3.0.7/1ts) From svn at tinysofa.org Sat Sep 4 13:17:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:17:32 +1000 (EST) Subject: [tinysofa-svn] r4323 - in tinysofa/releases/1.1/filesystem: current/specs releases/1.0 releases/1.0/5ts/specs Message-ID: <20040904131732.CBD5D4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:17:32 +1000 (Sat, 04 Sep 2004) New Revision: 4323 Added: tinysofa/releases/1.1/filesystem/releases/1.0/5ts/ Modified: tinysofa/releases/1.1/filesystem/current/specs/filesystem.spec tinysofa/releases/1.1/filesystem/releases/1.0/5ts/specs/filesystem.spec Log: filesystem: * integrate current (1.0-5gd) as releases/1.0/5ts Modified: tinysofa/releases/1.1/filesystem/current/specs/filesystem.spec =================================================================== --- tinysofa/releases/1.1/filesystem/current/specs/filesystem.spec 2004-09-04 13:17:21 UTC (rev 4322) +++ tinysofa/releases/1.1/filesystem/current/specs/filesystem.spec 2004-09-04 13:17:32 UTC (rev 4323) @@ -1,7 +1,7 @@ Summary: The basic directory layout for a Linux system. Name: filesystem Version: 1.0 -Release: 5gd +Release: 5ts License: Public Domain Group: main BuildRoot: %{_tmppath}/%{name}-%{version}-root @@ -194,6 +194,9 @@ %dir %attr(1777,root,root) /var/tmp %changelog +* Sat Sep 04 2004 tsintegrate 1.0-5ts +- current (1.0-5gd) integrated as 1.0-5ts for release 1.1-U1 + * Thu Aug 19 2004 Gerald Dachs 1.0-5gd - added /sys for kernel 2.6 Copied: tinysofa/releases/1.1/filesystem/releases/1.0/5ts (from rev 4235, tinysofa/releases/1.1/filesystem/current) Modified: tinysofa/releases/1.1/filesystem/releases/1.0/5ts/specs/filesystem.spec =================================================================== --- tinysofa/releases/1.1/filesystem/current/specs/filesystem.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/filesystem/releases/1.0/5ts/specs/filesystem.spec 2004-09-04 13:17:32 UTC (rev 4323) @@ -1,7 +1,7 @@ Summary: The basic directory layout for a Linux system. Name: filesystem Version: 1.0 -Release: 5gd +Release: 5ts License: Public Domain Group: main BuildRoot: %{_tmppath}/%{name}-%{version}-root @@ -194,6 +194,9 @@ %dir %attr(1777,root,root) /var/tmp %changelog +* Sat Sep 04 2004 tsintegrate 1.0-5ts +- current (1.0-5gd) integrated as 1.0-5ts for release 1.1-U1 + * Thu Aug 19 2004 Gerald Dachs 1.0-5gd - added /sys for kernel 2.6 From svn at tinysofa.org Sat Sep 4 13:17:36 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:17:36 +1000 (EST) Subject: [tinysofa-svn] r4324 - tinysofa/releases/1.1/filesystem Message-ID: <20040904131736.8EEAF4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:17:36 +1000 (Sat, 04 Sep 2004) New Revision: 4324 Removed: tinysofa/releases/1.1/filesystem/pristine/ Log: filesystem: * removing pristine (1.0-4ts) From svn at tinysofa.org Sat Sep 4 13:17:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:17:41 +1000 (EST) Subject: [tinysofa-svn] r4325 - tinysofa/releases/1.1/filesystem Message-ID: <20040904131741.229804E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:17:40 +1000 (Sat, 04 Sep 2004) New Revision: 4325 Added: tinysofa/releases/1.1/filesystem/pristine/ Log: filesystem: * retarget pristine (1.0-4ts) to releases/1.0/5ts Copied: tinysofa/releases/1.1/filesystem/pristine (from rev 4323, tinysofa/releases/1.1/filesystem/releases/1.0/5ts) From svn at tinysofa.org Sat Sep 4 13:17:53 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:17:53 +1000 (EST) Subject: [tinysofa-svn] r4326 - in tinysofa/releases/1.1/freetype: current/specs releases/2.1.7 releases/2.1.7/2ts/specs Message-ID: <20040904131753.E63854E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:17:53 +1000 (Sat, 04 Sep 2004) New Revision: 4326 Added: tinysofa/releases/1.1/freetype/releases/2.1.7/2ts/ Modified: tinysofa/releases/1.1/freetype/current/specs/freetype.spec tinysofa/releases/1.1/freetype/releases/2.1.7/2ts/specs/freetype.spec Log: freetype: * integrate current (2.1.7-2gd) as releases/2.1.7/2ts Modified: tinysofa/releases/1.1/freetype/current/specs/freetype.spec =================================================================== --- tinysofa/releases/1.1/freetype/current/specs/freetype.spec 2004-09-04 13:17:40 UTC (rev 4325) +++ tinysofa/releases/1.1/freetype/current/specs/freetype.spec 2004-09-04 13:17:53 UTC (rev 4326) @@ -12,7 +12,7 @@ Summary: A free and portable TrueType font rendering engine. Name: freetype Version: 2.1.7 -Release: 2gd +Release: 2ts License: BSD/GPL dual license Group: extra URL: http://www.freetype.org @@ -264,6 +264,9 @@ %{_libdir}/pkgconfig/ %changelog +* Sat Sep 04 2004 tsintegrate 2.1.7-2ts +- current (2.1.7-2gd) integrated as 2.1.7-2ts for release 1.1-U1 + * Sat Aug 21 2004 Gerald Dachs 2.1.7-2gd - fixed build requirements Copied: tinysofa/releases/1.1/freetype/releases/2.1.7/2ts (from rev 4235, tinysofa/releases/1.1/freetype/current) Modified: tinysofa/releases/1.1/freetype/releases/2.1.7/2ts/specs/freetype.spec =================================================================== --- tinysofa/releases/1.1/freetype/current/specs/freetype.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/freetype/releases/2.1.7/2ts/specs/freetype.spec 2004-09-04 13:17:53 UTC (rev 4326) @@ -12,7 +12,7 @@ Summary: A free and portable TrueType font rendering engine. Name: freetype Version: 2.1.7 -Release: 2gd +Release: 2ts License: BSD/GPL dual license Group: extra URL: http://www.freetype.org @@ -264,6 +264,9 @@ %{_libdir}/pkgconfig/ %changelog +* Sat Sep 04 2004 tsintegrate 2.1.7-2ts +- current (2.1.7-2gd) integrated as 2.1.7-2ts for release 1.1-U1 + * Sat Aug 21 2004 Gerald Dachs 2.1.7-2gd - fixed build requirements From svn at tinysofa.org Sat Sep 4 13:17:58 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:17:58 +1000 (EST) Subject: [tinysofa-svn] r4327 - tinysofa/releases/1.1/freetype Message-ID: <20040904131758.C71644E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:17:58 +1000 (Sat, 04 Sep 2004) New Revision: 4327 Removed: tinysofa/releases/1.1/freetype/pristine/ Log: freetype: * removing pristine (2.1.7-1ok) From svn at tinysofa.org Sat Sep 4 13:18:04 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:18:04 +1000 (EST) Subject: [tinysofa-svn] r4328 - tinysofa/releases/1.1/freetype Message-ID: <20040904131804.4B8D54E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:18:04 +1000 (Sat, 04 Sep 2004) New Revision: 4328 Added: tinysofa/releases/1.1/freetype/pristine/ Log: freetype: * retarget pristine (2.1.7-1ok) to releases/2.1.7/2ts Copied: tinysofa/releases/1.1/freetype/pristine (from rev 4326, tinysofa/releases/1.1/freetype/releases/2.1.7/2ts) From svn at tinysofa.org Sat Sep 4 13:18:15 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:18:15 +1000 (EST) Subject: [tinysofa-svn] r4329 - in tinysofa/releases/1.1/mkinitrd: current/specs releases/3.5.24 releases/3.5.24/2ts/specs Message-ID: <20040904131815.B1CC14E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:18:15 +1000 (Sat, 04 Sep 2004) New Revision: 4329 Added: tinysofa/releases/1.1/mkinitrd/releases/3.5.24/2ts/ Modified: tinysofa/releases/1.1/mkinitrd/current/specs/mkinitrd.spec tinysofa/releases/1.1/mkinitrd/releases/3.5.24/2ts/specs/mkinitrd.spec Log: mkinitrd: * integrate current (3.5.24-2gd) as releases/3.5.24/2ts Modified: tinysofa/releases/1.1/mkinitrd/current/specs/mkinitrd.spec =================================================================== --- tinysofa/releases/1.1/mkinitrd/current/specs/mkinitrd.spec 2004-09-04 13:18:04 UTC (rev 4328) +++ tinysofa/releases/1.1/mkinitrd/current/specs/mkinitrd.spec 2004-09-04 13:18:15 UTC (rev 4329) @@ -1,7 +1,7 @@ Summary: Creates an initial ramdisk image for preloading modules. Name: mkinitrd Version: 3.5.24 -Release: 2gd +Release: 2ts License: GPL Group: main Source: mkinitrd-%{version}.tar.bz2 @@ -59,6 +59,9 @@ %{_mandir}/man8/* %changelog +* Sat Sep 04 2004 tsintegrate 3.5.24-2ts +- current (3.5.24-2gd) integrated as 3.5.24-2ts for release 1.1-U1 + * Thu Aug 19 2004 Gerald Dachs 3.5.24-2gd - added kernel 2.6 support (Patch4) Copied: tinysofa/releases/1.1/mkinitrd/releases/3.5.24/2ts (from rev 4235, tinysofa/releases/1.1/mkinitrd/current) Modified: tinysofa/releases/1.1/mkinitrd/releases/3.5.24/2ts/specs/mkinitrd.spec =================================================================== --- tinysofa/releases/1.1/mkinitrd/current/specs/mkinitrd.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/mkinitrd/releases/3.5.24/2ts/specs/mkinitrd.spec 2004-09-04 13:18:15 UTC (rev 4329) @@ -1,7 +1,7 @@ Summary: Creates an initial ramdisk image for preloading modules. Name: mkinitrd Version: 3.5.24 -Release: 2gd +Release: 2ts License: GPL Group: main Source: mkinitrd-%{version}.tar.bz2 @@ -59,6 +59,9 @@ %{_mandir}/man8/* %changelog +* Sat Sep 04 2004 tsintegrate 3.5.24-2ts +- current (3.5.24-2gd) integrated as 3.5.24-2ts for release 1.1-U1 + * Thu Aug 19 2004 Gerald Dachs 3.5.24-2gd - added kernel 2.6 support (Patch4) From svn at tinysofa.org Sat Sep 4 13:18:19 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:18:19 +1000 (EST) Subject: [tinysofa-svn] r4330 - tinysofa/releases/1.1/mkinitrd Message-ID: <20040904131819.932C04E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:18:19 +1000 (Sat, 04 Sep 2004) New Revision: 4330 Removed: tinysofa/releases/1.1/mkinitrd/pristine/ Log: mkinitrd: * removing pristine (3.5.24-1ts) From svn at tinysofa.org Sat Sep 4 13:18:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:18:24 +1000 (EST) Subject: [tinysofa-svn] r4331 - tinysofa/releases/1.1/mkinitrd Message-ID: <20040904131824.3E7324E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:18:24 +1000 (Sat, 04 Sep 2004) New Revision: 4331 Added: tinysofa/releases/1.1/mkinitrd/pristine/ Log: mkinitrd: * retarget pristine (3.5.24-1ts) to releases/3.5.24/2ts Copied: tinysofa/releases/1.1/mkinitrd/pristine (from rev 4329, tinysofa/releases/1.1/mkinitrd/releases/3.5.24/2ts) From svn at tinysofa.org Sat Sep 4 13:18:36 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:18:36 +1000 (EST) Subject: [tinysofa-svn] r4332 - in tinysofa/releases/1.1/symlinks: current/specs releases/1.2 releases/1.2/1ts/specs Message-ID: <20040904131836.811EE4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:18:36 +1000 (Sat, 04 Sep 2004) New Revision: 4332 Added: tinysofa/releases/1.1/symlinks/releases/1.2/1ts/ Modified: tinysofa/releases/1.1/symlinks/current/specs/symlinks.spec tinysofa/releases/1.1/symlinks/releases/1.2/1ts/specs/symlinks.spec Log: symlinks: * integrate current (1.2-1ok) as releases/1.2/1ts Modified: tinysofa/releases/1.1/symlinks/current/specs/symlinks.spec =================================================================== --- tinysofa/releases/1.1/symlinks/current/specs/symlinks.spec 2004-09-04 13:18:24 UTC (rev 4331) +++ tinysofa/releases/1.1/symlinks/current/specs/symlinks.spec 2004-09-04 13:18:36 UTC (rev 4332) @@ -1,7 +1,7 @@ Summary: A utility which maintains a system's symbolic links. Name: symlinks Version: 1.2 -Release: 1ok +Release: 1ts Group: extra Copyright: distributable Source: ftp://metalab.unc.edu/pub/Linux/utils/file/%{name}-%{version}.tar.gz @@ -43,6 +43,9 @@ %{_mandir}/man8/symlinks.8* %changelog +* Sat Sep 04 2004 tsintegrate 1.2-1ts +- current (1.2-1ok) integrated as 1.2-1ts for release 1.1-U1 + * Thu May 20 2004 Omar Kilani - tinysofa. Copied: tinysofa/releases/1.1/symlinks/releases/1.2/1ts (from rev 4235, tinysofa/releases/1.1/symlinks/current) Modified: tinysofa/releases/1.1/symlinks/releases/1.2/1ts/specs/symlinks.spec =================================================================== --- tinysofa/releases/1.1/symlinks/current/specs/symlinks.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/symlinks/releases/1.2/1ts/specs/symlinks.spec 2004-09-04 13:18:36 UTC (rev 4332) @@ -1,7 +1,7 @@ Summary: A utility which maintains a system's symbolic links. Name: symlinks Version: 1.2 -Release: 1ok +Release: 1ts Group: extra Copyright: distributable Source: ftp://metalab.unc.edu/pub/Linux/utils/file/%{name}-%{version}.tar.gz @@ -43,6 +43,9 @@ %{_mandir}/man8/symlinks.8* %changelog +* Sat Sep 04 2004 tsintegrate 1.2-1ts +- current (1.2-1ok) integrated as 1.2-1ts for release 1.1-U1 + * Thu May 20 2004 Omar Kilani - tinysofa. From svn at tinysofa.org Sat Sep 4 13:18:40 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:18:40 +1000 (EST) Subject: [tinysofa-svn] r4333 - tinysofa/releases/1.1/symlinks Message-ID: <20040904131840.B4F994E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:18:40 +1000 (Sat, 04 Sep 2004) New Revision: 4333 Removed: tinysofa/releases/1.1/symlinks/pristine/ Log: symlinks: * removing pristine (1.2-1ok) From svn at tinysofa.org Sat Sep 4 13:18:46 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:18:46 +1000 (EST) Subject: [tinysofa-svn] r4334 - tinysofa/releases/1.1/symlinks Message-ID: <20040904131846.298084E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:18:45 +1000 (Sat, 04 Sep 2004) New Revision: 4334 Added: tinysofa/releases/1.1/symlinks/pristine/ Log: symlinks: * retarget pristine (1.2-1ok) to releases/1.2/1ts Copied: tinysofa/releases/1.1/symlinks/pristine (from rev 4332, tinysofa/releases/1.1/symlinks/releases/1.2/1ts) From svn at tinysofa.org Sat Sep 4 13:25:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:25:28 +1000 (EST) Subject: [tinysofa-svn] r4335 - in tinysofa/releases/1.1/swup: . current/specs releases releases/2.5.2 releases/2.5.2/1ts/specs Message-ID: <20040904132528.A9A224E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:25:28 +1000 (Sat, 04 Sep 2004) New Revision: 4335 Added: tinysofa/releases/1.1/swup/pristine/ tinysofa/releases/1.1/swup/releases/ tinysofa/releases/1.1/swup/releases/2.5.2/ tinysofa/releases/1.1/swup/releases/2.5.2/1ts/ Modified: tinysofa/releases/1.1/swup/current/specs/swup.spec tinysofa/releases/1.1/swup/releases/2.5.2/1ts/specs/swup.spec Log: swup: * integrate current (2.5.2-1th) as releases/2.5.2/1ts Modified: tinysofa/releases/1.1/swup/current/specs/swup.spec =================================================================== --- tinysofa/releases/1.1/swup/current/specs/swup.spec 2004-09-04 13:18:45 UTC (rev 4334) +++ tinysofa/releases/1.1/swup/current/specs/swup.spec 2004-09-04 13:25:28 UTC (rev 4335) @@ -1,7 +1,7 @@ Summary: The secure software updater Name: swup Version: 2.5.2 -Release: 1th +Release: 1ts License: GPL Group: extra Source0: %{name}-%{version}.tar.bz2 @@ -143,6 +143,9 @@ %ghost /etc/cron.weekly/swup.cron %changelog +* Sat Sep 04 2004 tsintegrate 2.5.2-1ts +- current (2.5.2-1th) integrated as 2.5.2-1ts for release 1.1-U1 + * Fri Jul 16 2004 Tor Hveem 2.5.2-1th - New upstream Copied: tinysofa/releases/1.1/swup/pristine (from rev 4235, tinysofa/releases/1.1/swup/current) Copied: tinysofa/releases/1.1/swup/releases/2.5.2/1ts (from rev 4235, tinysofa/releases/1.1/swup/current) Modified: tinysofa/releases/1.1/swup/releases/2.5.2/1ts/specs/swup.spec =================================================================== --- tinysofa/releases/1.1/swup/current/specs/swup.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/swup/releases/2.5.2/1ts/specs/swup.spec 2004-09-04 13:25:28 UTC (rev 4335) @@ -1,7 +1,7 @@ Summary: The secure software updater Name: swup Version: 2.5.2 -Release: 1th +Release: 1ts License: GPL Group: extra Source0: %{name}-%{version}.tar.bz2 @@ -143,6 +143,9 @@ %ghost /etc/cron.weekly/swup.cron %changelog +* Sat Sep 04 2004 tsintegrate 2.5.2-1ts +- current (2.5.2-1th) integrated as 2.5.2-1ts for release 1.1-U1 + * Fri Jul 16 2004 Tor Hveem 2.5.2-1th - New upstream From svn at tinysofa.org Sat Sep 4 13:25:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:25:32 +1000 (EST) Subject: [tinysofa-svn] r4336 - tinysofa/releases/1.1/swup Message-ID: <20040904132532.84AD94E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:25:32 +1000 (Sat, 04 Sep 2004) New Revision: 4336 Removed: tinysofa/releases/1.1/swup/pristine/ Log: swup: * removing pristine (2.5.2-1th) From svn at tinysofa.org Sat Sep 4 13:25:37 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:25:37 +1000 (EST) Subject: [tinysofa-svn] r4337 - tinysofa/releases/1.1/swup Message-ID: <20040904132537.24D484E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:25:36 +1000 (Sat, 04 Sep 2004) New Revision: 4337 Added: tinysofa/releases/1.1/swup/pristine/ Log: swup: * retarget pristine (2.5.2-1th) to releases/2.5.2/1ts Copied: tinysofa/releases/1.1/swup/pristine (from rev 4335, tinysofa/releases/1.1/swup/releases/2.5.2/1ts) From svn at tinysofa.org Sat Sep 4 13:26:01 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:26:01 +1000 (EST) Subject: [tinysofa-svn] r4338 - in tinysofa/releases/1.1/rp-pppoe: . current/specs releases/3.5 releases/3.5/15ts/specs Message-ID: <20040904132601.26BDA4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:26:00 +1000 (Sat, 04 Sep 2004) New Revision: 4338 Added: tinysofa/releases/1.1/rp-pppoe/pristine/ tinysofa/releases/1.1/rp-pppoe/releases/3.5/15ts/ Modified: tinysofa/releases/1.1/rp-pppoe/current/specs/rp-pppoe.spec tinysofa/releases/1.1/rp-pppoe/releases/3.5/15ts/specs/rp-pppoe.spec Log: rp-pppoe: * integrate current (3.5-15gd) as releases/3.5/15ts Modified: tinysofa/releases/1.1/rp-pppoe/current/specs/rp-pppoe.spec =================================================================== --- tinysofa/releases/1.1/rp-pppoe/current/specs/rp-pppoe.spec 2004-09-04 13:25:36 UTC (rev 4337) +++ tinysofa/releases/1.1/rp-pppoe/current/specs/rp-pppoe.spec 2004-09-04 13:26:00 UTC (rev 4338) @@ -1,7 +1,7 @@ Summary: PPP Over Ethernet (xDSL support) Name: rp-pppoe Version: 3.5 -Release: 15gd +Release: 15ts License: GPL Group: extra Source: http://www.roaringpenguin.com/pppoe/%{name}-%{version}.tar.gz @@ -86,6 +86,9 @@ %{_initrddir}/adsl %changelog +* Sat Sep 04 2004 tsintegrate 3.5-15ts +- current (3.5-15gd) integrated as 3.5-15ts for release 1.1-U1 + * Sat Jun 26 2004 Gerald Dachs 3.5-15gd - if ppp is not installed during build time, then the adsl scripts gets broken. Fixed build requirements accordingly. Copied: tinysofa/releases/1.1/rp-pppoe/pristine (from rev 4235, tinysofa/releases/1.1/rp-pppoe/current) Copied: tinysofa/releases/1.1/rp-pppoe/releases/3.5/15ts (from rev 4235, tinysofa/releases/1.1/rp-pppoe/current) Modified: tinysofa/releases/1.1/rp-pppoe/releases/3.5/15ts/specs/rp-pppoe.spec =================================================================== --- tinysofa/releases/1.1/rp-pppoe/current/specs/rp-pppoe.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/rp-pppoe/releases/3.5/15ts/specs/rp-pppoe.spec 2004-09-04 13:26:00 UTC (rev 4338) @@ -1,7 +1,7 @@ Summary: PPP Over Ethernet (xDSL support) Name: rp-pppoe Version: 3.5 -Release: 15gd +Release: 15ts License: GPL Group: extra Source: http://www.roaringpenguin.com/pppoe/%{name}-%{version}.tar.gz @@ -86,6 +86,9 @@ %{_initrddir}/adsl %changelog +* Sat Sep 04 2004 tsintegrate 3.5-15ts +- current (3.5-15gd) integrated as 3.5-15ts for release 1.1-U1 + * Sat Jun 26 2004 Gerald Dachs 3.5-15gd - if ppp is not installed during build time, then the adsl scripts gets broken. Fixed build requirements accordingly. From svn at tinysofa.org Sat Sep 4 13:26:05 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:26:05 +1000 (EST) Subject: [tinysofa-svn] r4339 - tinysofa/releases/1.1/rp-pppoe Message-ID: <20040904132605.80B1D4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:26:05 +1000 (Sat, 04 Sep 2004) New Revision: 4339 Removed: tinysofa/releases/1.1/rp-pppoe/pristine/ Log: rp-pppoe: * removing pristine (3.5-15gd) From svn at tinysofa.org Sat Sep 4 13:26:10 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 4 Sep 2004 23:26:10 +1000 (EST) Subject: [tinysofa-svn] r4340 - tinysofa/releases/1.1/rp-pppoe Message-ID: <20040904132610.265EF4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-04 23:26:09 +1000 (Sat, 04 Sep 2004) New Revision: 4340 Added: tinysofa/releases/1.1/rp-pppoe/pristine/ Log: rp-pppoe: * retarget pristine (3.5-15gd) to releases/3.5/15ts Copied: tinysofa/releases/1.1/rp-pppoe/pristine (from rev 4338, tinysofa/releases/1.1/rp-pppoe/releases/3.5/15ts) From svn at tinysofa.org Mon Sep 6 12:37:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 6 Sep 2004 22:37:13 +1000 (EST) Subject: [tinysofa-svn] r4342 - in tinysofa/releases/1.1/openssl/current: sources specs Message-ID: <20040906123713.DBD344E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-06 22:37:12 +1000 (Mon, 06 Sep 2004) New Revision: 4342 Added: tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7d.tar.gz Removed: tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7-fix-non-root.patch tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7c-CAN-2004-0112.patch tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7c.tar.gz Modified: tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7c-Configure.patch tinysofa/releases/1.1/openssl/current/specs/openssl.spec Log: - major spec cleanup - new upstream Deleted: tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7-fix-non-root.patch =================================================================== --- tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7-fix-non-root.patch 2004-09-04 13:53:34 UTC (rev 4341) +++ tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7-fix-non-root.patch 2004-09-06 12:37:12 UTC (rev 4342) @@ -1,12 +0,0 @@ -diff -urN openssl-0.9.7c/Makefile.org openssl-0.9.7c.fix-build/Makefile.org ---- openssl-0.9.7c/Makefile.org 2004-05-17 12:18:01.000000000 +0000 -+++ openssl-0.9.7c.fix-build/Makefile.org 2004-05-17 12:17:49.000000000 +0000 -@@ -834,7 +834,7 @@ - fi; \ - fi - cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig -- chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig -+ chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig - - install_docs: - @$(PERL) $(TOP)/util/mkdir-p.pl \ Deleted: tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7c-CAN-2004-0112.patch =================================================================== --- tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7c-CAN-2004-0112.patch 2004-09-04 13:53:34 UTC (rev 4341) +++ tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7c-CAN-2004-0112.patch 2004-09-06 12:37:12 UTC (rev 4342) @@ -1,32 +0,0 @@ -diff -ur -x CVS openssl7/ssl/s3_srvr.c ossl7/ssl/s3_srvr.c ---- openssl7/ssl/s3_srvr.c 2004-01-14 23:02:49.000000000 +0000 -+++ ossl7/ssl/s3_srvr.c 2004-02-19 13:22:16.000000000 +0000 -@@ -1588,11 +1591,27 @@ - - n2s(p,i); - enc_ticket.length = i; -+ -+ if (n < enc_ticket.length + 6) -+ { -+ SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, -+ SSL_R_DATA_LENGTH_TOO_LONG); -+ goto err; -+ } -+ - enc_ticket.data = (char *)p; - p+=enc_ticket.length; - - n2s(p,i); - authenticator.length = i; -+ -+ if (n < enc_ticket.length + authenticator.length + 6) -+ { -+ SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, -+ SSL_R_DATA_LENGTH_TOO_LONG); -+ goto err; -+ } -+ - authenticator.data = (char *)p; - p+=authenticator.length; - - Modified: tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7c-Configure.patch =================================================================== --- tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7c-Configure.patch 2004-09-04 13:53:34 UTC (rev 4341) +++ tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7c-Configure.patch 2004-09-06 12:37:12 UTC (rev 4342) @@ -1,22 +1,14 @@ ---- openssl-0.9.7c/Configure~ 2004-07-05 13:39:53.000000000 +0300 -+++ openssl-0.9.7c/Configure 2004-07-05 13:46:42.000000000 +0300 -@@ -144,11 +144,11 @@ - "debug-bodo", "gcc:-DL_ENDIAN -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DBIO_PAIR_DEBUG -DPEDANTIC -g -march=i586 -pedantic -Wshadow -Wall::-D_REENTRANT:::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}", - "debug-ulf", "gcc:-DL_ENDIAN -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG_ALL -g -O2 -march=i586 -Wall -Werror -Wshadow -pipe::-D_REENTRANT:::${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}", - "debug-steve", "gcc:-DL_ENDIAN -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG_ALL -DPEDANTIC -g -mcpu=i486 -pedantic -Wall -Werror -Wshadow -pipe::-D_REENTRANT::-rdynamic -ldl:${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", --"debug-steve-linux-pseudo64", "gcc:-DL_ENDIAN -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG_ALL -DOPENSSL_NO_ASM -g -mcpu=i486 -Wall -Werror -Wshadow -pipe::-D_REENTRANT::-rdynamic -ldl:SIXTY_FOUR_BIT::dlfcn", --"debug-levitte-linux-elf","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -D_POSIX_SOURCE -DPEDANTIC -ggdb -g3 -mcpu=i486 -pedantic -ansi -Wall -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -pipe::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", --"debug-levitte-linux-noasm","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -DTERMIO -D_POSIX_SOURCE -DPEDANTIC -ggdb -g3 -mcpu=i486 -pedantic -ansi -Wall -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -pipe::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", --"debug-levitte-linux-elf-extreme","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -D_POSIX_SOURCE -DPEDANTIC -ggdb -g3 -mcpu=i486 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wconversion -Wno-long-long -pipe::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", --"debug-levitte-linux-noasm-extreme","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -DTERMIO -D_POSIX_SOURCE -DPEDANTIC -ggdb -g3 -mcpu=i486 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wconversion -Wno-long-long -pipe::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -+"debug-steve-linux-pseudo64", "gcc:-DL_ENDIAN -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG_ALL -DOPENSSL_NO_ASM -g -Wall -Werror -Wshadow -pipe \$(RPM_OPT_FLAGS)::-D_REENTRANT::-rdynamic -ldl:SIXTY_FOUR_BIT::dlfcn", -+"debug-levitte-linux-elf","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -D_POSIX_SOURCE -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -pipe \$(RPM_OPT_FLAGS)::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -+"debug-levitte-linux-noasm","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -DTERMIO -D_POSIX_SOURCE -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -pipe \$(RPM_OPT_FLAGS)::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -+"debug-levitte-linux-elf-extreme","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -D_POSIX_SOURCE -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wconversion -Wno-long-long -pipe \$(RPM_OPT_FLAGS)::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -+"debug-levitte-linux-noasm-extreme","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -DTERMIO -D_POSIX_SOURCE -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wconversion -Wno-long-long -pipe \$(RPM_OPT_FLAGS)::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", - "dist", "cc:-O::(unknown)::::::", +--- openssl-0.9.7c/Configure.orig 2004-09-06 11:48:28.000000000 +0300 ++++ openssl-0.9.7c/Configure 2004-09-06 11:50:01.000000000 +0300 +@@ -161,7 +161,7 @@ + # surrounds it with #APP #NO_APP comment pair which (at least Solaris + # 7_x86) /usr/ccs/bin/as fails to assemble with "Illegal mnemonic" + # error message. +-"solaris-x86-gcc","gcc:-O3 -fomit-frame-pointer -m486 -Wall -DL_ENDIAN -DOPENSSL_NO_INLINE_ASM::-D_REENTRANT::-lsocket -lnsl -ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:solaris-shared:-fPIC:-shared:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", ++"solaris-x86-gcc","gcc:-O3 -fomit-frame-pointer -march=i586 -Wall -DL_ENDIAN -DOPENSSL_NO_INLINE_ASM::-D_REENTRANT::-lsocket -lnsl -ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:solaris-shared:-fPIC:-shared:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", - # Basic configs that should work on any (32 and less bit) box + #### Solaris x86 with Sun C setups + "solaris-x86-cc","cc:-fast -O -Xa::-D_REENTRANT::-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_PTR DES_UNROLL BF_PTR::::::::::dlfcn:solaris-shared:-KPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", @@ -196,15 +196,15 @@ "debug-solaris-sparcv9-cc","cc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG_ALL -xtarget=ultra -xarch=v8plus -g -O -xstrconst -Xa -DB_ENDIAN -DBN_DIV2W::-D_REENTRANT:ULTRASPARC:-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK_LL DES_PTR DES_RISC1 DES_UNROLL BF_PTR:asm/sparcv8plus.o:::asm/md5-sparcv8plus.o::::::dlfcn:solaris-shared:-KPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", @@ -57,18 +49,19 @@ "linux-alpha-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${alpha_asm}", "linux-alpha+bwx-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${alpha_asm}", -@@ -374,14 +374,14 @@ +@@ -374,15 +374,15 @@ # The intel boxes :-), It would be worth seeing if bsdi-gcc can use the # bn86-elf.o file file since it is hand tweaked assembler. --"linux-elf", "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -march=i586 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +-"linux-elf", "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"linux-pentium", "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -mcpu=pentium -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"linux-ppro", "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -mcpu=pentiumpro -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"linux-k6", "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -mcpu=k6 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"debug-linux-pentium","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -mcpu=pentium -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", -"debug-linux-ppro","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -mcpu=pentiumpro -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", --"debug-linux-elf","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -march=i586 -Wall::-D_REENTRANT::-lefence -ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", --"debug-linux-elf-noefence","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -march=i586 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", +-"debug-linux-elf","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -m486 -Wall::-D_REENTRANT::-lefence -ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +-"debug-linux-elf-noefence","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -m486 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", +-"linux-aout", "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall::(unknown):::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_out_asm}", +"linux-elf", "gcc:-DL_ENDIAN -DTERMIO -Wall \$(RPM_OPT_FLAGS)::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-pentium", "gcc:-DL_ENDIAN -DTERMIO -Wall \$(RPM_OPT_FLAGS)::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-ppro", "gcc:-DL_ENDIAN -DTERMIO -Wall \$(RPM_OPT_FLAGS)::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", @@ -77,10 +70,11 @@ +"debug-linux-ppro","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -Wall \$(RPM_OPT_FLAGS)::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", +"debug-linux-elf","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -Wall \$(RPM_OPT_FLAGS)::-D_REENTRANT::-lefence -ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"debug-linux-elf-noefence","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -Wall \$(RPM_OPT_FLAGS)::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", - "linux-aout", "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -march=i586 -Wall::(unknown):::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_out_asm}", ++"linux-aout", "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -march=i586 -Wall::(unknown):::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_out_asm}", "linux-mipsel", "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG RC2_CHAR RC4_INDEX DES_INT DES_UNROLL DES_RISC2::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", "linux-mips", "gcc:-DB_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG RC2_CHAR RC4_INDEX DES_INT DES_UNROLL DES_RISC2::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -@@ -391,7 +391,7 @@ + "linux-ppc", "gcc:-DB_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_RISC1 DES_UNROLL::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +@@ -391,16 +391,16 @@ "linux-s390x", "gcc:-DB_ENDIAN -DTERMIO -DNO_ASM -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", "linux-ia64", "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK RC4_CHAR:asm/ia64.o:::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", "linux-ia64-ecc", "ecc:-DL_ENDIAN -DTERMIO -O2 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK RC4_CHAR:asm/ia64.o:::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", @@ -88,7 +82,21 @@ +"linux-x86_64", "gcc:-m64 -DL_ENDIAN -DTERMIO -Wall \$(RPM_OPT_FLAGS) -DMD32_REG_T=int::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK RC4_CHAR BF_PTR2 DES_INT DES_UNROLL:asm/x86_64-gcc.o:::::::::dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", "NetBSD-sparc", "gcc:-DTERMIOS -O3 -fomit-frame-pointer -mv8 -Wall -DB_ENDIAN::(unknown):::BN_LLONG MD2_CHAR RC4_INDEX DES_UNROLL::::::::::dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", "NetBSD-m68", "gcc:-DTERMIOS -O3 -fomit-frame-pointer -Wall -DB_ENDIAN::(unknown):::BN_LLONG MD2_CHAR RC4_INDEX DES_UNROLL::::::::::dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", - "NetBSD-x86", "gcc:-DTERMIOS -O3 -fomit-frame-pointer -march=i586 -Wall::(unknown):::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +-"NetBSD-x86", "gcc:-DTERMIOS -O3 -fomit-frame-pointer -m486 -Wall::(unknown):::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +-"FreeBSD-elf", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall::-pthread -D_REENTRANT -D_THREAD_SAFE -D_THREADSAFE:::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", ++"NetBSD-x86", "gcc:-DTERMIOS -O3 -fomit-frame-pointer -march=i586 -Wall::(unknown):::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", ++"FreeBSD-elf", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -march=i586 -Wall::-pthread -D_REENTRANT -D_THREAD_SAFE -D_THREADSAFE:::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", + "FreeBSD-sparc64","gcc:-DB_ENDIAN -DTERMIOS -O3 -fomit-frame-pointer::-pthread -D_REENTRANT -D_THREAD_SAFE -D_THREADSAFE:::SIXTY_FOUR_BIT_LONG DES_INT DES_PTR DES_RISC2 BF_PTR::::::::::dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", + "FreeBSD-ia64","gcc:-DL_ENDIAN -DTERMIOS -O -fomit-frame-pointer::(unknown):::SIXTY_FOUR_BIT_LONG RC4_CHUNK RC4_CHAR:asm/ia64-cpp.o:::::::::dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +-"FreeBSD", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall::(unknown):::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_out_asm}", +-"bsdi-gcc", "gcc:-O3 -ffast-math -DL_ENDIAN -DPERL5 -m486::(unknown):::RSA_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_bsdi_asm}", +-"bsdi-elf-gcc", "gcc:-DPERL5 -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall::(unknown)::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", ++"FreeBSD", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -march=i586 -Wall::(unknown):::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_out_asm}", ++"bsdi-gcc", "gcc:-O3 -ffast-math -DL_ENDIAN -DPERL5 -march=i586::(unknown):::RSA_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_bsdi_asm}", ++"bsdi-elf-gcc", "gcc:-DPERL5 -DL_ENDIAN -fomit-frame-pointer -O3 -march=i586 -Wall::(unknown)::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", + "nextstep", "cc:-O -Wall::(unknown):::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:::", + "nextstep3.3", "cc:-O3 -Wall::(unknown):::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:::", + @@ -414,7 +414,7 @@ "qnx6", "cc:-DL_ENDIAN -DTERMIOS::(unknown)::-lsocket:${x86_gcc_des} ${x86_gcc_opts}:", @@ -98,3 +106,30 @@ # SCO/Caldera targets. # +@@ -431,7 +431,7 @@ + "unixware-2.0","cc:-DFILIO_H -DNO_STRINGS_H::-Kthread::-lsocket -lnsl -lresolv -lx:${x86_gcc_des} ${x86_gcc_opts}:::", + "unixware-2.1","cc:-O -DFILIO_H::-Kthread::-lsocket -lnsl -lresolv -lx:${x86_gcc_des} ${x86_gcc_opts}:::", + "unixware-7","cc:-O -DFILIO_H -Kalloca::-Kthread::-lsocket -lnsl:BN_LLONG MD2_CHAR RC4_INDEX ${x86_gcc_des}:${x86_elf_asm}:dlfcn:svr5-shared:-Kpic::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +-"unixware-7-gcc","gcc:-DL_ENDIAN -DFILIO_H -O3 -fomit-frame-pointer -m486 -Wall::-D_REENTRANT::-lsocket -lnsl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:gnu-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", ++"unixware-7-gcc","gcc:-DL_ENDIAN -DFILIO_H -O3 -fomit-frame-pointer -march=i586 -Wall::-D_REENTRANT::-lsocket -lnsl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:gnu-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", + "OpenUNIX-8","cc:-O -DFILIO_H -Kalloca::-Kthread::-lsocket -lnsl:BN_LLONG MD2_CHAR RC4_INDEX ${x86_gcc_des}:${x86_elf_asm}:dlfcn:svr5-shared:-Kpic::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", + "OpenUNIX-8-gcc","gcc:-O -DFILIO_H -fomit-frame-pointer::-pthread::-lsocket -lnsl:BN_LLONG MD2_CHAR RC4_INDEX ${x86_gcc_des}:${x86_elf_asm}:dlfcn:svr5-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", + "sco3-gcc", "gcc:-O3 -fomit-frame-pointer -Dssize_t=int -DNO_SYS_UN_H::(unknown)::-lsocket:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:::", # the SCO assembler doesn't seem to like our assembler files ... +@@ -514,7 +514,7 @@ + "UWIN", "cc:-DTERMIOS -DL_ENDIAN -O -Wall:::UWIN::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32", + + # Cygwin +-"Cygwin-pre1.3", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall::(unknown):CYGWIN32::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32", ++"Cygwin-pre1.3", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -march=i586 -Wall::(unknown):CYGWIN32::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32", + "Cygwin", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -march=i486 -Wall:::CYGWIN32::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_out_asm}:win32:cygwin-shared:::.dll", + + # DJGPP +@@ -551,7 +551,7 @@ + "newsos4-gcc","gcc:-O -DB_ENDIAN::(unknown):NEWS4:-lmld -liberty:BN_LLONG RC4_CHAR RC4_CHUNK DES_PTR DES_RISC1 DES_UNROLL BF_PTR::::", + + ##### GNU Hurd +-"hurd-x86", "gcc:-DL_ENDIAN -DTERMIOS -O3 -fomit-frame-pointer -m486 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC", ++"hurd-x86", "gcc:-DL_ENDIAN -DTERMIOS -O3 -fomit-frame-pointer -march=i586 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC", + + ##### OS/2 EMX + "OS2-EMX", "gcc::::::::", Deleted: tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7c.tar.gz =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7d.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/openssl/current/sources/openssl-0.9.7d.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/openssl/current/specs/openssl.spec =================================================================== --- tinysofa/releases/1.1/openssl/current/specs/openssl.spec 2004-09-04 13:53:34 UTC (rev 4341) +++ tinysofa/releases/1.1/openssl/current/specs/openssl.spec 2004-09-06 12:37:12 UTC (rev 4342) @@ -1,8 +1,8 @@ Summary: Secure Sockets Layer communications libs & utils Name: openssl %define majorver 0.9.7 -Version: %{majorver}c -Release: 12ts +Version: %{majorver}d +Release: 1jh License: BSD-like Group: main %define m2crypto_version 0.13.1 @@ -15,15 +15,11 @@ Patch3: openssl-0.9.7-man.patch Patch4: openssl-0.9.7-include.patch Patch5: openssl-0.9.7c-CAN-2004-0079.patch -Patch6: openssl-0.9.7c-CAN-2004-0112.patch -Patch7: openssl-0.9.7-fix-non-root.patch -Patch8: openssl-0.9.7c-Configure.patch +Patch6: openssl-0.9.7c-Configure.patch Provides: SSL libssl.so libssl.so.0 libcrypto.so.0 URL: http://www.openssl.org BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: python, python-devel, perl, zlib-devel, autoconf -%define python_version $(python -V 2>&1| cut -c8-10) -%define sitepackagedir usr/%{_lib}/python%{python_version}/site-packages %description A C library that provides various crytographic algorithms and protocols, @@ -40,7 +36,7 @@ %package devel Summary: Secure Sockets Layer communications static libs & headers. Group: development -Requires: openssl = %{version} +Requires: openssl = %{version}-%{release} %description devel A C library that provides various crytographic algorithms and protocols, including DES, RC4, RSA, and SSL. Includes static libraries and headers. @@ -53,17 +49,10 @@ %description python This package allows you to call OpenSSL functions from python scripts. + %prep -%setup -q -%setup -q -T -D -n openssl-%{version} +%setup -q -a 1 -a 2 -perl util/perlpath.pl /usr/bin -# argh, this is br0ken -perl -p -i -e "s/-m486/-march=i586/" Configure - -# Extract what we need for building extensions. -gzip -dc %{SOURCE1} | tar xf - -bzip2 -dc %{SOURCE2} | tar xf - pushd m2crypto-%{m2crypto_version} for file in demo/evp_ciph_test.py demo/bio_ciph_test.py SWIG/_evp.i ; do grep -v idea_ ${file} > ${file}.tmp @@ -77,15 +66,14 @@ %patch4 -p1 %patch5 -p1 %patch6 -p1 -%patch7 -p1 -%patch8 -p1 +perl util/perlpath.pl %{_bindir} %build PATH=${PATH}:${PWD}/bin TOPDIR=${PWD} -export LD_LIBRARY_PATH=`pwd` +export LD_LIBRARY_PATH=${PWD} # Figure out which flags we want to use. Set the number of threads to use to # the maximum we've managed to run without running afoul of the OOM killer. @@ -104,15 +92,15 @@ # Add -Wa,--noexecstack here so that libcrypto's assembler modules will be # marked as not requiring an executable stack. ./Configure \ - --prefix=/usr \ - --openssldir=/etc/ssl \ + --prefix=%{_prefix} \ + --openssldir=%{_sysconfdir}/ssl \ ${sslflags} \ shared threads zlib zlib-dynamic \ ${sslarch} RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wa,--noexecstack" -make -make do_linux-shared +%make +%make do_linux-shared make rehash make test @@ -134,7 +122,7 @@ CCFLAGS="%{optflags}" \ FFLAGS="%{optflags}" \ ./configure --prefix=${TOPDIR} -make +%make make install popd @@ -144,52 +132,50 @@ make -f Makefile.py22\ INCLUDE="-I. -I../../include -I../.." \ LIBS="-L${TOPDIR} -lssl -lcrypto -lc" \ - PYINCLUDE="-DHAVE_CONFIG_H -I/usr/include/python%{python_version} -I/usr/lib/python%{python_version}/config" \ - PYLIB="/usr/lib/python%{python_version}/config" + PYINCLUDE="-DHAVE_CONFIG_H -I%{py_incdir} -I%{py_incdir}/config" \ + PYLIB="%{py_libdir}/config" popd %install -mkdir -p $RPM_BUILD_ROOT/usr/share/man -mkdir -p $RPM_BUILD_ROOT/etc/ssl -mkdir -p $RPM_BUILD_ROOT/usr/bin -mkdir -p $RPM_BUILD_ROOT/usr/include/openssl -mkdir -p $RPM_BUILD_ROOT/usr/lib -mkdir -p $RPM_BUILD_ROOT/usr/lib/pkgconfig +%{__mkdir_p} \ + $RPM_BUILD_ROOT/%{_mandir} \ + $RPM_BUILD_ROOT/%{_sysconfdir}/ssl \ + $RPM_BUILD_ROOT/%{_bindir} \ + $RPM_BUILD_ROOT/%{_includedir}/openssl \ + $RPM_BUILD_ROOT/%{_libdir} \ + $RPM_BUILD_ROOT/%{_libdir}/pkgconfig + make INSTALL_PREFIX=$RPM_BUILD_ROOT install -mv $RPM_BUILD_ROOT/etc/ssl/misc/* $RPM_BUILD_ROOT/usr/bin -rm -rf $RPM_BUILD_ROOT/etc/ssl/misc -rm -rf $RPM_BUILD_ROOT/etc/ssl/lib +mv $RPM_BUILD_ROOT/%{_sysconfdir}/ssl/misc/* $RPM_BUILD_ROOT/%{_bindir} +rm -rf $RPM_BUILD_ROOT/%{_sysconfdir}/ssl/{misc,lib} -install -m644 libcrypto.a $RPM_BUILD_ROOT/usr/lib -install -m644 libssl.a $RPM_BUILD_ROOT/usr/lib +install -m 644 libcrypto.a $RPM_BUILD_ROOT/%{_libdir} +install -m 644 libssl.a $RPM_BUILD_ROOT/%{_libdir} -strip $RPM_BUILD_ROOT/usr/bin/openssl - if [ "/usr/lib" != "%{_libdir}" ]; then - %{__mv} %{buildroot}/usr/lib %{buildroot}/usr/%{_lib} + %{__mv} %{buildroot}/usr/lib/* %{buildroot}/usr/%{_lib} + rmdir %{buildroot}/usr/lib/ fi chmod 755 %{buildroot}/usr/%{_lib}/*.so* # Install the python extensions. pushd m2crypto-%{m2crypto_version}/M2Crypto -mkdir -p $RPM_BUILD_ROOT/%{sitepackagedir}/M2Crypto/{PGP,SSL} -install -m644 *.py $RPM_BUILD_ROOT/%{sitepackagedir}/M2Crypto/ -install -m755 *.so $RPM_BUILD_ROOT/%{sitepackagedir}/M2Crypto/ -install -m644 PGP/*.py $RPM_BUILD_ROOT/%{sitepackagedir}/M2Crypto/PGP/ -install -m644 SSL/*.py $RPM_BUILD_ROOT/%{sitepackagedir}/M2Crypto/SSL/ -python -c "import compileall; compileall.compile_dir('"$RPM_BUILD_ROOT/%{sitepackagedir}/M2Crypto"', 3, '/%{sitepackagedir}/M2Crypto')" +mkdir -p $RPM_BUILD_ROOT/%{py_sitedir}/M2Crypto/{PGP,SSL} +install -m644 *.py $RPM_BUILD_ROOT/%{py_sitedir}/M2Crypto/ +install -m755 *.so $RPM_BUILD_ROOT/%{py_sitedir}/M2Crypto/ +install -m644 PGP/*.py $RPM_BUILD_ROOT/%{py_sitedir}/M2Crypto/PGP/ +install -m644 SSL/*.py $RPM_BUILD_ROOT/%{py_sitedir}/M2Crypto/SSL/ +%py_compile $RPM_BUILD_ROOT/%{py_sitedir}/M2Crypto popd -mv $RPM_BUILD_ROOT/etc/ssl/man/* $RPM_BUILD_ROOT/usr/share/man/ +rm -f %{buildroot}%{_sysconfdir}/ssl/man/man7/"Modes of DES.7" +mv $RPM_BUILD_ROOT/%{_sysconfdir}/ssl/man/* $RPM_BUILD_ROOT/%{_mandir} mv $RPM_BUILD_ROOT/usr/share/man/man1/passwd.1 \ - $RPM_BUILD_ROOT/usr/share/man/man1/passwd_openssl.1 -rm $RPM_BUILD_ROOT/usr/share/man/man3/MD5.3 + $RPM_BUILD_ROOT/%{_mandir}/man1/passwd_openssl.1 +rm $RPM_BUILD_ROOT/%{_mandir}/man3/MD5.3 -# this needs a real fix -find %{buildroot}%{_mandir} -type f|xargs rename ' ' _ - # Fix libdir. sed 's,^libdir=${exec_prefix}/lib,libdir=${exec_prefix}/%{_lib},g' \ $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/openssl.pc > \ @@ -201,16 +187,17 @@ # # Generate site package filelist # -pushd $RPM_BUILD_ROOT -echo %dir /%{sitepackagedir}/M2Crypto >> ${RPM_BUILD_DIR}/%{name}-%{version}/sitefiles.txt -echo %dir /%{sitepackagedir}/M2Crypto/PGP >> ${RPM_BUILD_DIR}/%{name}-%{version}/sitefiles.txt -echo %dir /%{sitepackagedir}/M2Crypto/SSL >> ${RPM_BUILD_DIR}/%{name}-%{version}/sitefiles.txt -for file in `find %{sitepackagedir} -name \*.py`; do - echo /${file} - echo %ghost /${file}c +pushd $RPM_BUILD_ROOT/%{py_sitedir} +echo %dir %{py_sitedir}/M2Crypto >> ${RPM_BUILD_DIR}/%{name}-%{version}/sitefiles.txt +echo %dir %{py_sitedir}/M2Crypto/PGP >> ${RPM_BUILD_DIR}/%{name}-%{version}/sitefiles.txt +echo %dir %{py_sitedir}/M2Crypto/SSL >> ${RPM_BUILD_DIR}/%{name}-%{version}/sitefiles.txt +for file in `find . -name \*.py`; do + echo %{py_sitedir}/${file} + echo %ghost %{py_sitedir}/${file}c done >> ${RPM_BUILD_DIR}/%{name}-%{version}/sitefiles.txt -for file in `find %{sitepackagedir} -name \*.so`; do - echo "%attr(755,root,root) /${file}" + +for file in `find . -name \*.so`; do + echo "%attr(755,root,root) %{py_sitedir}/${file}" done >> ${RPM_BUILD_DIR}/%{name}-%{version}/sitefiles.txt popd @@ -228,27 +215,27 @@ %defattr(-,root,root) %doc CHANGES CHANGES.SSLeay INSTALL LICENSE README NEWS #%doc doc/* -/usr/bin/openssl +%{_bindir}/openssl %{_libdir}/libcrypto.so.0 %attr(755,root,root) %{_libdir}/libcrypto.so.%{majorver} %{_libdir}/libssl.so.0 %attr(755,root,root) %{_libdir}/libssl.so.%{majorver} -%config(noreplace) %verify(not md5 size mtime) /etc/ssl/openssl.cnf -%dir /etc/ssl -%dir /etc/ssl/private -%dir /etc/ssl/certs -/usr/share/man/man1/* +%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/ssl/openssl.cnf +%dir %{_sysconfdir}/ssl +%dir %{_sysconfdir}/ssl/private +%dir %{_sysconfdir}/ssl/certs +%{_mandir}/man1/* %files support %defattr(-,root,root) -/usr/bin/CA.pl -/usr/bin/CA.sh -/usr/bin/c_hash -/usr/bin/c_info -/usr/bin/c_issuer -/usr/bin/c_name -/usr/bin/der_chop -/usr/bin/c_rehash +%{_bindir}/CA.pl +%{_bindir}/CA.sh +%{_bindir}/c_hash +%{_bindir}/c_info +%{_bindir}/c_issuer +%{_bindir}/c_name +%{_bindir}/der_chop +%{_bindir}/c_rehash %files devel %defattr(-,root,root) @@ -256,17 +243,22 @@ %{_libdir}/libssl.a %{_libdir}/libcrypto.so %{_libdir}/libssl.so -/usr/include/openssl -/usr/share/man/man3/* -/usr/share/man/man5/* -/usr/share/man/man7/* +%{_includedir}/openssl +%{_mandir}/man3/* +%{_mandir}/man5/* +%{_mandir}/man7/* %{_libdir}/pkgconfig/openssl.pc %files python -f sitefiles.txt %defattr(-,root,root) %doc m2crypto-%{m2crypto_version}/{BUGS,CHANGES,LIC*,README} + %changelog +* Mon Sep 6 2004 Jaakko Heinonen 0.9.7d-1jh +- major spec cleanup +- new upstream + * Sat Sep 04 2004 tsintegrate 0.9.7c-12ts - current (0.9.7c-12jh) integrated as 0.9.7c-12ts for release 1.1-U1 From svn at tinysofa.org Mon Sep 6 17:09:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 7 Sep 2004 03:09:24 +1000 (EST) Subject: [tinysofa-svn] r4343 - tinysofa/releases/1.1/openssl/current/specs Message-ID: <20040906170924.BE6434E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-07 03:09:24 +1000 (Tue, 07 Sep 2004) New Revision: 4343 Modified: tinysofa/releases/1.1/openssl/current/specs/openssl.spec Log: - minor cleanups Modified: tinysofa/releases/1.1/openssl/current/specs/openssl.spec =================================================================== --- tinysofa/releases/1.1/openssl/current/specs/openssl.spec 2004-09-06 12:37:12 UTC (rev 4342) +++ tinysofa/releases/1.1/openssl/current/specs/openssl.spec 2004-09-06 17:09:24 UTC (rev 4343) @@ -17,9 +17,9 @@ Patch5: openssl-0.9.7c-CAN-2004-0079.patch Patch6: openssl-0.9.7c-Configure.patch Provides: SSL libssl.so libssl.so.0 libcrypto.so.0 -URL: http://www.openssl.org +URL: http://www.openssl.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-root -BuildRequires: python, python-devel, perl, zlib-devel, autoconf +BuildRequires: python, python-devel, perl, zlib-devel, autoconf, grep %description A C library that provides various crytographic algorithms and protocols, @@ -44,7 +44,7 @@ %package python Summary: Support for using OpenSSL in python scripts. Group: extra -Requires: python, openssl = %{version}, libstdc++ +Requires: python, openssl = %{version}-%{release}, libstdc++ BuildRequires: libstdc++-devel gcc-c++ %description python This package allows you to call OpenSSL functions from python scripts. @@ -75,8 +75,6 @@ TOPDIR=${PWD} export LD_LIBRARY_PATH=${PWD} -# Figure out which flags we want to use. Set the number of threads to use to -# the maximum we've managed to run without running afoul of the OOM killer. sslarch=%{_os}-%{_arch} %ifarch %ix86 sslarch=linux-elf @@ -136,7 +134,7 @@ PYLIB="%{py_libdir}/config" popd - + %install %{__mkdir_p} \ $RPM_BUILD_ROOT/%{_mandir} \ From svn at tinysofa.org Wed Sep 8 18:17:45 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 9 Sep 2004 04:17:45 +1000 (EST) Subject: [tinysofa-svn] r4344 - in contrib/1.1: . maildrop maildrop/current maildrop/current/sources maildrop/current/specs Message-ID: <20040908181745.DAAD04E802F@minbar.tinysofa.org> Author: gda Date: 2004-09-09 04:17:45 +1000 (Thu, 09 Sep 2004) New Revision: 4344 Added: contrib/1.1/maildrop/ contrib/1.1/maildrop/current/ contrib/1.1/maildrop/current/sources/ contrib/1.1/maildrop/current/sources/maildrop-1.7.0.tar.bz2 contrib/1.1/maildrop/current/specs/ contrib/1.1/maildrop/current/specs/maildrop.spec Log: new in contrib Added: contrib/1.1/maildrop/current/sources/maildrop-1.7.0.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/maildrop/current/sources/maildrop-1.7.0.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/maildrop/current/specs/maildrop.spec =================================================================== --- contrib/1.1/maildrop/current/specs/maildrop.spec 2004-09-06 17:09:24 UTC (rev 4343) +++ contrib/1.1/maildrop/current/specs/maildrop.spec 2004-09-08 18:17:45 UTC (rev 4344) @@ -0,0 +1,103 @@ +Summary: maildrop mail filter/mail delivery agent +Name: maildrop +Version: 1.7.0 +Release: 1gd +Copyright: GPL +Group: contrib +Source: http://www.flounder.net/~mrsam/maildrop/maildrop-1.7.0.tar.bz2 +Url: http://www.flounder.net/~mrsam/maildrop/ +BuildRoot: /var/tmp/%{name}-%{version}-root +Requires: gdbm +BuildRequires: gdbm-devel gcc-c++ + +%package devel +Summary: development tools for handling E-mail messages +Group: contrib + +%description + +Maildrop is a combination mail filter/mail delivery agent. +Maildrop reads the message to be delivered to your mailbox, +optionally reads instructions from a file how filter incoming +mail, then based on these instructions may deliver mail to an +alternate mailbox, or forward it, instead of dropping the +message into your mailbox. + +Maildrop uses a structured, real, meta-programming language in +order to define filtering instructions. Its basic features are +fast and efficient. At sites which carry a light load, the +more advanced, CPU-demanding, features can be used to build +very sophisticated mail filters. Maildrop deployments have +been reported at sites that support as many as 30,000 +mailboxes. + +Maildrop mailing list -- http://maildropl.listbot.com + +This version is compiled with support for GDBM database files, +maildir enhancements (folders+quotas), and userdb. + +%description devel +The maildrop-devel package contains the libraries and header files +that can be useful in developing software that works with or processes +E-mail messages. + +Install the maildrop-devel package if you want to develop applications +which use or process E-mail messages. + +%prep +%setup -q +# ugly trick to let maildrop believe we have courier, +# without this it will break in mach +mkdir courier + +%configure --with-devel --enable-userdb --enable-maildirquota --enable-syslog=1 --enable-trusted-users='root mail daemon postmaster mmdf' --enable-restrict-trusted=0 --enable-sendmail=/usr/sbin/sendmail --with-default-maildrop=./Maildir + +%build +%make + +%install +make install-strip DESTDIR=$RPM_BUILD_ROOT MAILDROPUID='' MAILDROPGID='' + +mkdir html +cp $RPM_BUILD_ROOT%{_datadir}/maildrop/html/* html +rm -rf $RPM_BUILD_ROOT%{_datadir}/maildrop/html + +%clean +%clean_buildroot + +%files +%defattr(-, root, root) +%{_datadir}/maildrop + +%doc html/* + +%attr(555, root, mail) %{_bindir}/maildrop +%attr(555, root, mail) %{_bindir}/lockmail +%{_bindir}/mailbot +%{_bindir}/maildirmake +%{_bindir}/deliverquota +%{_bindir}/makedat +%{_bindir}/makedatprog +%{_bindir}/makeuserdb +%{_bindir}/pw2userdb +%{_bindir}/userdb +%{_bindir}/userdbpw +%{_bindir}/reformail +%{_bindir}/makemime +%{_bindir}/reformime +%{_bindir}/vchkpw2userdb + +%doc maildir/README.maildirquota.html maildir/README.maildirquota.txt +%doc COPYING README README.postfix INSTALL NEWS UPGRADE ChangeLog maildroptips.txt +%{_mandir}/man*/* + +%files devel +%defattr(-, root, root) +%{_mandir}/man3/* +%{_includedir}/* +%{_libdir}/* + +%changelog +* Tue Sep 7 2004 Gerald Dachs 1.7.0-1gd +- New in tinysofa contrib + From svn at tinysofa.org Wed Sep 8 18:19:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 9 Sep 2004 04:19:13 +1000 (EST) Subject: [tinysofa-svn] r4345 - in contrib/1.1: . masqmail masqmail/current masqmail/current/sources masqmail/current/specs Message-ID: <20040908181913.E72E84E802F@minbar.tinysofa.org> Author: gda Date: 2004-09-09 04:19:13 +1000 (Thu, 09 Sep 2004) New Revision: 4345 Added: contrib/1.1/masqmail/ contrib/1.1/masqmail/current/ contrib/1.1/masqmail/current/sources/ contrib/1.1/masqmail/current/sources/masqmail-0.2.20.tar.gz contrib/1.1/masqmail/current/specs/ contrib/1.1/masqmail/current/specs/masqmail.spec Log: new in contrib Added: contrib/1.1/masqmail/current/sources/masqmail-0.2.20.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/masqmail/current/sources/masqmail-0.2.20.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/masqmail/current/specs/masqmail.spec =================================================================== --- contrib/1.1/masqmail/current/specs/masqmail.spec 2004-09-08 18:17:45 UTC (rev 4344) +++ contrib/1.1/masqmail/current/specs/masqmail.spec 2004-09-08 18:19:13 UTC (rev 4345) @@ -0,0 +1,114 @@ +Summary: An offline mail server with pop3 client support +Name: masqmail +Version: 0.2.20 +Release: 1gd +Copyright: GPL +Group: contrib +Source: %{name}-%{version}.tar.gz +Source1: %{name}.init +Source2: %{name}.sysconf +Url: http://www.innominate.org/~oku/masqmail/ +BuildRoot: /var/tmp/%{name}-%{version}-%{release} +Conflicts: sendmail postfix smail sendmail-tls postfix-tls exim +Provides: smtpdaemon +Requires: glib12 openssl +BuildRequires: glib12-devel openssl-devel + +%description +MasqMail is a mail server designed for hosts that do not have a +permanent internet connection eg. a home network or a single host at +home. It has special support for connections to different ISPs. It +replaces sendmail or other MTAs such as qmail or exim. + +%prep + +%setup +%build +%configure --enable-auth --enable-ident \ + --with-user=mail --with-group=mail \ + --with-logdir=/var/log/masqmail --disable-debug --with-libcrypto + +%make + +%install +# setup directory environment: +mkdir $RPM_BUILD_ROOT +mkdir -p $RPM_BUILD_ROOT/var/spool/masqmail +mkdir -p $RPM_BUILD_ROOT/var/spool/masqmail/input +mkdir -p $RPM_BUILD_ROOT/var/spool/masqmail/popuidl +mkdir -p $RPM_BUILD_ROOT/usr/sbin +mkdir -p $RPM_BUILD_ROOT/usr/bin +mkdir -p $RPM_BUILD_ROOT/usr/lib +mkdir -p $RPM_BUILD_ROOT/etc +mkdir -p $RPM_BUILD_ROOT/etc/masqmail +mkdir -p $RPM_BUILD_ROOT/etc/masqmail/tpl +mkdir -p $RPM_BUILD_ROOT/var/masqmail +mkdir -p $RPM_BUILD_ROOT/var/log/masqmail + +make DESTDIR=$RPM_BUILD_ROOT install + +# sendmail links +ln -fs './masqmail' $RPM_BUILD_ROOT/usr/sbin/sendmail +ln -fs '../sbin/masqmail' $RPM_BUILD_ROOT/usr/bin/mailq +ln -fs '../sbin/masqmail' $RPM_BUILD_ROOT/usr/lib/sendmail + +# configuration examples: +cp examples/masqmail.conf $RPM_BUILD_ROOT/etc/masqmail/ +cp examples/example.route $RPM_BUILD_ROOT/etc/masqmail/ +cp examples/example.get $RPM_BUILD_ROOT/etc/masqmail/ +cp tpl/failmsg.tpl $RPM_BUILD_ROOT/etc/masqmail/tpl/ + +mkdir -p $RPM_BUILD_ROOT%{_initrddir} +install -m 755 %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/masqmail + +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig +install -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/masqmail + +%post +%service_post masqmail + +%preun +%service_preun masqmail + +%postun +%service_postun masqmail + + +%clean +%clean_buildroot + +%files +%defattr(-,root,root) +%doc README INSTALL COPYING NEWS tpl +%config %{_sysconfdir}/masqmail/masqmail.conf +%config %{_sysconfdir}/masqmail/tpl/failmsg.tpl +%config %{_sysconfdir}/sysconfig/masqmail +%dir %{_sysconfdir}/masqmail/tpl +%dir %{_sysconfdir}/masqmail +%{_sysconfdir}/masqmail/example.get +%{_sysconfdir}/masqmail/example.route +%{_bindir}/mservdetect +%{_sbindir}/masqmail +%{_sbindir}/sendmail +%{_bindir}/mailq +%{_libdir}/sendmail +%{_mandir}/man8/masqmail.8.gz +%{_mandir}/man5/masqmail.conf.5.gz +%{_mandir}/man5/masqmail.route.5.gz +%{_mandir}/man5/masqmail.get.5.gz +%{_mandir}/man5/masqmail.aliases.5.gz +%{_mandir}/man8/mservdetect.8.gz +%{_datadir}/masqmail/tpl +%attr(744,root,root) %{_initrddir}/masqmail + +%defattr(-,mail,mail) +%dir /var/masqmail/ +%dir /var/spool/masqmail/ +%dir /var/spool/masqmail/popuidl/ +%dir /var/spool/masqmail/input/ +%dir /var/log/masqmail + +%changelog +* Sun Sep 5 2004 Gerald Dachs 0.2.20-1gd +- New in tinysofa contrib + From svn at tinysofa.org Wed Sep 8 18:19:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 9 Sep 2004 04:19:49 +1000 (EST) Subject: [tinysofa-svn] r4346 - in contrib/1.1: . getmail getmail/current getmail/current/sources getmail/current/specs Message-ID: <20040908181949.B74244E802F@minbar.tinysofa.org> Author: gda Date: 2004-09-09 04:19:49 +1000 (Thu, 09 Sep 2004) New Revision: 4346 Added: contrib/1.1/getmail/ contrib/1.1/getmail/current/ contrib/1.1/getmail/current/sources/ contrib/1.1/getmail/current/sources/getmail-4.1.4-received-for.patch contrib/1.1/getmail/current/sources/getmail-4.1.4.tar.gz contrib/1.1/getmail/current/specs/ contrib/1.1/getmail/current/specs/getmail.spec Log: new in contrib Added: contrib/1.1/getmail/current/sources/getmail-4.1.4-received-for.patch =================================================================== --- contrib/1.1/getmail/current/sources/getmail-4.1.4-received-for.patch 2004-09-08 18:19:13 UTC (rev 4345) +++ contrib/1.1/getmail/current/sources/getmail-4.1.4-received-for.patch 2004-09-08 18:19:49 UTC (rev 4346) @@ -0,0 +1,28 @@ +--- getmail-4.1.4/getmailcore/_retrieverbases.py.orig 2004-09-06 19:02:46.933853904 +0200 ++++ getmail-4.1.4/getmailcore/_retrieverbases.py 2004-09-06 19:05:30.083051456 +0200 +@@ -53,7 +53,6 @@ + 'to', + 'cc', + 'bcc', +- 'received', + 'resent-to', + 'resent-cc', + 'resent-bcc' +@@ -517,6 +516,8 @@ + + try: + line = data[self.envrecipname][self.envrecipnum] ++ if self.envrecipname == 'received': ++ line = line.split('for')[1].split(';')[0] + except (KeyError, IndexError), unused: + raise getmailConfigurationError('envelope_recipient specified' + ' header missing (%s)' % self.conf['envelope_recipient']) +@@ -774,6 +775,8 @@ + + try: + line = data[self.envrecipname][self.envrecipnum] ++ if self.envrecipname == 'received': ++ line = line.split('for')[1].split(';')[0] + except (KeyError, IndexError), unused: + raise getmailConfigurationError('envelope_recipient specified' + ' header missing (%s)' % self.conf['envelope_recipient']) Added: contrib/1.1/getmail/current/sources/getmail-4.1.4.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/getmail/current/sources/getmail-4.1.4.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/getmail/current/specs/getmail.spec =================================================================== --- contrib/1.1/getmail/current/specs/getmail.spec 2004-09-08 18:19:13 UTC (rev 4345) +++ contrib/1.1/getmail/current/specs/getmail.spec 2004-09-08 18:19:49 UTC (rev 4346) @@ -0,0 +1,47 @@ +Summary: A fetchmail replacement with qmail-like Maildir and external MDA delivery. +Name: getmail +Version: 4.1.4 +Release: 2gd +License: GPL +Group: contrib +Source: %{name}-%{version}.tar.gz +Patch: %{name}-%{version}-received-for.patch +URL: http://sourceforge.net/projects/pysqlite/ +BuildRoot: %{_tmppath}/%{name}-root +BuildArch: noarch +%py_requires -d + +%description +getmail is intended as a simple, secure, and reliable replacement for fetchmail. It retrieves email (either all messages, or only unread messages) from one or more POP3, SPDS, or IMAP4 servers (with or without SSL) for one or more email accounts, and reliably delivers into qmail-style Maildirs, mboxrd files, or through external MDAs (command deliveries) specified on a per-account basis. getmail also has excellent support for domain (multidrop) mailboxes, including delivering messages to different users or destinations based on the envelope recipient address. + +%prep +%setup -q +%patch -p1 + +%build +env CFLAGS="$RPM_OPT_FLAGS" %__python setup.py build + +%install +%__python setup.py install \ + --root=%buildroot \ + --optimize=2 + +%__chmod -x docs/* README + +%clean +%clean_buildroot + +%files +%defattr(-,root,root) +%{_bindir}/* +%{_libdir}/* +%{_mandir}/man1/* +%doc README docs/* + +%changelog +* Mon Sep 6 2004 Gerald Dachs 4.1.4-2gd +- allowed 'receive for' as envelope_recipient header (patch0) + +* Thu Sep 2 2004 Gerald Dachs 4.1.4-1gd +- initial build + From svn at tinysofa.org Wed Sep 8 18:21:31 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 9 Sep 2004 04:21:31 +1000 (EST) Subject: [tinysofa-svn] r4347 - contrib/1.1/masqmail/current/sources Message-ID: <20040908182131.07E4B4E802F@minbar.tinysofa.org> Author: gda Date: 2004-09-09 04:21:30 +1000 (Thu, 09 Sep 2004) New Revision: 4347 Added: contrib/1.1/masqmail/current/sources/masqmail.init contrib/1.1/masqmail/current/sources/masqmail.sysconf Log: new in contrib Added: contrib/1.1/masqmail/current/sources/masqmail.init =================================================================== --- contrib/1.1/masqmail/current/sources/masqmail.init 2004-09-08 18:19:49 UTC (rev 4346) +++ contrib/1.1/masqmail/current/sources/masqmail.init 2004-09-08 18:21:30 UTC (rev 4347) @@ -0,0 +1,67 @@ +#!/bin/sh +# +# masqmail: Starts the Masqmail Mail Transport Agent +# +# chkconfig: - 80 30 +# description: Masqmail is a MTA, as in the program that moves mail from \ +# one machine to another. +# processname: masqmail +# config: /etc/sysconfig/network +# config: /etc/sysconfig/masqmail +# pidfile: /var/run/masqmail.pid + +# Sanity checks. +[ -x /usr/sbin/masqmail ] || exit 0 + +# Source function library. +. /etc/init.d/functions + +# Get config. +test -f /etc/sysconfig/network && . /etc/sysconfig/network + +# More config + +test -f /etc/sysconfig/masqmail && . /etc/sysconfig/masqmail + +# Check that networking is up. +[ ${NETWORKING} = "yes" ] || exit 0 + +# See how we were called. +case "$1" in + start) + action "Starting Masqmail: " /usr/sbin/masqmail $MASQMAIL_ARGS + RETVAL=$? + if [ $RETVAL == 0 ]; then + touch /var/lock/subsys/masqmail + fi + ;; + stop) + echo -n $"Stopping Masqmail: " + killproc masqmail + RETVAL=$? + echo + if [ $RETVAL == 0 ]; then + rm -f /var/lock/subsys/masqmail + fi + ;; + status) + status masqmail + RETVAL=$? + ;; + restart|reload) + $0 stop + $0 start + RETVAL=$? + ;; + condrestart|try-restart) + if [ -f /var/lock/subsys/masqmail ]; then + $0 stop + $0 start + RETVAL=$? + fi + ;; + *) + echo "Usage: $0 {start|stop|status|restart|try-restart}" + ;; +esac +exit $RETVAL Added: contrib/1.1/masqmail/current/sources/masqmail.sysconf =================================================================== --- contrib/1.1/masqmail/current/sources/masqmail.sysconf 2004-09-08 18:19:49 UTC (rev 4346) +++ contrib/1.1/masqmail/current/sources/masqmail.sysconf 2004-09-08 18:21:30 UTC (rev 4347) @@ -0,0 +1,5 @@ +# +# masqmail arguments (default -bd -q30m) +# +MASQMAIL_ARGS="-bd -q30m" + From svn at tinysofa.org Thu Sep 9 08:12:56 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 9 Sep 2004 18:12:56 +1000 (EST) Subject: [tinysofa-svn] r4350 - in tinysofa/releases/1.1/kernel/current: sources specs Message-ID: <20040909081256.B9F8F4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-09 18:12:56 +1000 (Thu, 09 Sep 2004) New Revision: 4350 Removed: tinysofa/releases/1.1/kernel/current/sources/linux-2.4.21-exec-shield-ia32-enable.patch Modified: tinysofa/releases/1.1/kernel/current/specs/kernel.spec Log: - remove linux-2.4.21-exec-shield-ia32-enable.patch, not needed anymore Deleted: tinysofa/releases/1.1/kernel/current/sources/linux-2.4.21-exec-shield-ia32-enable.patch =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/linux-2.4.21-exec-shield-ia32-enable.patch 2004-09-09 07:14:31 UTC (rev 4349) +++ tinysofa/releases/1.1/kernel/current/sources/linux-2.4.21-exec-shield-ia32-enable.patch 2004-09-09 08:12:56 UTC (rev 4350) @@ -1,11 +0,0 @@ ---- linux-2.4.21/arch/i386/kernel/setup.c.orig 2004-07-04 22:30:14.000000000 +0300 -+++ linux-2.4.21/arch/i386/kernel/setup.c 2004-07-04 22:31:54.000000000 +0300 -@@ -1195,6 +1195,8 @@ - #endif - #endif - dmi_scan_machine(); -+ -+ exec_shield = 2; - } - - static int cachesize_override __initdata = -1; Modified: tinysofa/releases/1.1/kernel/current/specs/kernel.spec =================================================================== --- tinysofa/releases/1.1/kernel/current/specs/kernel.spec 2004-09-09 07:14:31 UTC (rev 4349) +++ tinysofa/releases/1.1/kernel/current/specs/kernel.spec 2004-09-09 08:12:56 UTC (rev 4350) @@ -329,7 +329,6 @@ Patch1080: linux-2.4.21-dma-isolation.patch Patch1090: linux-2.4.21-vma-merging.patch Patch1100: linux-2.4.21-exec-shield.patch -Patch1101: linux-2.4.21-exec-shield-ia32-enable.patch Patch1110: linux-2.4.21-pagecache-scale.patch Patch1120: linux-2.4.21-flexible-mmap.patch Patch1130: linux-2.4.21-remap_file_pages.patch @@ -1019,7 +1018,6 @@ # exec-shield %patch1100 -p1 -%patch1101 -p1 # pagecache scalability using brlocks %patch1110 -p1 From svn at tinysofa.org Thu Sep 9 08:36:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 9 Sep 2004 18:36:57 +1000 (EST) Subject: [tinysofa-svn] r4351 - tinysofa/releases/1.1/kernel/current/sources Message-ID: <20040909083657.174114E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-09 18:36:56 +1000 (Thu, 09 Sep 2004) New Revision: 4351 Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config Log: - compile zisofs as a module Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config 2004-09-09 08:12:56 UTC (rev 4350) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config 2004-09-09 08:36:56 UTC (rev 4351) @@ -797,7 +797,7 @@ # CONFIG_NCPFS_SMALLDOS is not set # CONFIG_NCPFS_NLS is not set # CONFIG_NCPFS_EXTRAS is not set -CONFIG_ZISOFS_FS=y +CONFIG_ZISOFS_FS=m CONFIG_FS_MBCACHE=y CONFIG_FS_POSIX_ACL=y From svn at tinysofa.org Thu Sep 9 13:33:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 9 Sep 2004 23:33:41 +1000 (EST) Subject: [tinysofa-svn] r4352 - contrib/1.1/xterm/current/specs Message-ID: <20040909133341.DABAB4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-09 23:33:41 +1000 (Thu, 09 Sep 2004) New Revision: 4352 Modified: contrib/1.1/xterm/current/specs/xterm.spec Log: - enable anti-aliasing Modified: contrib/1.1/xterm/current/specs/xterm.spec =================================================================== --- contrib/1.1/xterm/current/specs/xterm.spec 2004-09-09 08:36:56 UTC (rev 4351) +++ contrib/1.1/xterm/current/specs/xterm.spec 2004-09-09 13:33:41 UTC (rev 4352) @@ -4,17 +4,18 @@ Summary: xterm terminal emulator for the X Window System Name: xterm Version: 192 -Release: 1gd +Release: 2jh URL: http://dickey.his.com/xterm License: MIT Group: contrib -BuildRoot: %{_tmppath}/%{name}-root +BuildRoot: %{_tmppath}/%{name}-%{version}-root Source0: ftp://dickey.his.com/xterm/%{name}-%{version}.tgz Patch0: xterm-can-2003-0063.patch Patch1: xterm-resources-redhat.patch Patch2: xterm-179-ppc-fix-bug-101472.patch BuildRequires: xorg-x11-devel >= 4.3.0 libtermcap-devel +BuildRequires: freetype-devel %description The xterm program is a terminal emulator for the X Window System. It @@ -33,11 +34,12 @@ %endif %build +# ensure that X11 is in path (xft-config) +export PATH="$PATH:/usr/X11R6/bin" %configure --enable-luit --enable-warnings --enable-wide-chars --with-utempter %make %install -rm -rf $RPM_BUILD_ROOT %makeinstall #install-ti @@ -71,6 +73,9 @@ %{_x11bindir}/xterm %changelog +* Thu Sep 9 2004 Jaakko Heinonen 192-2jh +- enable anti-aliasing + * Wed Aug 25 2004 Gerald Dachs 192-1gd - New in tinysofa contrib From svn at tinysofa.org Thu Sep 9 17:54:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 10 Sep 2004 03:54:27 +1000 (EST) Subject: [tinysofa-svn] r4353 - contrib/1.1/gtk12+/current/specs Message-ID: <20040909175427.8C2FF4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-10 03:54:27 +1000 (Fri, 10 Sep 2004) New Revision: 4353 Modified: contrib/1.1/gtk12+/current/specs/gtk12+.spec Log: - make -devel require glib12-devel Modified: contrib/1.1/gtk12+/current/specs/gtk12+.spec =================================================================== --- contrib/1.1/gtk12+/current/specs/gtk12+.spec 2004-09-09 13:33:41 UTC (rev 4352) +++ contrib/1.1/gtk12+/current/specs/gtk12+.spec 2004-09-09 17:54:27 UTC (rev 4353) @@ -24,7 +24,7 @@ Summary: Development tools for GTK+ (GIMP ToolKit) applications. Group: contrib Provides: gtk+-devel = %{version} -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{version}-%{release} glib12-devel %description devel The libgtk+1.2-devel package contains the static libraries and header files From svn at tinysofa.org Thu Sep 9 18:43:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 10 Sep 2004 04:43:27 +1000 (EST) Subject: [tinysofa-svn] r4354 - contrib/1.1/xorg-x11/current/specs Message-ID: <20040909184327.A70404E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-10 04:43:27 +1000 (Fri, 10 Sep 2004) New Revision: 4354 Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec Log: - install xdm init script Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec =================================================================== --- contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-09 17:54:27 UTC (rev 4353) +++ contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-09 18:43:27 UTC (rev 4354) @@ -24,7 +24,7 @@ # Use very future proofed version number, until we know what upstream version # will really be. Version: 6.7.0 -Release: 7jh +Release: 8jh #.%{cvs_release} %define build_maintainer_mode %( hostname -f |grep -q capslock.lan && echo 1 || echo 0) @@ -1530,6 +1530,7 @@ install -c -m 644 %{SOURCE6} $RPM_BUILD_ROOT/etc/X11/fs/config install -c -m 755 %{SOURCE5} $RPM_BUILD_ROOT/etc/init.d/xfs +install -c -m 755 %{SOURCE7} $RPM_BUILD_ROOT/etc/init.d/xdm # FIXME: Can Imake do this? Fix up symlinks { ln -sf ../X11R6/include/X11 $RPM_BUILD_ROOT%{_includedir}/X11 @@ -2913,6 +2914,7 @@ %{_x11mandir}/man1/xdm.1* %dir /var/lib/xdm %dir %attr(0700,root,root) /var/lib/xdm/authdir +%config %{_sysconfdir}/init.d/xdm %files xfs @@ -3268,6 +3270,9 @@ %clean_buildroot %changelog +* Thu Sep 9 2004 Jaakko Heinonen 6.7.0-8jh +- install xdm init script + * Mon Aug 30 2004 Jaakko Heinonen 6.7.0-7jh - add /etc/profile.d/xorg-x11.{csh,sh} to add x11bindir to PATH From svn at tinysofa.org Thu Sep 9 19:37:14 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 10 Sep 2004 05:37:14 +1000 (EST) Subject: [tinysofa-svn] r4355 - in contrib/1.1: . xawtv xawtv/current xawtv/current/sources xawtv/current/specs Message-ID: <20040909193714.7B6F64E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-10 05:37:14 +1000 (Fri, 10 Sep 2004) New Revision: 4355 Added: contrib/1.1/xawtv/ contrib/1.1/xawtv/current/ contrib/1.1/xawtv/current/sources/ contrib/1.1/xawtv/current/sources/tv-fonts-1.0.tar.bz2 contrib/1.1/xawtv/current/sources/v4l-conf.pam contrib/1.1/xawtv/current/sources/xawtv-3.88-config.patch contrib/1.1/xawtv/current/sources/xawtv_3.88.tar.gz contrib/1.1/xawtv/current/sources/zvbi-0.2.4.tar.bz2 contrib/1.1/xawtv/current/specs/ contrib/1.1/xawtv/current/specs/xawtv.spec contrib/1.1/xawtv/releases/ Log: - add xawtv Added: contrib/1.1/xawtv/current/sources/tv-fonts-1.0.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/xawtv/current/sources/tv-fonts-1.0.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/xawtv/current/sources/v4l-conf.pam =================================================================== --- contrib/1.1/xawtv/current/sources/v4l-conf.pam 2004-09-09 18:43:27 UTC (rev 4354) +++ contrib/1.1/xawtv/current/sources/v4l-conf.pam 2004-09-09 19:37:14 UTC (rev 4355) @@ -0,0 +1,7 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +auth required pam_console.so +#auth required pam_stack.so service=system-auth +account required pam_permit.so +session required pam_permit.so +session optional pam_xauth.so Added: contrib/1.1/xawtv/current/sources/xawtv-3.88-config.patch =================================================================== --- contrib/1.1/xawtv/current/sources/xawtv-3.88-config.patch 2004-09-09 18:43:27 UTC (rev 4354) +++ contrib/1.1/xawtv/current/sources/xawtv-3.88-config.patch 2004-09-09 19:37:14 UTC (rev 4355) @@ -0,0 +1,89 @@ +--- xawtv-3.88/console/Subdir.mk.config 2003-02-14 15:14:04.000000000 +0100 ++++ xawtv-3.88/console/Subdir.mk 2003-05-06 10:54:26.000000000 +0200 +@@ -76,7 +76,7 @@ + $(THREAD_LIBS) $(CURSES_LIBS) $(LIRC_LIBS) $(ALSA_LIBS) \ + $(FS_LIBS) -ljpeg -lm + console/ttv : LDLIBS += $(THREAD_LIBS) $(AA_LIBS) -ljpeg -lm +-console/scantv : LDLIBS += $(THREAD_LIBS) $(VBI_LIBS) -ljpeg ++console/scantv : LDLIBS += $(THREAD_LIBS) -L. $(VBI_LIBS) -ljpeg + console/streamer : LDLIBS += $(THREAD_LIBS) -ljpeg -lm + console/webcam : LDLIBS += $(THREAD_LIBS) -ljpeg -lm + console/radio : LDLIBS += $(CURSES_LIBS) +--- xawtv-3.88/libng/plugins/Subdir.mk.config 2003-02-14 15:14:05.000000000 +0100 ++++ xawtv-3.88/libng/plugins/Subdir.mk 2003-05-06 10:54:26.000000000 +0200 +@@ -47,7 +47,7 @@ + + install:: + $(INSTALL_DIR) $(libdir) +- $(INSTALL_PROGRAM) -s $(TARGETS-plugins) $(libdir) ++ $(INSTALL_PROGRAM) $(TARGETS-plugins) $(libdir) + rm -f $(GONE-plugins) + + clean:: +--- xawtv-3.88/vbistuff/Subdir.mk.config 2003-02-14 15:14:08.000000000 +0100 ++++ xawtv-3.88/vbistuff/Subdir.mk 2003-05-06 10:54:26.000000000 +0200 +@@ -25,14 +25,14 @@ + vbistuff/ntsc-cc: vbistuff/ntsc-cc.o + + # libraries to link +-vbistuff/alevtd : LDLIBS += $(VBI_LIBS) ++vbistuff/alevtd : LDLIBS += -L. $(VBI_LIBS) + vbistuff/ntsc-cc : LDLIBS += $(ATHENA_LIBS) + + # global targets + all:: $(TARGETS-vbistuff) + + install:: +- $(INSTALL_PROGRAM) -s $(TARGETS-vbistuff) $(bindir) ++ $(INSTALL_PROGRAM) $(TARGETS-vbistuff) $(bindir) + + clean:: + rm -f $(HTML-alevtd) +--- xawtv-3.88/x11/Subdir.mk.config 2003-03-28 12:52:49.000000000 +0100 ++++ xawtv-3.88/x11/Subdir.mk 2003-05-06 10:59:29.000000000 +0200 +@@ -94,11 +94,11 @@ + # libraries to link + x11/xawtv : LDLIBS += \ + $(THREAD_LIBS) $(CURSES_LIBS) $(LIRC_LIBS) $(ALSA_LIBS) \ +- $(ATHENA_LIBS) $(VBI_LIBS) $(GL_LIBS) -ljpeg -lm ++ $(ATHENA_LIBS) -L. $(VBI_LIBS) $(GL_LIBS) -ljpeg -lm + x11/motv : LDLIBS += \ + $(THREAD_LIBS) $(CURSES_LIBS) $(LIRC_LIBS) $(ALSA_LIBS) \ +- $(MOTIF_LIBS) $(VBI_LIBS) $(GL_LIBS) -ljpeg -lm +-x11/mtt : LDLIBS += $(THREAD_LIBS) $(MOTIF_LIBS) $(VBI_LIBS) -ljpeg ++ $(MOTIF_LIBS) -L. $(VBI_LIBS) $(GL_LIBS) -ljpeg -lm ++x11/mtt : LDLIBS += $(THREAD_LIBS) $(MOTIF_LIBS) -L. $(VBI_LIBS) -ljpeg + x11/v4lctl : LDLIBS += $(THREAD_LIBS) $(ATHENA_LIBS) -ljpeg -lm + x11/pia : LDLIBS += $(ATHENA_LIBS) $(GL_LIBS) -ljpeg -lm + x11/rootv : LDLIBS += $(ATHENA_LIBS) +@@ -141,7 +141,7 @@ + + ifeq ($(FOUND_X11),yes) + install:: +- $(INSTALL_PROGRAM) -s $(TARGETS-x11) $(bindir) ++ $(INSTALL_PROGRAM) $(TARGETS-x11) $(bindir) + $(INSTALL_DIR) $(resdir)/app-defaults + $(INSTALL_DATA) $(srcdir)/x11/Xawtv.ad $(resdir)/app-defaults/Xawtv + endif +--- xawtv-3.88/Makefile.in.config 2003-04-16 17:58:05.000000000 +0200 ++++ xawtv-3.88/Makefile.in 2003-05-06 10:54:26.000000000 +0200 +@@ -19,7 +19,7 @@ + CC := @CC@ + CXX := @CXX@ + INSTALL := @INSTALL@ +-INSTALL_PROGRAM := @INSTALL_PROGRAM@ -s ++INSTALL_PROGRAM := @INSTALL_PROGRAM@ + INSTALL_DATA := @INSTALL_DATA@ + INSTALL_DIR := @INSTALL@ -d -m 755 + +--- xawtv-3.88/configure.config 2003-04-15 14:37:29.000000000 +0200 ++++ xawtv-3.88/configure 2003-05-06 10:54:26.000000000 +0200 +@@ -5287,7 +5287,7 @@ + echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lzvbi $LIBS" ++LIBS="-L. -lzvbi $LIBS" + cat >conftest.$ac_ext <<_ACEOF + #line $LINENO "configure" + /* confdefs.h. */ Added: contrib/1.1/xawtv/current/sources/xawtv_3.88.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/xawtv/current/sources/xawtv_3.88.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/xawtv/current/sources/zvbi-0.2.4.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/xawtv/current/sources/zvbi-0.2.4.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/xawtv/current/specs/xawtv.spec =================================================================== --- contrib/1.1/xawtv/current/specs/xawtv.spec 2004-09-09 18:43:27 UTC (rev 4354) +++ contrib/1.1/xawtv/current/specs/xawtv.spec 2004-09-09 19:37:14 UTC (rev 4355) @@ -0,0 +1,375 @@ +%define font_dir tv-fonts-1.0 +%define zvbi_version 0.2.4 + +%define debug_package %{nil} + +%define __mkfontdir umask 133;/usr/X11R6/bin/mkfontdir + +Name: xawtv +Summary: A TV application for video4linux compliant devices. +Version: 3.88 +Release: 1jh +Group: Applications/Multimedia +License: GPL +URL: http://bytesex.org/xawtv/ + +Source0: http://bytesex.org/xawtv/%{name}_%{version}.tar.gz +Source1: http://bytesex.org/xawtv/tv-fonts-1.0.tar.bz2 +Source2: v4l-conf.pam +Source3: http://prdownloads.sourceforge.net/zapping/zvbi-0.2.4.tar.bz2 + +Patch0: xawtv-3.88-config.patch + +BuildPrereq: XFree86-devel +BuildPrereq: ncurses-devel +BuildPrereq: fileutils +BuildPrereq: libjpeg-devel +BuildPrereq: libpng-devel +BuildPrereq: freetype-devel +BuildPrereq: fontconfig-devel +BuildRequires: xorg-x11-devel + +#Requires: usermode + +BuildRoot: %{_tmppath}/%{name}-root +Excludearch: sparc s390 s390x + +%description +Xawtv is a simple xaw-based TV program which uses the bttv driver or +video4linux. Xawtv contains various command-line utilities for +grabbing images and .avi movies, for tuning in to TV stations, etc. +Xawtv also includes a grabber driver for vic. + +%package tv-fonts +Group: User Interface/X +Summary: Bitmap fonts for xawtv +License: Freely distributable +Requires: %{name} >= %{version} +PreReq: /usr/X11R6/bin/xset +PreReq: /usr/X11R6/bin/mkfontdir +Prereq: /usr/sbin/chkfontpath + +%description tv-fonts +This package includes some bitmaps fonts for xawtv. + +%prep +%setup -q -a 1 -a 3 +%patch0 -p1 -b .config + +%build +export PATH=$PATH:/usr/X11R6/bin +export DISPLAY="" + +pushd zvbi-%{zvbi_version} +CFLAGS="$RPM_OPT_FLAGS" \ +./configure \ + --prefix=%{_prefix} \ + --libdir=%{_libdir} \ + --enable-static \ + --disable-shared +make %{?smp_mflags} +popd + +mkdir build +pushd build +cp ../zvbi-%{zvbi_version}/src/libzvbi.h . +cp ../zvbi-%{zvbi_version}/src/.libs/lib*.a . +CFLAGS="$RPM_OPT_FLAGS" \ +../configure \ + --prefix=%{_prefix} \ + --libdir=%{_libdir} \ + --mandir=%{_mandir} \ + --disable-motif \ + --enable-zvbi +make +popd + +make -C %{font_dir} + +%install +rm -rf $RPM_BUILD_ROOT + +make -C build DESTDIR=%{buildroot} SUID_ROOT="" install +mkdir -p $RPM_BUILD_ROOT%{_sbindir} \ + $RPM_BUILD_ROOT%{_sysconfdir}/pam.d \ + $RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps \ + $RPM_BUILD_ROOT%{_datadir}/fonts/tv-fonts + +cp %{font_dir}/*.gz $RPM_BUILD_ROOT%{_datadir}/fonts/tv-fonts + +#install -m 0644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/v4l-conf +#echo "SESSION=true" > $RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps/v4l-conf +#echo "USER=root" >> $RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps/v4l-conf +#echo "PROGRAM=%{_sbindir}/v4l-conf" >> $RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps/v4l-conf +mv $RPM_BUILD_ROOT%{_bindir}/v4l-conf $RPM_BUILD_ROOT%{_sbindir}/ +#ln -s consolehelper $RPM_BUILD_ROOT%{_bindir}/v4l-conf + +# remove some manpages +rm -f $RPM_BUILD_ROOT%{_mandir}/man1/motv* + +%post +umask 022 +if [ ! -f /etc/sysconfig/xawtv ] ; then + echo "freqtab=\"us-cable\"" > /etc/sysconfig/xawtv + echo "tvnorm=\"ntsc\"" >> /etc/sysconfig/xawtv + source /etc/sysconfig/xawtv >& /dev/null + scantv -s -n $tvnorm -f $freqtab -o /etc/X11/xawtvrc &> /dev/null || : +fi + +%postun +if [ "$1" = "0" ]; then + rm -f /etc/X11/xawtvrc /etc/sysconfig/xawtv +fi + +%post tv-fonts +{ + %__mkfontdir %{_datadir}/fonts/tv-fonts + /usr/sbin/chkfontpath -q -a %{_datadir}/fonts/tv-fonts:unscaled +} &> /dev/null || : + +%postun tv-fonts +{ + if [ "$1" = "0" ]; then + /usr/sbin/chkfontpath -q -r %{_datadir}/fonts/tv-fonts:unscaled + fi +} &> /dev/null || : + +%clean +rm -fr $RPM_BUILD_ROOT + +%files +%defattr(-,root,root) +%config /usr/X11R6/lib/X11/app-defaults/Xawtv +#%config(noreplace) %{_sysconfdir}/pam.d/v4l-conf +#%config(noreplace) %{_sysconfdir}/security/console.apps/v4l-conf +%{_bindir}/* +%{_libdir}/xawtv +%{_datadir}/xawtv +%attr(0711,root,root) /usr/sbin/v4l-conf +%{_mandir}/man?/* +%lang(es) %{_mandir}/es/*/* +%lang(fr) %{_mandir}/fr/*/* +%doc COPYING README TODO Changes contrib/frequencies* + +%files tv-fonts +%defattr(-,root,root) +%{_datadir}/fonts/tv-fonts + +%changelog +* Tue Oct 21 2003 Florian La Roche +- add BuildReq for fontconfig-devel and freetype-devel, these seem + to get picked up + +* Mon Sep 01 2003 Than Ngo 3.88-5 +- Added missing BuildRequires for libpng-devel (bug #103447) + +* Tue Jun 17 2003 Than Ngo 3.88-4 +- fixed permission problem (bug #90921) + +* Tue Jun 17 2003 Than Ngo 3.88-3 +- rebuilt + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Tue May 6 2003 Than Ngo 3.88-1 +- 3.88 + +* Thu Mar 3 2003 Than Ngo 3.85-1 +- 3.85, (#85557, #81588, #74684, #61717) +- own /usr/lib/xawtv, (bug #73981) +- dependency on libjpeg-devel, (bug #48925) +- include alevtd daemon (bug #53878) +- create default configuration by install (bug #73270) + +* Sun Feb 10 2003 Than Ngo 3.81-6 +- install correct pam file, #83820 + +* Mon Jan 27 2003 Than Ngo 3.81-5 +- fix #81791 + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Tue Jan 21 2003 Than Ngo 3.81-3 +- fix #81851 + +* Mon Dec 16 2002 Than Ngo 3.81-2 +- rebuild + +* Fri Dec 13 2002 Than Ngo 3.81-1 +- update 3.81 +- move bitmap fonts to bitmap-fonts package + +* Tue Nov 12 2002 Nalin Dahyabhai 3.78-2 +- adjust PAM configuration to not use absolute paths so that the right module + set gets used for the current arch on multilib systems + +* Thu Nov 7 2002 Than Ngo 3.78-1 +- 3.78 + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Thu Jun 20 2002 Than Ngo 3.74-3 +- Don't forcibly strip binaries + +* Sun May 26 2002 Tim Powers +- automated rebuild + +* Thu May 23 2002 Harald Hoyer +- 3.74 + +* Sun Apr 07 2002 han Ngo 3.73-3 +- remove motv manpage (#62771) + +* Tue Apr 2 2002 Than Ngo 3.73-2 +- get rid of openmotif + +* Sun Mar 24 2002 Than Ngo 3.73-1 +- update +- fix bug #61719 + +* Fri Mar 22 2002 Tim Powers +- rebuilt motv against new openmotif-2.2.2 + +* Tue Feb 26 2002 Than Ngo 3.72-1 +- update to 3.72 + +* Tue Feb 19 2002 Bernhard Rosenkraenzer 3.71-1 +- 3.71 + +* Fri Jan 18 2002 Than Ngo 3.68-1 +- update to 3.68 +- enable XFree extensions +- fix Url +- add missing plugins + +* Wed Dec 5 2001 Than Ngo 3.65-1 +- update to 3.65 +- fix build on ia64 + +* Wed Nov 14 2001 Than Ngo 3.64-1 +- update to 3.64 + +* Mon Sep 17 2001 Than Ngo 3.62-1 +- update to 3.62 (bug #53711 #52847) + +* Tue Aug 28 2001 Than Ngo 3.54-5 +- fix spec file bug (Bug #52675) + +* Fri Aug 10 2001 Than Ngo 3.54-4 +- add requires usermode (bug #51474) + +* Sun Aug 5 2001 Nalin Dahyabhai 3.54-3 +- tweak PAM setup so that v4l-conf can access the display properly + +* Tue Jul 10 2001 Elliot Lee 3.54-2 +- Rebuild to remove libXv/libXxf86dga deps + +* Mon Jul 02 2001 Than Ngo +- update to 3.54 + +* Fri Jun 22 2001 Than Ngo +- update to 3.53 +- add buildprereq +- remove some uneeeded patches + +* Tue Jun 19 2001 Karsten Hopp +- excludearch s390 s390x + +* Wed Jun 13 2001 Than Ngo +- update to 3.51 + +* Thu Jun 07 2001 Than Ngo +- update to 3.50 + +* Thu May 31 2001 Than Ngo +- udate to 3.49 + +* Tue May 22 2001 Than Ngo +- update to 3.48 + +* Mon May 21 2001 Tim Powers +- built for the distro + +* Wed May 18 2001 Karsten Hopp +- make xawtv work with kernel-2.4 + +* Wed May 16 2001 Than Ngo +- update to 3.47 + +* Mon May 07 2001 Than Ngo +- update to 3.45 +- add missing fonts + +* Tue Feb 13 2001 Than Ngo +- update to 3.34 +- use consolehelper for v4l-conf +- add excludearch sparc, bdftopcf is broken on sparc + +* Wed Jan 24 2001 Than Ngo +- updated to 3.30 +- use /dev/video0 instead /dev/video (bug #24871) +- fixed dependencies (Bug #24881) + +* Sun Nov 19 2000 Than Ngo +- update to 3.24 +- add missing tools (rootv,scantv) +- add missing prereq on xset and mkfontdir + +* Fri Nov 3 2000 Than Ngo +- update to 3.23 + +* Wed Aug 23 2000 Tim Powers +- rebuilt against new XFree86 to fix DGA problems + +* Mon Aug 21 2000 Than Ngo +- update to 3.18 (Bugfix release) +- option -nodga to disable DGA (Bug #16577, #15702) +- compress fonts with gzip + +* Mon Aug 07 2000 Tim Powers +- fixed bug #15435 + +* Mon Aug 07 2000 Than Ngo +- rebuilt against the new DGA +- fixed in post and postun, so that it does not + emits to console (Bug #15436) + + +* Sat Jul 29 2000 Than Ngo +- update to 3.17 + +* Mon Jul 24 2000 Prospector +- rebuilt + +* Wed Jul 12 2000 Than Ngo +- FHS fixes + +* Mon Jul 03 2000 Prospector +- automatic rebuild + +* Sun May 28 2000 Ngo Than +- update to 3.14 for 7.0 +- put man page in correct place +- add webcam +- bzip2 source +- cleanup specfile + +* Wed Jan 19 2000 Preston Brown +- font fix (#8610) in post and postun +- add missing files in bin + +* Sun Jan 16 2000 Preston Brown +- whoops! 3.07 already bugfix release + +* Fri Jan 14 2000 Ngo Than +- updated to 3.06 + +* Mon Jul 26 1999 Tim Powers +- updated to 2.46 +- built for 6.1 + +* Wed Apr 28 1999 Preston Brown +- initial build for Powertools 6.0 From svn at tinysofa.org Thu Sep 9 20:55:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 10 Sep 2004 06:55:57 +1000 (EST) Subject: [tinysofa-svn] r4356 - contrib/1.1/xmms/current/specs Message-ID: <20040909205557.C25884E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-10 06:55:57 +1000 (Fri, 10 Sep 2004) New Revision: 4356 Modified: contrib/1.1/xmms/current/specs/xmms.spec Log: - default permissions for directories Modified: contrib/1.1/xmms/current/specs/xmms.spec =================================================================== --- contrib/1.1/xmms/current/specs/xmms.spec 2004-09-09 19:37:14 UTC (rev 4355) +++ contrib/1.1/xmms/current/specs/xmms.spec 2004-09-09 20:55:57 UTC (rev 4356) @@ -162,7 +162,7 @@ rm -rf %{buildroot} %files -f %{name}.lang -%defattr(-,root,root) +%defattr(-,root,root,755) %doc AUTHORS COPYING ChangeLog FAQ INSTALL NEWS TODO README %{_bindir}/xmms %{_bindir}/wmxmms From svn at tinysofa.org Fri Sep 10 04:42:15 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 10 Sep 2004 14:42:15 +1000 (EST) Subject: [tinysofa-svn] r4357 - contrib/1.1/xorg-x11/current/sources Message-ID: <20040910044215.4EF584E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-10 14:42:14 +1000 (Fri, 10 Sep 2004) New Revision: 4357 Modified: contrib/1.1/xorg-x11/current/sources/xfs.init Log: - ttmkfdir -> mkfontscale Modified: contrib/1.1/xorg-x11/current/sources/xfs.init =================================================================== --- contrib/1.1/xorg-x11/current/sources/xfs.init 2004-09-09 20:55:57 UTC (rev 4356) +++ contrib/1.1/xorg-x11/current/sources/xfs.init 2004-09-10 04:42:14 UTC (rev 4357) @@ -39,7 +39,7 @@ rm -f fonts.dir if ls | grep -iqs '\.tt[cf]$' ; then # TrueType fonts found, generate fonts.scale and fonts.dir - ttmkfdir -d . -o fonts.scale && mkfontdir . &>/dev/null + mkfontscale . && mkfontdir . &>/dev/null fi if ls | grep -iqs '\.ot[cf]$' ; then # Opentype fonts found, generate fonts.scale and fonts.dir From svn at tinysofa.org Fri Sep 10 12:52:22 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 10 Sep 2004 22:52:22 +1000 (EST) Subject: [tinysofa-svn] r4358 - contrib/1.1/xorg-x11/current/specs Message-ID: <20040910125222.7BEB34E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-10 22:52:21 +1000 (Fri, 10 Sep 2004) New Revision: 4358 Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec Log: - add correct %pre and %post scripts for xdm service Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec =================================================================== --- contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-10 04:42:14 UTC (rev 4357) +++ contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-10 12:52:21 UTC (rev 4358) @@ -626,6 +626,8 @@ Summary: X Display Manager Requires: %{name} = %{version}, /etc/pam.d/system-auth # xinitrc requirement on 3.13 for user login shell enhancement to Xsession +PreReq: /sbin/chkconfig +Requires(preun,postun): /sbin/service Requires: xinitrc >= 3.13 Group: contrib Provides: xdm @@ -1872,7 +1874,18 @@ ln -sf ../../../var/lib/xdm/authdir /etc/X11/xdm/authdir || : fi } &> /dev/null || : - + +%post xdm +/sbin/chkconfig --add xdm + +%preun xdm + { + if [ "$1" = "0" ]; then + /sbin/service xdm stop &> /dev/null || : + /sbin/chkconfig --del xdm || : + fi +} + %post libs { cat </etc/ld.so.conf.d/xorg-x11.conf From svn at tinysofa.org Fri Sep 10 13:34:25 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 10 Sep 2004 23:34:25 +1000 (EST) Subject: [tinysofa-svn] r4359 - contrib/1.1/xawtv/current/specs Message-ID: <20040910133425.C15EA4E802F@minbar.tinysofa.org> Author: jh Date: 2004-09-10 23:34:25 +1000 (Fri, 10 Sep 2004) New Revision: 4359 Modified: contrib/1.1/xawtv/current/specs/xawtv.spec Log: - add BR: gcc-c++ Modified: contrib/1.1/xawtv/current/specs/xawtv.spec =================================================================== --- contrib/1.1/xawtv/current/specs/xawtv.spec 2004-09-10 12:52:21 UTC (rev 4358) +++ contrib/1.1/xawtv/current/specs/xawtv.spec 2004-09-10 13:34:25 UTC (rev 4359) @@ -27,7 +27,7 @@ BuildPrereq: libpng-devel BuildPrereq: freetype-devel BuildPrereq: fontconfig-devel -BuildRequires: xorg-x11-devel +BuildRequires: xorg-x11-devel gcc-c++ #Requires: usermode From svn at tinysofa.org Fri Sep 10 19:28:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 11 Sep 2004 05:28:07 +1000 (EST) Subject: [tinysofa-svn] r4360 - in contrib/1.1: . clamassassin clamassassin/current clamassassin/current/sources clamassassin/current/specs Message-ID: <20040910192807.727054E802F@minbar.tinysofa.org> Author: gda Date: 2004-09-11 05:28:06 +1000 (Sat, 11 Sep 2004) New Revision: 4360 Added: contrib/1.1/clamassassin/ contrib/1.1/clamassassin/current/ contrib/1.1/clamassassin/current/sources/ contrib/1.1/clamassassin/current/sources/clamassassin-1.2.1.tar.gz contrib/1.1/clamassassin/current/specs/ contrib/1.1/clamassassin/current/specs/clamassassin.spec Log: New in contrib Added: contrib/1.1/clamassassin/current/sources/clamassassin-1.2.1.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/clamassassin/current/sources/clamassassin-1.2.1.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/clamassassin/current/specs/clamassassin.spec =================================================================== --- contrib/1.1/clamassassin/current/specs/clamassassin.spec 2004-09-10 13:34:25 UTC (rev 4359) +++ contrib/1.1/clamassassin/current/specs/clamassassin.spec 2004-09-10 19:28:06 UTC (rev 4360) @@ -0,0 +1,40 @@ +Summary: clamassassin e-mail virus filter +Name: clamassassin +Version: 1.2.1 +Release: 1gd +Copyright: Based on the Berkeley License +Group: contrib +Source: %{name}-%{version}.tar.gz +Url: http://drivel.com/clamassassin/ +BuildRoot: /var/tmp/%{name}-%{version}-%{release} +Requires: clamav procmail +BuildRequires: clamav procmail +BuildArch: noarch + +%description +clamassassin is a simple virus filter wrapper for ClamAV for use in procmail filters and similiar applications. clamassassin's interface is similiar to that of spamassassin, making it easy to implement for those familiar with that tool. clamassassin is designed with an emphasis on security, robustness and simplicity. + +clamassassin is developed and tested on Solaris 9, Solaris 10 and Red Hat 9 platforms but should work on any unix-like system which meet the requirements in the README. It has been reported to work on various versions of Unix, Linux, and BSD platforms. ClamAV 0.66 or higher is supported, but we recommend at least ClamAV 0.75.1. + +%prep +%setup + +%build +%configure --enable-clamdscan --enable-subject-rewrite + +%install +mkdir -p $RPM_BUILD_ROOT%{_bindir} +%makeinstall + +%clean +%clean_buildroot + +%files +%defattr(-,root,root) +%doc CHANGELOG LICENSE README +%{_bindir}/clamassassin + +%changelog +* Fri Sep 10 2004 Gerald Dachs 1.2.1-1gd +- New in tinysofa contrib + From svn at tinysofa.org Sat Sep 11 10:50:25 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 11 Sep 2004 20:50:25 +1000 (EST) Subject: [tinysofa-svn] r4362 - tinysofa/releases/1.1/kernel/current/sources Message-ID: <20040911105025.9BB034E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-11 20:50:24 +1000 (Sat, 11 Sep 2004) New Revision: 4362 Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config Log: - config changes Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config 2004-09-10 19:52:13 UTC (rev 4361) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config 2004-09-11 10:50:24 UTC (rev 4362) @@ -91,7 +91,7 @@ CONFIG_PCI_DIRECT=y CONFIG_ISA=y CONFIG_SCx200=m -CONFIG_PCI_NAMES=y +CONFIG_PCI_NAMES=n # CONFIG_EISA is not set # CONFIG_MCA is not set # CONFIG_HOTPLUG is not set Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config 2004-09-10 19:52:13 UTC (rev 4361) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config 2004-09-11 10:50:24 UTC (rev 4362) @@ -220,11 +220,11 @@ CONFIG_TUX_EXTCGI=y # CONFIG_TUX_EXTENDED_LOG is not set # CONFIG_TUX_DEBUG is not set -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y # CONFIG_IP_PNP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE is not set +CONFIG_NET_IPIP=m +CONFIG_NET_IPGRE=m # CONFIG_ARPD is not set # CONFIG_INET_ECN is not set CONFIG_SYN_COOKIES=y Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config 2004-09-10 19:52:13 UTC (rev 4361) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config 2004-09-11 10:50:24 UTC (rev 4362) @@ -208,11 +208,11 @@ CONFIG_TUX_EXTCGI=y # CONFIG_TUX_EXTENDED_LOG is not set # CONFIG_TUX_DEBUG is not set -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y # CONFIG_IP_PNP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE is not set +CONFIG_NET_IPIP=m +CONFIG_NET_IPGRE=m # CONFIG_ARPD is not set # CONFIG_INET_ECN is not set CONFIG_SYN_COOKIES=y From svn at tinysofa.org Sat Sep 11 11:19:56 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 11 Sep 2004 21:19:56 +1000 (EST) Subject: [tinysofa-svn] r4363 - tinysofa/releases/1.1/kernel/current/sources Message-ID: <20040911111956.07BF44E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-11 21:19:55 +1000 (Sat, 11 Sep 2004) New Revision: 4363 Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config Log: - add answers to suboptions Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config 2004-09-11 10:50:24 UTC (rev 4362) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config 2004-09-11 11:19:55 UTC (rev 4363) @@ -222,9 +222,19 @@ # CONFIG_TUX_DEBUG is not set CONFIG_IP_MULTICAST=y CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_FWMARK=y +CONFIG_IP_ROUTE_NAT=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_TOS=y +CONFIG_IP_ROUTE_VERBOSE=y # CONFIG_IP_PNP is not set CONFIG_NET_IPIP=m CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_IP_MROUTE=y +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y # CONFIG_ARPD is not set # CONFIG_INET_ECN is not set CONFIG_SYN_COOKIES=y Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config 2004-09-11 10:50:24 UTC (rev 4362) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config 2004-09-11 11:19:55 UTC (rev 4363) @@ -210,9 +210,19 @@ # CONFIG_TUX_DEBUG is not set CONFIG_IP_MULTICAST=y CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_FWMARK=y +CONFIG_IP_ROUTE_NAT=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_TOS=y +CONFIG_IP_ROUTE_VERBOSE=y # CONFIG_IP_PNP is not set CONFIG_NET_IPIP=m CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_IP_MROUTE=y +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y # CONFIG_ARPD is not set # CONFIG_INET_ECN is not set CONFIG_SYN_COOKIES=y From svn at tinysofa.org Sat Sep 11 16:08:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 12 Sep 2004 02:08:27 +1000 (EST) Subject: [tinysofa-svn] r4364 - tinysofa/releases/1.1/mutt/current/specs Message-ID: <20040911160827.6BE984E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-12 02:08:27 +1000 (Sun, 12 Sep 2004) New Revision: 4364 Modified: tinysofa/releases/1.1/mutt/current/specs/mutt.spec Log: - add gpg support to default Muttrc - spec cleanup Modified: tinysofa/releases/1.1/mutt/current/specs/mutt.spec =================================================================== --- tinysofa/releases/1.1/mutt/current/specs/mutt.spec 2004-09-11 11:19:55 UTC (rev 4363) +++ tinysofa/releases/1.1/mutt/current/specs/mutt.spec 2004-09-11 16:08:27 UTC (rev 4364) @@ -1,7 +1,7 @@ Name: mutt Summary: A text mode mail user agent. Version: 1.4.2.1 -Release: 6ts +Release: 7jh License: GPL Group: extra URL: http://www.mutt.org/ @@ -9,7 +9,7 @@ Patch1: mutt-1.2.2.sgid.patch.bz2 Requires: ncurses >= 5.0, smtpdaemon BuildRequires: ncurses-devel >= 5.0, openssl-devel -BuildRoot: %{_tmppath}/%{name}-root +BuildRoot: %{_tmppath}/%{name}-%{version}-root %description Mutt is a text mode mail user agent. Mutt supports color, threading, @@ -20,15 +20,13 @@ %setup -q -n %{name}-%{version} %patch1 -p1 + %build -CFLAGS="$RPM_OPT_FLAGS" LDFLAGS=-s ./configure \ - --prefix=%{_prefix} \ - --with-sharedir=/etc \ - --sysconfdir=/etc \ - --with-docdir=%{_prefix}/share/doc/mutt-%{version} \ +%configure \ + --with-sharedir=%{_sysconfdir} + --with-docdir=%{_docdir}/%{name}-%{version} \ --enable-pop \ --enable-imap \ - --mandir=%{_mandir} \ --disable-warnings \ --with-ncurses \ --enable-nfs-fix \ @@ -36,22 +34,21 @@ --with-ssl \ --with-homespool \ --disable-nls -make +%make %install -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf "$RPM_BUILD_ROOT" -mkdir -p $RPM_BUILD_ROOT +%makeinstall_std -make prefix=$RPM_BUILD_ROOT%{_prefix} sharedir=$RPM_BUILD_ROOT/etc \ - sysconfdir=$RPM_BUILD_ROOT/etc \ - docdir=$RPM_BUILD_ROOT%{_prefix}/doc/mutt-%{version} \ - mandir=$RPM_BUILD_ROOT/usr/share/man install +# we like GPG here +cat contrib/gpg.rc >> \ + %{buildroot}%{_sysconfdir}/Muttrc -rm $RPM_BUILD_ROOT/usr/share/man/man1/mutt_dotlock.1 +rm -f %{buildroot}%{mandir}/man1/mutt_dotlock.1 + %clean -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf "$RPM_BUILD_ROOT" +%clean_buildroot %files @@ -72,6 +69,10 @@ %exclude /usr/doc %changelog +* Sat Sep 11 2004 Jaakko Heinonen 1.4.2.1-7jh +- add gpg support to default Muttrc +- spec cleanup + * Thu Aug 05 2004 tsintegrate 1.4.2.1-6ts - current (1.4.2.1-6jh) integrated as 1.4.2.1-6ts for release 1.1 From svn at tinysofa.org Sat Sep 11 16:21:02 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 12 Sep 2004 02:21:02 +1000 (EST) Subject: [tinysofa-svn] r4365 - in contrib/1.1: . gdk-pixbuf gdk-pixbuf/current gdk-pixbuf/current/sources gdk-pixbuf/current/specs gqview gqview/current gqview/current/sources gqview/current/specs Message-ID: <20040911162102.2CB594E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-12 02:21:01 +1000 (Sun, 12 Sep 2004) New Revision: 4365 Added: contrib/1.1/gdk-pixbuf/ contrib/1.1/gdk-pixbuf/current/ contrib/1.1/gdk-pixbuf/current/sources/ contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0.tar.bz2 contrib/1.1/gdk-pixbuf/current/specs/ contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec contrib/1.1/gdk-pixbuf/releases/ contrib/1.1/gqview/ contrib/1.1/gqview/current/ contrib/1.1/gqview/current/sources/ contrib/1.1/gqview/current/sources/gqview-1.2.2.tar.gz contrib/1.1/gqview/current/specs/ contrib/1.1/gqview/current/specs/gqview.spec contrib/1.1/gqview/releases/ Log: - add gqview - add gdk-pixbuf Added: contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec =================================================================== --- contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec 2004-09-11 16:08:27 UTC (rev 4364) +++ contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec 2004-09-11 16:21:01 UTC (rev 4365) @@ -0,0 +1,81 @@ +Name: gdk-pixbuf +Summary: The GdkPixBuf image handling library +Version: 0.22.0 +Release: 1jh +Copyright: LGPL +Group: contrib +Source: ftp://ftp.gnome.org/pub/GNOME/sources/%{name}/%{name}-%{version}.tar.bz2 +URL: http://www.gnome.org/ +BuildRoot: %{_tmppath}/%{name}-%{version}-root +Requires: gtk12+, glib12 +BuildRequires: gtk12+-devel, glib12-devel +BuildRequires: libjpeg-devel, libtiff-devel, libpng-devel +BuildRequires: xorg-x11-devel autoconf automake libtool + +%description +The GdkPixBuf library provides a number of features, including : + +- GdkPixbuf structure for representing images. +- Image loading facilities. +- Rendering of a GdkPixBuf into various formats: + drawables (windows, pixmaps), GdkRGB buffers. +- Fast scaling and compositing of pixbufs. +- Simple animation loading (ie. animated gifs) + +In addition, this module also provides a little libgnomecanvaspixbuf +library, which contains a GNOME Canvas item to display pixbufs with +full affine transformations. + +%package devel +Summary: Libraries and include files for developing GdkPixBuf applications. +Group: contrib +Requires: %name = %{version}-%{release} + +%description devel +Libraries and include files for developing GdkPixBuf applications. + +%prep +%setup -q + +%build +export LDFLAGS="-L${PWD}/gdk-pixbuf/.libs" +%configure \ + --libexecdir=%{_libdir}/%{name}/loaders +%make + +%install +%makeinstall_std + +%clean +%clean_buildroot + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%defattr(-, root, root, 755) +%doc AUTHORS COPYING COPYING.LIB ChangeLog NEWS README TODO doc/*.txt +%{_libdir}/lib*.so.* +%dir %{_libdir}/%{name} +%dir %{_libdir}/%{name}/loaders +%{_libdir}/%{name}/loaders/lib*.so* + +%files devel +%defattr(-, root, root, 755) +%{_bindir}/* +%{_libdir}/lib*.so +%{_libdir}/%{name}/loaders/lib*.a +%{_libdir}/%{name}/loaders/lib*.la +%{_libdir}/*.a +%{_libdir}/*.la +%{_libdir}/*.sh +%{_includedir}/* +%{_datadir}/aclocal/* +%{_datadir}/gnome/html/* + +%changelog +* Sat Jan 22 2000 Ross Golder + +- Borrowed from gnome-libs to integrate into gdk-pixbuf source tree + Added: contrib/1.1/gqview/current/sources/gqview-1.2.2.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/gqview/current/sources/gqview-1.2.2.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/gqview/current/specs/gqview.spec =================================================================== --- contrib/1.1/gqview/current/specs/gqview.spec 2004-09-11 16:08:27 UTC (rev 4364) +++ contrib/1.1/gqview/current/specs/gqview.spec 2004-09-11 16:21:01 UTC (rev 4365) @@ -0,0 +1,55 @@ +Summary: Graphics file browser utility. +Summary(fr): Explorateur de fichiers graphiques +Name: gqview +Version: 1.2.2 +Release: 1jh +Copyright: GPL +Group: contrib +Source: http://prdownloads.sourceforge.net/gqview/gqview-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +URL: http://gqview.sourceforge.net + +Requires: gtk12+ >= 1.2.10 glib12 >= 1.2.10 +Requires: gdk-pixbuf >= 0.16.0 +BuildRequires: gdk-pixbuf-devel xorg-x11-devel gettext libpng-devel + +%description +GQview is a browser for graphics files. +Offering single click viewing of your graphics files. +Includes thumbnail view, zoom and filtering features. +And external editor support. + +%description -l fr +GQview est un explorateur de fichiers graphiques. +Il permet d'un simple clic l'affichage de vos fichiers graphiques. +Les capacit?s suivantes sont incluses: vue d'imagettes, zoom, +filtres et support d'?diteurs externes. + +%prep +%setup -q + +%build +%configure +%make + +%install +%makeinstall + +%{__mkdir_p} %{_datadir}/pixmaps/ +install -m 644 gqview.png %{buildroot}%{_datadir}/pixmaps/gqview.png + + +%clean +%clean_buildroot + +%files +%defattr(-, root, root) +%doc README COPYING TODO +%{_bindir}/gqview +%{_datadir}/gqview/* +%{_datadir}/locale/*/*/* +#%{_datadir}/gnome/apps/Graphics/gqview.desktop +%{_datadir}/pixmaps/gqview.png +%{_mandir}/man?/* + From svn at tinysofa.org Sat Sep 11 16:56:38 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 12 Sep 2004 02:56:38 +1000 (EST) Subject: [tinysofa-svn] r4366 - contrib/1.1/gqview/current/specs Message-ID: <20040911165638.5D6344E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-12 02:56:38 +1000 (Sun, 12 Sep 2004) New Revision: 4366 Modified: contrib/1.1/gqview/current/specs/gqview.spec Log: - fix dir creation Modified: contrib/1.1/gqview/current/specs/gqview.spec =================================================================== --- contrib/1.1/gqview/current/specs/gqview.spec 2004-09-11 16:21:01 UTC (rev 4365) +++ contrib/1.1/gqview/current/specs/gqview.spec 2004-09-11 16:56:38 UTC (rev 4366) @@ -36,7 +36,7 @@ %install %makeinstall -%{__mkdir_p} %{_datadir}/pixmaps/ +%{__mkdir_p} %{buildroot}%{_datadir}/pixmaps/ install -m 644 gqview.png %{buildroot}%{_datadir}/pixmaps/gqview.png From svn at tinysofa.org Sun Sep 12 10:32:45 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 12 Sep 2004 20:32:45 +1000 (EST) Subject: [tinysofa-svn] r4367 - in contrib/1.1/xinitrc/current: sources specs Message-ID: <20040912103245.087654E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-12 20:32:44 +1000 (Sun, 12 Sep 2004) New Revision: 4367 Added: contrib/1.1/xinitrc/current/sources/xinitrc-4.0.1-icewm.patch Modified: contrib/1.1/xinitrc/current/specs/xinitrc.spec Log: - add support for icewm Added: contrib/1.1/xinitrc/current/sources/xinitrc-4.0.1-icewm.patch =================================================================== --- contrib/1.1/xinitrc/current/sources/xinitrc-4.0.1-icewm.patch 2004-09-11 16:56:38 UTC (rev 4366) +++ contrib/1.1/xinitrc/current/sources/xinitrc-4.0.1-icewm.patch 2004-09-12 10:32:44 UTC (rev 4367) @@ -0,0 +1,33 @@ +--- xinitrc-4.0.1/Xclients.icewm 2004-09-12 13:25:20.782401800 +0300 ++++ xinitrc-4.0.1/Xclients 2004-09-12 13:28:15.831790248 +0300 +@@ -18,6 +18,8 @@ + PREFERRED=startkde + elif [ "$DESKTOP" = "WINDOWMAKER" ]; then + PREFERRED=wmaker ++ elif [ "$DESKTOP" = "ICEWM" ]; then ++ PREFERRED=icewm-session + fi + fi + +@@ -30,18 +32,9 @@ + # or the desktop requested is not installed. + + if [ -z "$PREFERRED" ]; then +- +- GSESSION=gnome-session +- STARTKDE=startkde +- +- # by default, we run GNOME. +- if which $GSESSION >/dev/null 2>&1; then +- exec `which $GSESSION` +- fi +- +- # if GNOME isn't installed, try KDE. +- if which $STARTKDE >/dev/null 2>&1; then +- exec `which $STARTKDE` ++ # by default, we run icewm ++ if which icewm-session >/dev/null 2>&1; then ++ exec `which icewm-session` + fi + fi + Modified: contrib/1.1/xinitrc/current/specs/xinitrc.spec =================================================================== --- contrib/1.1/xinitrc/current/specs/xinitrc.spec 2004-09-11 16:56:38 UTC (rev 4366) +++ contrib/1.1/xinitrc/current/specs/xinitrc.spec 2004-09-12 10:32:44 UTC (rev 4367) @@ -1,12 +1,13 @@ Summary: The default startup script for the X Window System. Name: xinitrc Version: 4.0.1 -Release: 2jh +Release: 3jh License: GPLv2, MIT/X11 Group: contrib Source: %{name}-%{version}.tar.bz2 Patch: %{name}-%{version}-tinysofa-pidof.patch -Buildroot: %{_tmppath}/%{name}-root +Patch1: xinitrc-4.0.1-icewm.patch +Buildroot: %{_tmppath}/%{name}-%{version}-root # FIXME: XFree86 dep has been disabled, because that causes the package to # be dependant on a specific X11 implementation. It isn't clear why this # dependancy is here, so once we find out what breaks, we can add new @@ -37,6 +38,7 @@ %prep %setup -q %patch -p1 -b .tinysofa +%patch1 -p1 -b .icewm %install %makeinstall DESTDIR=$RPM_BUILD_ROOT @@ -60,6 +62,9 @@ /usr/X11R6/bin/RunWM %changelog +* Sun Sep 12 2004 Jaakko Heinonen 4.0.1-3jh +- add support for icewm + * Sat Aug 28 2004 Jaakko Heinonen 4.0.1-2jh - remove switchdesk requirement for now From svn at tinysofa.org Sun Sep 12 11:09:02 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 12 Sep 2004 21:09:02 +1000 (EST) Subject: [tinysofa-svn] r4368 - in contrib/1.1/icewm: . current/sources current/specs Message-ID: <20040912110902.C899E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-12 21:09:02 +1000 (Sun, 12 Sep 2004) New Revision: 4368 Added: contrib/1.1/icewm/current/sources/icewm-menu contrib/1.1/icewm/current/sources/icewm-preferences contrib/1.1/icewm/current/sources/icewm-programs contrib/1.1/icewm/releases/ Removed: contrib/1.1/icewm/release/ Modified: contrib/1.1/icewm/current/specs/icewm.spec Log: - add default tinysofa configuration - release -> releases Added: contrib/1.1/icewm/current/sources/icewm-menu =================================================================== --- contrib/1.1/icewm/current/sources/icewm-menu 2004-09-12 10:32:44 UTC (rev 4367) +++ contrib/1.1/icewm/current/sources/icewm-menu 2004-09-12 11:09:02 UTC (rev 4368) @@ -0,0 +1,19 @@ +# This is an example for IceWM's menu definition file. +# +# Place your variants in /etc/icewm or in $HOME/.icewm +# since modifications to this file will be discarded when you +# (re)install icewm. +# +prog xterm xterm xterm +prog rxvt xterm rxvt -bg black -cr green -fg white -C -fn 9x15 -sl 500 +prog fte fte fte +prog NEdit nedit nedit +prog Mozilla mozilla mozilla +prog XChat xchat xchat +prog Gimp gimp gimp +separator +menuprog Gnome folder icewm-menu-gnome1 --list +menuprog Gnome folder icewm-menu-gnome2 --list +menuprog KDE folder icewm-menu-gnome --list +menufile Programs folder programs +menufile Tool_bar folder toolbar Added: contrib/1.1/icewm/current/sources/icewm-preferences =================================================================== --- contrib/1.1/icewm/current/sources/icewm-preferences 2004-09-12 10:32:44 UTC (rev 4367) +++ contrib/1.1/icewm/current/sources/icewm-preferences 2004-09-12 11:09:02 UTC (rev 4368) @@ -0,0 +1,1187 @@ +# preferences - tinysofa default preferences + +# This file should be copied to /etc/icewm/ or $HOME/.icewm/ directory + +# Focus windows by clicking +ClickToFocus=0 # 0/1 + +# Focus windows when application requests to raise +# FocusOnAppRaise=1 # 0/1 + +# Raise windows when focused +RaiseOnFocus=0 # 0/1 + +# Focus window when client area clicked +FocusOnClickClient=1 # 0/1 + +# Raise window when client area clicked +RaiseOnClickClient=1 # 0/1 + +# Raise window when title bar is clicked +RaiseOnClickTitleBar=1 # 0/1 + +# Raise window when frame button is clicked +RaiseOnClickButton=1 # 0/1 + +# Raise window when frame border is clicked +RaiseOnClickFrame=1 # 0/1 + +# Lower the active window when clicked again +LowerOnClickWhenRaised=0 # 0/1 + +# Pass focusing click on client area to client +# PassFirstClickToClient=1 # 0/1 + +# Change to the workspace of newly focused windows +# FocusChangesWorkspace=1 # 0/1 + +# Focus normal window when initially mapped +# FocusOnMap=1 # 0/1 + +# Focus dialog window when initially mapped +# FocusOnMapTransient=1 # 0/1 + +# Focus dialog window when initially mapped only if parent frame focused +# FocusOnMapTransientActive=1 # 0/1 + +# Colormap focus follows pointer +# PointerColormap=1 # 0/1 + +# Don't rotate the cursor for popup menus +# DontRotateMenuPointer=1 # 0/1 + +# Limit size of windows to screen +# LimitSize=1 # 0/1 + +# Limit position of windows to screen +# LimitPosition=1 # 0/1 + +# Let the Dock layer limit the workspace (incompatible with GNOME Panel) +# LimitByDockLayer=1 # 0/1 + +# Consider border frames when maximizing horizontally +# ConsiderHBorder=0 # 0/1 + +# Consider border frames when maximizing vertically +# ConsiderVBorder=0 # 0/1 + +# Center maximized windows which can't fit the screen (like terminals) +# CenterMaximizedWindows=0 # 0/1 + +# Maximized windows can be resized +# SizeMaximized=0 # 0/1 + +# Show position status window during move/resize +# ShowMoveSizeStatus=1 # 0/1 + +# Show name of current workspace while switching +# ShowWorkspaceStatus=1 # 0/1 + +# Display mini-icons on desktop for minimized windows +# MinimizeToDesktop=0 # 0/1 + +# Always maintain focus under mouse window (makes some keyboard support non-functional or unreliable +# StrongPointerFocus=0 # 0/1 + +# Opaque window move +# OpaqueMove=1 # 0/1 + +# Opaque window resize +# OpaqueResize=1 # 0/1 + +# Windows initially placed manually by user +# ManualPlacement=0 # 0/1 + +# Smart window placement (minimal overlap) +# SmartPlacement=1 # 0/1 + +# Center dialogs on owner window +# CenterTransientsOnOwner=1 # 0/1 + +# Menus track mouse even with no mouse buttons held +MenuMouseTracking=1 # 0/1 + +# Auto raise windows after delay +# AutoRaise=0 # 0/1 + +# Delay pointer focusing when mouse moves +# DelayPointerFocus=0 # 0/1 + +# Support win95 keyboard keys (Penguin/Meta/Win_L,R shows menu) +# Win95Keys=1 # 0/1 + +# Treat Super/Win modifier as Ctrl+Alt +# ModSuperIsCtrlAlt=1 # 0/1 + +# Support mouse wheel +# UseMouseWheel=0 # 0/1 + +# Show popup menus above mouse pointer +# ShowPopupsAbovePointer=0 # 0/1 + +# Send the clicks outside menus to target window +# ReplayMenuCancelClick=0 # 0/1 + +# Alt+Tab window switching +# QuickSwitch=1 # 0/1 + +# Alt+Tab to minimized windows +# QuickSwitchToMinimized=1 # 0/1 + +# Alt+Tab to hidden windows +# QuickSwitchToHidden=1 # 0/1 + +# Alt+Tab to windows on other workspaces +# QuickSwitchToAllWorkspaces=0 # 0/1 + +# Alt+Tab: group windows on current workspace +# QuickSwitchGroupWorkspaces=1 # 0/1 + +# Show all reachable icons when quick switching +# QuickSwitchAllIcons=1 # 0/1 + +# Show the window title above (all reachable) icons +# QuickSwitchTextFirst=0 # 0/1 + +# Attempt to create a small QuickSwitch window (1/3 instead of 3/5 of screen width) +# QuickSwitchSmallWindow=0 # 0/1 + +# Show the huge (48x48) of the window icon for the active window +# QuickSwitchHugeIcon=0 # 0/1 + +# Fill the rectangle highlighting the current icon +# QuickSwitchFillSelection=0 # 0/1 + +# Manage root window (EXPERIMENTAL - normally enabled!) +# GrabRootWindow=1 # 0/1 + +# Snap to nearest screen edge/window when moving windows +# SnapMove=1 # 0/1 + +# Workspace switches by moving mouse to left/right screen edge +# EdgeSwitch=0 # 0/1 + +# Workspace switches by moving mouse to left/right screen edge +# HorizontalEdgeSwitch=0 # 0/1 + +# Workspace switches by moving mouse to top/bottom screen edge +# VerticalEdgeSwitch=0 # 0/1 + +# Workspace switches continuously when moving mouse to screen edge +# ContinuousEdgeSwitch=1 # 0/1 + +# Reload menu files automatically +# AutoReloadMenus=1 # 0/1 + +# Show task bar +# ShowTaskBar=1 # 0/1 + +# Task bar at top of the screen +# TaskBarAtTop=0 # 0/1 + +# Keep the task bar below regular windows +# TaskBarKeepBelow=0 # 0/1 + +# Auto hide task bar after delay +# TaskBarAutoHide=0 # 0/1 + +# Show clock on task bar +# TaskBarShowClock=1 # 0/1 + +# Show APM status on task bar +TaskBarShowAPMStatus=0 # 0/1 + +# Show APM status on task bar in time-format +# TaskBarShowAPMTime=1 # 0/1 + +# Show mailbox status on task bar +TaskBarShowMailboxStatus=1 # 0/1 + +# Beep when new mail arrives +TaskBarMailboxStatusBeepOnNewMail=1 # 0/1 + +# Count messages in mailbox +# TaskBarMailboxStatusCountMessages=0 # 0/1 + +# Show workspace switching buttons on task bar +# TaskBarShowWorkspaces=1 # 0/1 + +# Show windows on the taskbar +# TaskBarShowWindows=1 # 0/1 + +# Show 'show desktop' button on taskbar +TaskBarShowShowDesktopButton=0 # 0/1 + +# Show windows in the tray +TaskBarShowTray=1 # 0/1 + +# Show windows from all workspaces on tray +TrayShowAllWindows=1 # 0/1 + +# Show windows from all workspaces on task bar +TaskBarShowAllWindows=0 # 0/1 + +# Show icons of windows on the task bar +# TaskBarShowWindowIcons=1 # 0/1 + +# Show 'Start' menu on task bar +TaskBarShowStartMenu=1 # 0/1 + +# Show 'window list' menu on task bar +TaskBarShowWindowListMenu=1 # 0/1 + +# Show CPU status on task bar (Linux & Solaris) +TaskBarShowCPUStatus=1 # 0/1 + +# Show network status on task bar (Linux only) +TaskBarShowNetStatus=0 # 0/1 + +# Use double-height task bar +TaskBarDoubleHeight=0 # 0/1 + +# Place workspace pager on left, not right +TaskBarWorkspacesLeft=1 # 0/1 + +# Execute taskbar applet commands (like MailCommand, ClockCommand, ...) on single click +# TaskBarLaunchOnSingleClick=1 # 0/1 + +# Move mouse when doing focusing in pointer focus mode +# WarpPointer=0 # 0/1 + +# Allow mouse actions on client windows (buggy with some programs) +# ClientWindowMouseActions=1 # 0/1 + +# Show programs submenu +# ShowProgramsMenu=0 # 0/1 + +# Show themes submenu +# ShowThemesMenu=1 # 0/1 + +# Show logout submenu +ShowLogoutMenu=1 # 0/1 + +# Show the help menu item +ShowHelp=0 # 0/1 + +# Show logout submenu +ShowLogoutSubMenu=0 # 0/1 + +# Show the about menu item +ShowAbout=1 # 0/1 + +# Show the run menu item +ShowRun=1 # 0/1 + +# Show the window menu item +# ShowWindowList=1 # 0/1 + +# Allow to switch a window to fullscreen +# AllowFullscreen=1 # 0/1 + +# Disable Imlib's image/pixmap caches +# DisableImlibCaches=1 # 0/1 + +# Enable address bar functionality in taskbar +# EnableAddressBar=1 # 0/1 + +# Show address bar in task bar +# ShowAddressBar=1 # 0/1 + +# Overrides automatic multiple byte detection +# MultiByte=1 # 0/1 + +# Confirm logout +ConfirmLogout=1 # 0/1 + +# Don't cut client windows by shapes set trough frame corner pixmap +# ShapesProtectClientWindow=1 # 0/1 + +# Use double buffering when redrawing the display +# DoubleBuffer=1 # 0/1 + +# Pointer motion distance before click gets interpreted as drag +# ClickMotionDistance=4 # [0-32] + +# Delay before click gets interpreted as drag +# ClickMotionDelay=200 # [0-2000] + +# Multiple click time +# MultiClickTime=400 # [0-5000] + +# Delay before activating menu items +# MenuActivateDelay=40 # [0-5000] + +# Delay before activating menu submenus +# SubmenuMenuActivateDelay=300 # [0-5000] + +# Maximal width of popup menus, 2/3 of the screen's width if set to zero +# MenuMaximalWidth=0 # [0-16384] + +# Delay before tooltip window is displayed +# ToolTipDelay=1000 # [0-5000] + +# Time before tooltip window is hidden (0 means never +# ToolTipTime=0 # [0-60000] + +# Delay before task bar is automatically hidden +# AutoHideDelay=300 # [0-5000] + +# Delay before windows are auto raised +# AutoRaiseDelay=400 # [0-5000] + +# Resistance in pixels when trying to move windows off the screen (10000 = infinite) +# EdgeResistance=32 # [0-10000] + +# Delay for pointer focus switching +# PointerFocusDelay=200 # [0-1000] + +# Distance in pixels before windows snap together +# SnapDistance=8 # [0-64] + +# Screen edge workspace switching delay +# EdgeSwitchDelay=600 # [0-5000] + +# Inital scroll bar autoscroll delay +# ScrollBarStartDelay=500 # [0-5000] + +# Scroll bar autoscroll delay +# ScrollBarDelay=30 # [0-5000] + +# Auto scroll start delay +# AutoScrollStartDelay=500 # [0-5000] + +# Auto scroll delay +# AutoScrollDelay=60 # [0-5000] + +# Time before workspace status window is hidden +# WorkspaceStatusTime=2500 # [0-2500] + +# Bitmask of root window button click to use in window manager +# UseRootButtons=255 # [0-255] + +# Bitmask of buttons that raise the window when pressed +# ButtonRaiseMask=1 # [0-255] + +# Desktop mouse-button click to show the window list menu +# DesktopWinMenuButton=0 # [0-20] + +# Desktop mouse-button click to show the window list +# DesktopWinListButton=2 # [0-20] + +# Desktop mouse-button click to show the root menu +# DesktopMenuButton=3 # [0-20] + +# TitleBar mouse-button double click to maximize the window +# TitleBarMaximizeButton=1 # [0-5] + +# TitleBar mouse-button double clock to rollup the window +# TitleBarRollupButton=2 # [0-5] + +# Preselect to Cancel (0) or the OK (1) button in message boxes +# MsgBoxDefaultAction=0 # [0-1] + +# Delay between new-mail checks. (seconds) +# MailCheckDelay=30 # [0-86400] + +# Width of CPU Monitor +# TaskBarCPUSamples=20 # [2-1000] + +# Delay between CPU Monitor samples in ms +# TaskBarCPUDelay=500 # [10-3600000] + +# Width of Net Monitor +# TaskBarNetSamples=20 # [2-1000] + +# Delay between Net Monitor samples in ms +# TaskBarNetDelay=500 # [10-3600000] + +# Primary screen for xinerama (taskbar, ...) +# XineramaPrimaryScreen=0 # [0-63] + +# Number of seconds the taskbar app will blink when requesting focus +# FocusRequestFlashTime=0 # [0-86400] + +# Minimal number of themes after which the Themes menu becomes nested (0=disabled) +# NestedThemeMenuMinNumber=15 # [0-1234] + +# Icon search path (colon separated) +IconPath="/usr/share/pixmaps" + +# Mailbox path (use $MAIL instead) +#MailBoxPath="" + +# Command to run on mailbox +MailCommand="xterm +sb -name mutt -title mutt -e mutt" + +# WM_CLASS to allow runonce for MailCommand +# MailClassHint="pine.XTerm" + +# Command to run when new mail arrives +# NewMailCommand="" + +# Command to lock display/screensaver +# LockCommand="xlock" + +# Command to run on clock +# ClockCommand="xclock -name icewm -title Clock" + +# WM_CLASS to allow runonce for ClockCommand +# ClockClassHint="icewm.XClock" + +# Command to select and run a program +# RunCommand="" + +# +# OpenCommand="" + +# Terminal emulator must accept -e option. +# TerminalCommand="xterm" + +# Command to start logout +# LogoutCommand="" + +# Command to cancel logout +# LogoutCancelCommand="" + +# Command to shutdown the system +# ShutdownCommand="shutdown -h now" + +# Command to reboot the system +# RebootCommand="shutdown -r now" + +# Command to run on CPU status +# CPUStatusCommand="xterm -name top -title Process\ Status -e top" + +# WM_CLASS to allow runonce for CPUStatusCommand +# CPUStatusClassHint="top.XTerm" + +# Command to run on Net status +# NetStatusCommand="xterm -name netstat -title 'Network Status' -e netstat -c" + +# WM_CLASS to allow runonce for NetStatusCommand +# NetStatusClassHint="netstat.XTerm" + +# Command to run for address bar entries +# AddressBarCommand="" + +# Network device to show status for +# NetworkStatusDevice="ppp0 eth0" + +# Clock Time format (strftime format string) +TimeFormat="%R" +# for 12 hour format +# TimeFormat="%r" + +# Alternate Clock Time format (e.g. for blinking effects) +# TimeFormatAlt="" + +# Clock Date format for tooltip (strftime format string) +DateFormat="%F %T" + +# List of battery names (directories) in /proc/acpi/battery to ignore. Useful when more slots are built-in, but only one battery is used +# AcpiIgnoreBatteries="" + +# +# KeyWinRaise="Alt+F1" + +# +# KeyWinOccupyAll="Alt+F2" + +# +# KeyWinLower="Alt+F3" + +# +# KeyWinClose="Alt+F4" + +# +# KeyWinRestore="Alt+F5" + +# +# KeyWinPrev="Alt+Shift+F6" + +# +# KeyWinNext="Alt+F6" + +# +# KeyWinMove="Alt+F7" + +# +# KeyWinSize="Alt+F8" + +# +# KeyWinMinimize="Alt+F9" + +# +# KeyWinMaximize="Alt+F10" + +# +# KeyWinMaximizeVert="Alt+Shift+F10" + +# +# KeyWinMaximizeHoriz="" + +# +# KeyWinFullscreen="Alt+F11" + +# +# KeyWinHide="Alt+Shift+F12" + +# +# KeyWinRollup="Alt+F12" + +# +# KeyWinMenu="Alt+Space" + +# +# KeyWinArrangeN="Ctrl+Alt+KP_8" + +# +# KeyWinArrangeNE="Ctrl+Alt+KP_9" + +# +# KeyWinArrangeE="Ctrl+Alt+KP_6" + +# +# KeyWinArrangeSE="Ctrl+Alt+KP_3" + +# +# KeyWinArrangeS="Ctrl+Alt+KP_2" + +# +# KeyWinArrangeSW="Ctrl+Alt+KP_1" + +# +# KeyWinArrangeW="Ctrl+Alt+KP_4" + +# +# KeyWinArrangeNW="Ctrl+Alt+KP_7" + +# +# KeyWinArrangeC="Ctrl+Alt+KP_5" + +# +# KeySysSwitchNext="Alt+Tab" + +# +# KeySysSwitchLast="Alt+Shift+Tab" + +# +# KeySysWinNext="Alt+Esc" + +# +# KeySysWinPrev="Alt+Shift+Esc" + +# +# KeySysWinMenu="Shift+Esc" + +# +# KeySysDialog="Alt+Ctrl+Del" + +# +# KeySysMenu="Ctrl+Esc" + +# +# KeySysWindowList="Alt+Ctrl+Esc" + +# +# KeySysWinListMenu="" + +# +# KeySysAddressBar="Alt+Ctrl+Space" + +# +# KeySysWorkspacePrev="Alt+Ctrl+Left" + +# +# KeySysWorkspaceNext="Alt+Ctrl+Right" + +# +# KeySysWorkspaceLast="Alt+Ctrl+Down" + +# +# KeySysWorkspacePrevTakeWin="Alt+Ctrl+Shift+Left" + +# +# KeySysWorkspaceNextTakeWin="Alt+Ctrl+Shift+Right" + +# +# KeySysWorkspaceLastTakeWin="Alt+Ctrl+Shift+Down" + +# +# KeySysWorkspace1="Alt+Ctrl+1" + +# +# KeySysWorkspace2="Alt+Ctrl+2" + +# +# KeySysWorkspace3="Alt+Ctrl+3" + +# +# KeySysWorkspace4="Alt+Ctrl+4" + +# +# KeySysWorkspace5="Alt+Ctrl+5" + +# +# KeySysWorkspace6="Alt+Ctrl+6" + +# +# KeySysWorkspace7="Alt+Ctrl+7" + +# +# KeySysWorkspace8="Alt+Ctrl+8" + +# +# KeySysWorkspace9="Alt+Ctrl+9" + +# +# KeySysWorkspace10="Alt+Ctrl+0" + +# +# KeySysWorkspace11="Alt+Ctrl+[" + +# +# KeySysWorkspace12="Alt+Ctrl+]" + +# +# KeySysWorkspace1TakeWin="Alt+Ctrl+Shift+1" + +# +# KeySysWorkspace2TakeWin="Alt+Ctrl+Shift+2" + +# +# KeySysWorkspace3TakeWin="Alt+Ctrl+Shift+3" + +# +# KeySysWorkspace4TakeWin="Alt+Ctrl+Shift+4" + +# +# KeySysWorkspace5TakeWin="Alt+Ctrl+Shift+5" + +# +# KeySysWorkspace6TakeWin="Alt+Ctrl+Shift+6" + +# +# KeySysWorkspace7TakeWin="Alt+Ctrl+Shift+7" + +# +# KeySysWorkspace8TakeWin="Alt+Ctrl+Shift+8" + +# +# KeySysWorkspace9TakeWin="Alt+Ctrl+Shift+9" + +# +# KeySysWorkspace10TakeWin="Alt+Ctrl+Shift+0" + +# +# KeySysWorkspace11TakeWin="Alt+Ctrl+Shift+[" + +# +# KeySysWorkspace12TakeWin="Alt+Ctrl+Shift+]" + +# +# KeySysTileVertical="Alt+Shift+F2" + +# +# KeySysTileHorizontal="Alt+Shift+F3" + +# +# KeySysCascade="Alt+Shift+F4" + +# +# KeySysArrange="Alt+Shift+F5" + +# +# KeySysArrangeIcons="Alt+Shift+F8" + +# +# KeySysMinimizeAll="Alt+Shift+F9" + +# +# KeySysHideAll="Alt+Shift+F11" + +# +# KeySysUndoArrange="Alt+Shift+F7" + +# +# KeySysShowDesktop="Alt+Ctrl+d" + +# + +# ----------------------------------------------------------- +# Themable preferences. Themes will override these. +# To override the themes, place them in ~/.icewm/prefoverride +# ----------------------------------------------------------- + +# Does it support the 'O' title bar button images (for mouse rollover) +# RolloverButtonsSupported=0 # 0/1 + +# Task bar clock/APM uses nice pixmapped LCD display (but then it doesn't display correctly in many languages anymore, e.g. for Japanese and Korean it works only when a real font is used and not the LEDs +# TaskBarClockLeds=0 # 0/1 + +# Surround the tray with plastic border +# TrayDrawBevel=0 # 0/1 + +# Draw window title centered (obsoleted by TitleBarJustify) +# TitleBarCentered=0 # 0/1 + +# Join title*S and title*T +# TitleBarJoinLeft=0 # 0/1 + +# Join title*T and title*B +# TitleBarJoinRight=0 # 0/1 + +# Show application icon over menu button +# ShowMenuButtonIcon=1 # 0/1 + +# Horizontal window border +# BorderSizeX=6 # [0-128] + +# Vertical window border +# BorderSizeY=6 # [0-128] + +# Horizontal dialog window border +# DlgBorderSizeX=2 # [0-128] + +# Vertical dialog window border +# DlgBorderSizeY=2 # [0-128] + +# Resize corner width +# CornerSizeX=24 # [0-64] + +# Resize corner height +# CornerSizeY=24 # [0-64] + +# Title bar height +# TitleBarHeight=20 # [0-128] + +# Justification of the window title +# TitleBarJustify=0 # [0-100] + +# Horizontal offset for the window title text +# TitleBarHorzOffset=0 # [-128-128] + +# Vertical offset for the window title text +# TitleBarVertOffset=0 # [-128-128] + +# Scrollbar width +# ScrollBarX=16 # [0-64] + +# Scrollbar (button) height +# ScrollBarY=16 # [0-64] + +# Menu icon size +# MenuIconSize=16 # [8-128] + +# Dimension of the small icons +# SmallIconSize=16 # [8-128] + +# Dimension of the large icons +# LargeIconSize=32 # [8-128] + +# Dimension of the large icons +# HugeIconSize=48 # [8-128] + +# Horizontal margin of the quickswitch window +# QuickSwitchHorzMargin=3 # [0-64] + +# Vertical margin of the quickswitch window +# QuickSwitchVertMargin=3 # [0-64] + +# Vertical margin in the quickswitch window +# QuickSwitchIconMargin=4 # [0-64] + +# Distance between the active icon and it's border +# QuickSwitchIconBorder=2 # [0-64] + +# Height of the separator between (all reachable) icons and text, 0 to avoid it +# QuickSwitchSeparatorSize=6 # [0-64] + +# Theme author, e-mail address, credits +# ThemeAuthor="" + +# Description of the theme, credits +# ThemeDescription="" + +# Titlebar buttons from left to right (x=close, m=max, i=min, h=hide, r=rollup, s=sysmenu, d=depth) +# TitleButtonsLeft="s" + +# Titlebar buttons from right to left (x=close, m=max, i=min, h=hide, r=rollup, s=sysmenu, d=depth) +# TitleButtonsRight="xmir" + +# Titlebar buttons supported by theme (x,m,i,r,h,s,d) +# TitleButtonsSupported="xmis" + +# +# TitleFontName="-*-sans-medium-r-*-*-*-120-*-*-*-*-*-*" + +# +# TitleFontNameXft="sans-serif:size=12" + +# +# MenuFontName="-*-sans-bold-r-*-*-*-100-*-*-*-*-*-*" + +# +# MenuFontNameXft="sans-serif:size=10:bold" + +# +# StatusFontName="-*-monospace-bold-r-*-*-*-120-*-*-*-*-*-*" + +# +# StatusFontNameXft="monospace:size=12:bold" + +# +# QuickSwitchFontName="-*-monospace-bold-r-*-*-*-120-*-*-*-*-*-*" + +# +# QuickSwitchFontNameXft="monospace:size=12:bold" + +# +# NormalButtonFontName="-*-sans-medium-r-*-*-*-120-*-*-*-*-*-*" + +# +# NormalButtonFontNameXft="sans-serif:size=12" + +# +# ActiveButtonFontName="-*-sans-bold-r-*-*-*-120-*-*-*-*-*-*" + +# +# ActiveButtonFontNameXft="sans-serif:size=12:bold" + +# +# NormalTaskBarFontName="-*-sans-medium-r-*-*-*-120-*-*-*-*-*-*" + +# +# NormalTaskBarFontNameXft="sans-serif:size=12" + +# +# ActiveTaskBarFontName="-*-sans-bold-r-*-*-*-120-*-*-*-*-*-*" + +# +# ActiveTaskBarFontNameXft="sans-serif:size=12:bold" + +# fallback: NormalButtonFontName +# ToolButtonFontName="-*-sans-medium-r-*-*-*-120-*-*-*-*-*-*" + +# fallback: NormalButtonFontName +# ToolButtonFontNameXft="sans-serif:size=12" + +# fallback: NormalButtonFontName +# NormalWorkspaceFontName="-*-sans-medium-r-*-*-*-120-*-*-*-*-*-*" + +# fallback: NormalButtonFontName +# NormalWorkspaceFontNameXft="sans-serif:size=12" + +# fallback: ActiveButtonFontName +# ActiveWorkspaceFontName="-*-sans-medium-r-*-*-*-120-*-*-*-*-*-*" + +# fallback: ActiveButtonFontName +# ActiveWorkspaceFontNameXft="sans-serif:size=12" + +# +# MinimizedWindowFontName="-*-sans-medium-r-*-*-*-120-*-*-*-*-*-*" + +# +# MinimizedWindowFontNameXft="sans-serif:size=12" + +# +# ListBoxFontName="-*-sans-medium-r-*-*-*-120-*-*-*-*-*-*" + +# +# ListBoxFontNameXft="sans-serif:size=12" + +# +# ToolTipFontName="-*-sans-medium-r-*-*-*-120-*-*-*-*-*-*" + +# +# ToolTipFontNameXft="sans-serif:size=12" + +# +# ClockFontName="-*-monospace-medium-r-*-*-*-140-*-*-*-*-*-*" + +# +# ClockFontNameXft="monospace:size=12" + +# +# ApmFontName="-*-monospace-medium-r-*-*-*-140-*-*-*-*-*-*" + +# +# ApmFontNameXft="monospace:size=12" + +# +# InputFontName="-*-monospace-medium-r-*-*-*-140-*-*-*-*-*-*" + +# +# InputFontNameXft="monospace:size=12" + +# +# LabelFontName="-*-sans-medium-r-*-*-*-140-*-*-*-*-*-*" + +# +# LabelFontNameXft="sans-serif:size=12" + +# Background of dialog windows +# ColorDialog="rgb:C0/C0/C0" + +# Border of inactive windows +# ColorNormalBorder="rgb:C0/C0/C0" + +# Border of active windows +# ColorActiveBorder="rgb:C0/C0/C0" + +# Background of regular buttons +# ColorNormalButton="rgb:C0/C0/C0" + +# Textcolor of regular buttons +# ColorNormalButtonText="rgb:00/00/00" + +# Background of pressed buttons +# ColorActiveButton="rgb:E0/E0/E0" + +# Textcolor of pressed buttons +# ColorActiveButtonText="rgb:00/00/00" + +# Background of titlebar buttons +# ColorNormalTitleButton="rgb:C0/C0/C0" + +# Textcolor of titlebar buttons +# ColorNormalTitleButtonText="rgb:00/00/00" + +# Background of toolbar buttons, ColorNormalButton is used if empty +# ColorToolButton="" + +# Textcolor of toolbar buttons, ColorNormalButtonText is used if empty +# ColorToolButtonText="" + +# Background of workspace buttons, ColorNormalButton is used if empty +# ColorNormalWorkspaceButton="" + +# Textcolor of workspace buttons, ColorNormalButtonText is used if empty +# ColorNormalWorkspaceButtonText="" + +# Background of the active workspace button, ColorActiveButton is used if empty +# ColorActiveWorkspaceButton="" + +# Textcolor of the active workspace button, ColorActiveButtonText is used if empty +# ColorActiveWorkspaceButtonText="" + +# Background of the titlebar of regular windows +# ColorNormalTitleBar="rgb:80/80/80" + +# Textcolor of the titlebar of regular windows +# ColorNormalTitleBarText="rgb:00/00/00" + +# Textshadow of the titlebar of regular windows +# ColorNormalTitleBarShadow="" + +# Background of the titlebar of active windows +# ColorActiveTitleBar="rgb:00/00/A0" + +# Textcolor of the titlebar of active windows +# ColorActiveTitleBarText="rgb:FF/FF/FF" + +# Textshadow of the titlebar of active windows +# ColorActiveTitleBarShadow="" + +# Background for mini icons of regular windows +# ColorNormalMinimizedWindow="rgb:C0/C0/C0" + +# Textcolor for mini icons of regular windows +# ColorNormalMinimizedWindowText="rgb:00/00/00" + +# Background for mini icons of active windows +# ColorActiveMinimizedWindow="rgb:E0/E0/E0" + +# Textcolor for mini icons of active windows +# ColorActiveMinimizedWindowText="rgb:00/00/00" + +# Background of pop-up menus +# ColorNormalMenu="rgb:C0/C0/C0" + +# Textcolor of regular menu items +# ColorNormalMenuItemText="rgb:00/00/00" + +# Background of selected menu item, leave empty to force transparency +# ColorActiveMenuItem="rgb:A0/A0/A0" + +# Textcolor of selected menu items +# ColorActiveMenuItemText="rgb:00/00/00" + +# Textcolor of disabled menu items +# ColorDisabledMenuItemText="rgb:80/80/80" + +# Shadow of regular menu items +# ColorDisabledMenuItemShadow="" + +# Background of move/resize status window +# ColorMoveSizeStatus="rgb:C0/C0/C0" + +# Textcolor of move/resize status window +# ColorMoveSizeStatusText="rgb:00/00/00" + +# Background of the quick switch window +# ColorQuickSwitch="rgb:C0/C0/C0" + +# Textcolor in the quick switch window +# ColorQuickSwitchText="rgb:00/00/00" + +# Rectangle arround the active icon in the quick switch window +# ColorQuickSwitchActive="" + +# Background of the taskbar +# ColorDefaultTaskBar="rgb:C0/C0/C0" + +# Background for task buttons of regular windows +# ColorNormalTaskBarApp="rgb:C0/C0/C0" + +# Textcolor for task buttons of regular windows +# ColorNormalTaskBarAppText="rgb:00/00/00" + +# Background for task buttons of the active window +# ColorActiveTaskBarApp="rgb:E0/E0/E0" + +# Textcolor for task buttons of the active window +# ColorActiveTaskBarAppText="rgb:00/00/00" + +# Background for task buttons of minimized windows +# ColorMinimizedTaskBarApp="rgb:A0/A0/A0" + +# Textcolor for task buttons of minimized windows +# ColorMinimizedTaskBarAppText="rgb:00/00/00" + +# Background for task buttons of windows on other workspaces +# ColorInvisibleTaskBarApp="rgb:80/80/80" + +# Textcolor for task buttons of windows on other workspaces +# ColorInvisibleTaskBarAppText="rgb:00/00/00" + +# Scrollbar background (sliding area) +# ColorScrollBar="rgb:A0/A0/A0" + +# Background of the slider button in scrollbars +# ColorScrollBarSlider="rgb:C0/C0/C0" + +# Background of the arrow buttons in scrollbars +# ColorScrollBarButton="rgb:C0/C0/C0" + +# Background of the arrow buttons in scrollbars (obsolete) +# ColorScrollBarArrow="rgb:C0/C0/C0" + +# Color of active arrows on scrollbar buttons +# ColorScrollBarButtonArrow="rgb:00/00/00" + +# Color of inactive arrows on scrollbar buttons +# ColorScrollBarInactiveArrow="rgb:80/80/80" + +# Background of listboxes +# ColorListBox="rgb:C0/C0/C0" + +# Textcolor in listboxes +# ColorListBoxText="rgb:00/00/00" + +# Background of selected listbox items +# ColorListBoxSelection="rgb:80/80/80" + +# Textcolor of selected listbox items +# ColorListBoxSelectionText="rgb:00/00/00" + +# Background of tooltips +# ColorToolTip="rgb:E0/E0/00" + +# Textcolor of tooltips +# ColorToolTipText="rgb:00/00/00" + +# Background of labels, leave empty to force transparency +# ColorLabel="rgb:C0/C0/C0" + +# Textcolor of labels +# ColorLabelText="rgb:00/00/00" + +# Background of text entry fields (e.g. the addressbar) +# ColorInput="rgb:FF/FF/FF" + +# Textcolor of text entry fields (e.g. the addressbar) +# ColorInputText="rgb:00/00/00" + +# Background of selected text in an entry field +# ColorInputSelection="rgb:80/80/80" + +# Selected text in an entry field +# ColorInputSelectionText="rgb:00/00/00" + +# Background of non-LCD clock, leave empty to force transparency +# ColorClock="rgb:00/00/00" + +# Background of non-LCD monitor +# ColorClockText="rgb:00/FF/00" + +# Background of APM monitor, leave empty to force transparency +# ColorApm="rgb:00/00/00" + +# Textcolor of APM monitor +# ColorApmText="rgb:00/FF/00" + +# User load on the CPU monitor +# ColorCPUStatusUser="rgb:00/FF/00" + +# System load on the CPU monitor +# ColorCPUStatusSystem="rgb:FF/00/00" + +# Interrupts on the CPU monitor +# ColorCPUStatusInterrupts="rgb:FF/FF/00" + +# IO Wait on the CPU monitor +# ColorCPUStatusIoWait="rgb:60/00/60" + +# Soft Interrupts on the CPU monitor +# ColorCPUStatusSoftIrq="rgb:00/FF/FF" + +# Nice load on the CPU monitor +# ColorCPUStatusNice="rgb:00/00/FF" + +# Idle (non) load on the CPU monitor, leave empty to force transparency +# ColorCPUStatusIdle="rgb:00/00/00" + +# Outgoing load on the network monitor +# ColorNetSend="rgb:FF/FF/00" + +# Incoming load on the network monitor +# ColorNetReceive="rgb:FF/00/FF" + +# Idle (non) load on the network monitor, leave empty to force transparency +# ColorNetIdle="rgb:00/00/00" + +# + +WorkspaceNames="1", "2", "3", "4", "5", "6" + +# +# icewmbg preferences +# +# IMPORTANT: You MUST run icewmbg (probably before icewm) +# to set the background! +# + +# Display desktop background centered and not tiled +# DesktopBackgroundCenter=0 # 0/1 + +# Support for semitransparent terminals like Eterm or gnome-terminal +# SupportSemitransparency=1 # 0/1 + +# Desktop background scaled to full screen +# DesktopBackgroundScaled=0 # 0/1 + +# Desktop background color +# DesktopBackgroundColor="rgb:00/20/40" + +# Desktop background image +# DesktopBackgroundImage="" + +# Color to announce for semi-transparent windows +# DesktopTransparencyColor="" + +# Image to announce for semi-transparent windows +# DesktopTransparencyImage="" + +# + Added: contrib/1.1/icewm/current/sources/icewm-programs =================================================================== --- contrib/1.1/icewm/current/sources/icewm-programs 2004-09-12 10:32:44 UTC (rev 4367) +++ contrib/1.1/icewm/current/sources/icewm-programs 2004-09-12 11:09:02 UTC (rev 4368) @@ -0,0 +1,5 @@ +prog "Firefox Web Browser" firefox.png firefox +prog "Gqview Image Viewer" gqview.png gqview +prog "Mutt Mail" mutt xterm +sb -name mutt -title mutt -e mutt +prog "Sylpheed Mail" sylpheed.png sylpheed +prog "Xmms Multimedia Player" xmms xmms Modified: contrib/1.1/icewm/current/specs/icewm.spec =================================================================== --- contrib/1.1/icewm/current/specs/icewm.spec 2004-09-12 10:32:44 UTC (rev 4367) +++ contrib/1.1/icewm/current/specs/icewm.spec 2004-09-12 11:09:02 UTC (rev 4368) @@ -1,10 +1,13 @@ Summary: A fast, small X Window System window manager. Name: icewm Version: 1.2.16 -Release: 1jh +Release: 2jh License: LGPL Group: contrib Source0: %{name}-%{version}.tar.gz +Source1: icewm-menu +Source2: icewm-preferences +Source3: icewm-programs URL: http://icewm.sourceforge.net BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: pkgconfig font-utils gcc-c++ xorg-x11-devel gettext @@ -47,6 +50,11 @@ DOCDIR=$RPM_BUILD_ROOT%{_docdir} \ KDEDIR=$RPM_BUILD_ROOT%{_datadir} +# install our default configuration +install -m 644 %{SOURCE1} %{buildroot}%{_datadir}/icewm/menu +install -m 644 %{SOURCE2} %{buildroot}%{_datadir}/icewm/preferences +install -m 644 %{SOURCE3} %{buildroot}%{_datadir}/icewm/programs + %find_lang %{name} @@ -62,6 +70,9 @@ %changelog +* Sun Sep 12 2004 Jaakko Heinonen 1.2.16-2jh +- add default configuration + * Mon Aug 30 2004 Jaakko Heinonen - tinysofa - enable anti-aliasing Copied: contrib/1.1/icewm/releases (from rev 4222, contrib/1.1/icewm/release) From svn at tinysofa.org Sun Sep 12 11:20:02 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 12 Sep 2004 21:20:02 +1000 (EST) Subject: [tinysofa-svn] r4369 - contrib/1.1/gqview/current/specs Message-ID: <20040912112002.3A9C54E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-12 21:20:02 +1000 (Sun, 12 Sep 2004) New Revision: 4369 Modified: contrib/1.1/gqview/current/specs/gqview.spec Log: - add BuildRequires: gtk12-devel glib12-devel Modified: contrib/1.1/gqview/current/specs/gqview.spec =================================================================== --- contrib/1.1/gqview/current/specs/gqview.spec 2004-09-12 11:09:02 UTC (rev 4368) +++ contrib/1.1/gqview/current/specs/gqview.spec 2004-09-12 11:20:02 UTC (rev 4369) @@ -13,6 +13,7 @@ Requires: gtk12+ >= 1.2.10 glib12 >= 1.2.10 Requires: gdk-pixbuf >= 0.16.0 BuildRequires: gdk-pixbuf-devel xorg-x11-devel gettext libpng-devel +BuildRequires: gtk12-devel glib12-devel %description GQview is a browser for graphics files. From svn at tinysofa.org Sun Sep 12 11:49:53 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 12 Sep 2004 21:49:53 +1000 (EST) Subject: [tinysofa-svn] r4370 - contrib/1.1/gqview/current/specs Message-ID: <20040912114953.ECB4A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-12 21:49:53 +1000 (Sun, 12 Sep 2004) New Revision: 4370 Modified: contrib/1.1/gqview/current/specs/gqview.spec Log: - fix BR Modified: contrib/1.1/gqview/current/specs/gqview.spec =================================================================== --- contrib/1.1/gqview/current/specs/gqview.spec 2004-09-12 11:20:02 UTC (rev 4369) +++ contrib/1.1/gqview/current/specs/gqview.spec 2004-09-12 11:49:53 UTC (rev 4370) @@ -13,7 +13,7 @@ Requires: gtk12+ >= 1.2.10 glib12 >= 1.2.10 Requires: gdk-pixbuf >= 0.16.0 BuildRequires: gdk-pixbuf-devel xorg-x11-devel gettext libpng-devel -BuildRequires: gtk12-devel glib12-devel +BuildRequires: gtk12+-devel glib12-devel %description GQview is a browser for graphics files. From svn at tinysofa.org Sun Sep 12 12:38:36 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 12 Sep 2004 22:38:36 +1000 (EST) Subject: [tinysofa-svn] r4371 - in contrib/1.1/xawtv/current: sources specs Message-ID: <20040912123836.6BA7E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-12 22:38:36 +1000 (Sun, 12 Sep 2004) New Revision: 4371 Added: contrib/1.1/xawtv/current/sources/xawtv-3.94-config.patch contrib/1.1/xawtv/current/sources/xawtv-3.94.tar.gz Removed: contrib/1.1/xawtv/current/sources/xawtv-3.88-config.patch contrib/1.1/xawtv/current/sources/xawtv_3.88.tar.gz Modified: contrib/1.1/xawtv/current/specs/xawtv.spec Log: - new upstream - update BuildRequires Deleted: contrib/1.1/xawtv/current/sources/xawtv-3.88-config.patch =================================================================== --- contrib/1.1/xawtv/current/sources/xawtv-3.88-config.patch 2004-09-12 11:49:53 UTC (rev 4370) +++ contrib/1.1/xawtv/current/sources/xawtv-3.88-config.patch 2004-09-12 12:38:36 UTC (rev 4371) @@ -1,89 +0,0 @@ ---- xawtv-3.88/console/Subdir.mk.config 2003-02-14 15:14:04.000000000 +0100 -+++ xawtv-3.88/console/Subdir.mk 2003-05-06 10:54:26.000000000 +0200 -@@ -76,7 +76,7 @@ - $(THREAD_LIBS) $(CURSES_LIBS) $(LIRC_LIBS) $(ALSA_LIBS) \ - $(FS_LIBS) -ljpeg -lm - console/ttv : LDLIBS += $(THREAD_LIBS) $(AA_LIBS) -ljpeg -lm --console/scantv : LDLIBS += $(THREAD_LIBS) $(VBI_LIBS) -ljpeg -+console/scantv : LDLIBS += $(THREAD_LIBS) -L. $(VBI_LIBS) -ljpeg - console/streamer : LDLIBS += $(THREAD_LIBS) -ljpeg -lm - console/webcam : LDLIBS += $(THREAD_LIBS) -ljpeg -lm - console/radio : LDLIBS += $(CURSES_LIBS) ---- xawtv-3.88/libng/plugins/Subdir.mk.config 2003-02-14 15:14:05.000000000 +0100 -+++ xawtv-3.88/libng/plugins/Subdir.mk 2003-05-06 10:54:26.000000000 +0200 -@@ -47,7 +47,7 @@ - - install:: - $(INSTALL_DIR) $(libdir) -- $(INSTALL_PROGRAM) -s $(TARGETS-plugins) $(libdir) -+ $(INSTALL_PROGRAM) $(TARGETS-plugins) $(libdir) - rm -f $(GONE-plugins) - - clean:: ---- xawtv-3.88/vbistuff/Subdir.mk.config 2003-02-14 15:14:08.000000000 +0100 -+++ xawtv-3.88/vbistuff/Subdir.mk 2003-05-06 10:54:26.000000000 +0200 -@@ -25,14 +25,14 @@ - vbistuff/ntsc-cc: vbistuff/ntsc-cc.o - - # libraries to link --vbistuff/alevtd : LDLIBS += $(VBI_LIBS) -+vbistuff/alevtd : LDLIBS += -L. $(VBI_LIBS) - vbistuff/ntsc-cc : LDLIBS += $(ATHENA_LIBS) - - # global targets - all:: $(TARGETS-vbistuff) - - install:: -- $(INSTALL_PROGRAM) -s $(TARGETS-vbistuff) $(bindir) -+ $(INSTALL_PROGRAM) $(TARGETS-vbistuff) $(bindir) - - clean:: - rm -f $(HTML-alevtd) ---- xawtv-3.88/x11/Subdir.mk.config 2003-03-28 12:52:49.000000000 +0100 -+++ xawtv-3.88/x11/Subdir.mk 2003-05-06 10:59:29.000000000 +0200 -@@ -94,11 +94,11 @@ - # libraries to link - x11/xawtv : LDLIBS += \ - $(THREAD_LIBS) $(CURSES_LIBS) $(LIRC_LIBS) $(ALSA_LIBS) \ -- $(ATHENA_LIBS) $(VBI_LIBS) $(GL_LIBS) -ljpeg -lm -+ $(ATHENA_LIBS) -L. $(VBI_LIBS) $(GL_LIBS) -ljpeg -lm - x11/motv : LDLIBS += \ - $(THREAD_LIBS) $(CURSES_LIBS) $(LIRC_LIBS) $(ALSA_LIBS) \ -- $(MOTIF_LIBS) $(VBI_LIBS) $(GL_LIBS) -ljpeg -lm --x11/mtt : LDLIBS += $(THREAD_LIBS) $(MOTIF_LIBS) $(VBI_LIBS) -ljpeg -+ $(MOTIF_LIBS) -L. $(VBI_LIBS) $(GL_LIBS) -ljpeg -lm -+x11/mtt : LDLIBS += $(THREAD_LIBS) $(MOTIF_LIBS) -L. $(VBI_LIBS) -ljpeg - x11/v4lctl : LDLIBS += $(THREAD_LIBS) $(ATHENA_LIBS) -ljpeg -lm - x11/pia : LDLIBS += $(ATHENA_LIBS) $(GL_LIBS) -ljpeg -lm - x11/rootv : LDLIBS += $(ATHENA_LIBS) -@@ -141,7 +141,7 @@ - - ifeq ($(FOUND_X11),yes) - install:: -- $(INSTALL_PROGRAM) -s $(TARGETS-x11) $(bindir) -+ $(INSTALL_PROGRAM) $(TARGETS-x11) $(bindir) - $(INSTALL_DIR) $(resdir)/app-defaults - $(INSTALL_DATA) $(srcdir)/x11/Xawtv.ad $(resdir)/app-defaults/Xawtv - endif ---- xawtv-3.88/Makefile.in.config 2003-04-16 17:58:05.000000000 +0200 -+++ xawtv-3.88/Makefile.in 2003-05-06 10:54:26.000000000 +0200 -@@ -19,7 +19,7 @@ - CC := @CC@ - CXX := @CXX@ - INSTALL := @INSTALL@ --INSTALL_PROGRAM := @INSTALL_PROGRAM@ -s -+INSTALL_PROGRAM := @INSTALL_PROGRAM@ - INSTALL_DATA := @INSTALL_DATA@ - INSTALL_DIR := @INSTALL@ -d -m 755 - ---- xawtv-3.88/configure.config 2003-04-15 14:37:29.000000000 +0200 -+++ xawtv-3.88/configure 2003-05-06 10:54:26.000000000 +0200 -@@ -5287,7 +5287,7 @@ - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-lzvbi $LIBS" -+LIBS="-L. -lzvbi $LIBS" - cat >conftest.$ac_ext <<_ACEOF - #line $LINENO "configure" - /* confdefs.h. */ Added: contrib/1.1/xawtv/current/sources/xawtv-3.94-config.patch =================================================================== --- contrib/1.1/xawtv/current/sources/xawtv-3.94-config.patch 2004-09-12 11:49:53 UTC (rev 4370) +++ contrib/1.1/xawtv/current/sources/xawtv-3.94-config.patch 2004-09-12 12:38:36 UTC (rev 4371) @@ -0,0 +1,89 @@ +--- xawtv-3.94/x11/Subdir.mk.config 2004-01-12 19:56:17.000000000 +0200 ++++ xawtv-3.94/x11/Subdir.mk 2004-09-12 15:31:07.642104736 +0300 +@@ -98,11 +98,11 @@ + # libraries to link + x11/xawtv : LDLIBS += \ + $(THREAD_LIBS) $(CURSES_LIBS) $(LIRC_LIBS) $(ALSA_LIBS) \ +- $(ATHENA_LIBS) $(VBI_LIBS) $(GL_LIBS) -ljpeg -lm ++ $(ATHENA_LIBS) -L. $(VBI_LIBS) $(GL_LIBS) -ljpeg -lm + x11/motv : LDLIBS += \ + $(THREAD_LIBS) $(CURSES_LIBS) $(LIRC_LIBS) $(ALSA_LIBS) \ +- $(MOTIF_LIBS) $(VBI_LIBS) $(GL_LIBS) -ljpeg -lm +-x11/mtt : LDLIBS += $(THREAD_LIBS) $(MOTIF_LIBS) $(VBI_LIBS) -ljpeg ++ $(MOTIF_LIBS) -L. $(VBI_LIBS) $(GL_LIBS) -ljpeg -lm ++x11/mtt : LDLIBS += $(THREAD_LIBS) $(MOTIF_LIBS) -L. $(VBI_LIBS) -ljpeg + x11/v4lctl : LDLIBS += $(THREAD_LIBS) $(ATHENA_LIBS) -ljpeg -lm + x11/pia : LDLIBS += $(ATHENA_LIBS) $(GL_LIBS) -ljpeg -lm + x11/rootv : LDLIBS += $(ATHENA_LIBS) +@@ -145,7 +145,7 @@ + + ifeq ($(FOUND_X11),yes) + install:: +- $(INSTALL_PROGRAM) -s $(TARGETS-x11) $(bindir) ++ $(INSTALL_PROGRAM) $(TARGETS-x11) $(bindir) + $(INSTALL_DIR) $(resdir)/app-defaults + $(INSTALL_DATA) $(srcdir)/x11/Xawtv.ad $(resdir)/app-defaults/Xawtv + endif +--- xawtv-3.94/console/Subdir.mk.config 2003-02-14 16:14:04.000000000 +0200 ++++ xawtv-3.94/console/Subdir.mk 2004-09-12 15:31:07.639105192 +0300 +@@ -76,7 +76,7 @@ + $(THREAD_LIBS) $(CURSES_LIBS) $(LIRC_LIBS) $(ALSA_LIBS) \ + $(FS_LIBS) -ljpeg -lm + console/ttv : LDLIBS += $(THREAD_LIBS) $(AA_LIBS) -ljpeg -lm +-console/scantv : LDLIBS += $(THREAD_LIBS) $(VBI_LIBS) -ljpeg ++console/scantv : LDLIBS += $(THREAD_LIBS) -L. $(VBI_LIBS) -ljpeg + console/streamer : LDLIBS += $(THREAD_LIBS) -ljpeg -lm + console/webcam : LDLIBS += $(THREAD_LIBS) -ljpeg -lm + console/radio : LDLIBS += $(CURSES_LIBS) +--- xawtv-3.94/libng/plugins/Subdir.mk.config 2003-02-14 16:14:05.000000000 +0200 ++++ xawtv-3.94/libng/plugins/Subdir.mk 2004-09-12 15:31:07.640105040 +0300 +@@ -47,7 +47,7 @@ + + install:: + $(INSTALL_DIR) $(libdir) +- $(INSTALL_PROGRAM) -s $(TARGETS-plugins) $(libdir) ++ $(INSTALL_PROGRAM) $(TARGETS-plugins) $(libdir) + rm -f $(GONE-plugins) + + clean:: +--- xawtv-3.94/configure.config 2004-08-18 18:48:30.000000000 +0300 ++++ xawtv-3.94/configure 2004-09-12 15:35:05.473948800 +0300 +@@ -5710,7 +5710,7 @@ + echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lzvbi $LIBPTHREAD $LIBS" ++LIBS="-L. -lzvbi $LIBPTHREAD $LIBS" + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +--- xawtv-3.94/Makefile.in.config 2004-04-22 17:52:29.000000000 +0300 ++++ xawtv-3.94/Makefile.in 2004-09-12 15:31:07.648103824 +0300 +@@ -19,7 +19,7 @@ + CC := @CC@ + CXX := @CXX@ + INSTALL := @INSTALL@ +-INSTALL_PROGRAM := @INSTALL_PROGRAM@ -s ++INSTALL_PROGRAM := @INSTALL_PROGRAM@ + INSTALL_DATA := @INSTALL_DATA@ + INSTALL_DIR := @INSTALL@ -d -m 755 + +--- xawtv-3.94/vbistuff/Subdir.mk.config 2003-02-14 16:14:08.000000000 +0200 ++++ xawtv-3.94/vbistuff/Subdir.mk 2004-09-12 15:31:07.641104888 +0300 +@@ -25,14 +25,14 @@ + vbistuff/ntsc-cc: vbistuff/ntsc-cc.o + + # libraries to link +-vbistuff/alevtd : LDLIBS += $(VBI_LIBS) ++vbistuff/alevtd : LDLIBS += -L. $(VBI_LIBS) + vbistuff/ntsc-cc : LDLIBS += $(ATHENA_LIBS) + + # global targets + all:: $(TARGETS-vbistuff) + + install:: +- $(INSTALL_PROGRAM) -s $(TARGETS-vbistuff) $(bindir) ++ $(INSTALL_PROGRAM) $(TARGETS-vbistuff) $(bindir) + + clean:: + rm -f $(HTML-alevtd) Added: contrib/1.1/xawtv/current/sources/xawtv-3.94.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/xawtv/current/sources/xawtv-3.94.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Deleted: contrib/1.1/xawtv/current/sources/xawtv_3.88.tar.gz =================================================================== (Binary files differ) Modified: contrib/1.1/xawtv/current/specs/xawtv.spec =================================================================== --- contrib/1.1/xawtv/current/specs/xawtv.spec 2004-09-12 11:49:53 UTC (rev 4370) +++ contrib/1.1/xawtv/current/specs/xawtv.spec 2004-09-12 12:38:36 UTC (rev 4371) @@ -7,18 +7,18 @@ Name: xawtv Summary: A TV application for video4linux compliant devices. -Version: 3.88 +Version: 3.94 Release: 1jh Group: Applications/Multimedia License: GPL URL: http://bytesex.org/xawtv/ -Source0: http://bytesex.org/xawtv/%{name}_%{version}.tar.gz +Source0: http://bytesex.org/xawtv/%{name}-%{version}.tar.gz Source1: http://bytesex.org/xawtv/tv-fonts-1.0.tar.bz2 Source2: v4l-conf.pam Source3: http://prdownloads.sourceforge.net/zapping/zvbi-0.2.4.tar.bz2 -Patch0: xawtv-3.88-config.patch +Patch0: xawtv-3.94-config.patch BuildPrereq: XFree86-devel BuildPrereq: ncurses-devel @@ -27,7 +27,7 @@ BuildPrereq: libpng-devel BuildPrereq: freetype-devel BuildPrereq: fontconfig-devel -BuildRequires: xorg-x11-devel gcc-c++ +BuildRequires: xorg-x11-devel xorg-x11-font-utils gcc-c++ #Requires: usermode From svn at tinysofa.org Mon Sep 13 05:56:56 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 15:56:56 +1000 (EST) Subject: [tinysofa-svn] r4372 - contrib/1.1/xawtv/current/specs Message-ID: <20040913055656.F0B8D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 15:56:55 +1000 (Mon, 13 Sep 2004) New Revision: 4372 Modified: contrib/1.1/xawtv/current/specs/xawtv.spec Log: - change groups Modified: contrib/1.1/xawtv/current/specs/xawtv.spec =================================================================== --- contrib/1.1/xawtv/current/specs/xawtv.spec 2004-09-12 12:38:36 UTC (rev 4371) +++ contrib/1.1/xawtv/current/specs/xawtv.spec 2004-09-13 05:56:55 UTC (rev 4372) @@ -9,7 +9,7 @@ Summary: A TV application for video4linux compliant devices. Version: 3.94 Release: 1jh -Group: Applications/Multimedia +Group: contrib License: GPL URL: http://bytesex.org/xawtv/ @@ -41,7 +41,7 @@ Xawtv also includes a grabber driver for vic. %package tv-fonts -Group: User Interface/X +Group: contrib Summary: Bitmap fonts for xawtv License: Freely distributable Requires: %{name} >= %{version} From svn at tinysofa.org Mon Sep 13 10:05:19 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:05:19 +1000 (EST) Subject: [tinysofa-svn] r4373 - contrib/1.1/xorg-x11/current/sources Message-ID: <20040913100519.CFD944E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:05:18 +1000 (Mon, 13 Sep 2004) New Revision: 4373 Modified: contrib/1.1/xorg-x11/current/sources/xdm.init Log: - forward useless output to /dev/null Modified: contrib/1.1/xorg-x11/current/sources/xdm.init =================================================================== --- contrib/1.1/xorg-x11/current/sources/xdm.init 2004-09-13 05:56:55 UTC (rev 4372) +++ contrib/1.1/xorg-x11/current/sources/xdm.init 2004-09-13 10:05:18 UTC (rev 4373) @@ -37,10 +37,10 @@ if [ "x$preferred" != "x" ]; then echo -n $"Starting $title: " daemon $preferred - elif which gdm >/dev/null; then + elif which gdm >/dev/null 2>&1; then echo -n $"Starting GNOME Display Manager: " daemon gdm - elif which kdm >/dev/null; then + elif which kdm >/dev/null 2>&1; then echo -n $"Starting KDE Display Manager: " daemon kdm else From svn at tinysofa.org Mon Sep 13 10:09:47 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:09:47 +1000 (EST) Subject: [tinysofa-svn] r4374 - contrib/1.1/xterm/current/specs Message-ID: <20040913100947.38E464E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:09:47 +1000 (Mon, 13 Sep 2004) New Revision: 4374 Modified: contrib/1.1/xterm/current/specs/xterm.spec Log: - BR: utempter Modified: contrib/1.1/xterm/current/specs/xterm.spec =================================================================== --- contrib/1.1/xterm/current/specs/xterm.spec 2004-09-13 10:05:18 UTC (rev 4373) +++ contrib/1.1/xterm/current/specs/xterm.spec 2004-09-13 10:09:47 UTC (rev 4374) @@ -15,7 +15,7 @@ Patch2: xterm-179-ppc-fix-bug-101472.patch BuildRequires: xorg-x11-devel >= 4.3.0 libtermcap-devel -BuildRequires: freetype-devel +BuildRequires: freetype-devel utempter %description The xterm program is a terminal emulator for the X Window System. It From svn at tinysofa.org Mon Sep 13 10:15:46 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:15:46 +1000 (EST) Subject: [tinysofa-svn] r4375 - contrib/1.1/webmin/current/specs Message-ID: <20040913101546.8EB9E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:15:46 +1000 (Mon, 13 Sep 2004) New Revision: 4375 Modified: contrib/1.1/webmin/current/specs/webmin.spec Log: - don't use automatic perl dependency generator Modified: contrib/1.1/webmin/current/specs/webmin.spec =================================================================== --- contrib/1.1/webmin/current/specs/webmin.spec 2004-09-13 10:09:47 UTC (rev 4374) +++ contrib/1.1/webmin/current/specs/webmin.spec 2004-09-13 10:15:46 UTC (rev 4375) @@ -1,3 +1,5 @@ +%define __perl_requires %{nil} + Summary: A web-based administration interface for Unix systems. Name: webmin Version: 1.150 @@ -118,8 +120,9 @@ %dir %{_localstatedir}/webmin %changelog -* Wed Aug 25 2004 Jaakko Heinonen +* Wed Aug 25 2004 Jaakko Heinonen 1.150-2jh - %_initdir -> %_initrddir +- don't use automatic perl dependency generator * Mon Jun 21 2004 Goetz Bock 1.150-1bg - new upstream: 1.150 From svn at tinysofa.org Mon Sep 13 10:20:38 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:20:38 +1000 (EST) Subject: [tinysofa-svn] r4376 - in contrib/1.1: scponly/current/specs wol/current/specs Message-ID: <20040913102038.225CC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:20:37 +1000 (Mon, 13 Sep 2004) New Revision: 4376 Modified: contrib/1.1/scponly/current/specs/scponly.spec contrib/1.1/wol/current/specs/wol.spec Log: - fix broken requirements Modified: contrib/1.1/scponly/current/specs/scponly.spec =================================================================== --- contrib/1.1/scponly/current/specs/scponly.spec 2004-09-13 10:15:46 UTC (rev 4375) +++ contrib/1.1/scponly/current/specs/scponly.spec 2004-09-13 10:20:37 UTC (rev 4376) @@ -1,7 +1,7 @@ Summary: Restricted shell only for scp Name: scponly Version: 3.11 -Release: 1bg +Release: 2jh Group: contrib Source: http://sublimation.org/scponly/scponly-%{version}.tgz Patch0: scponly-3.8-sftp.patch @@ -35,7 +35,7 @@ %package doc Summary: Documentation for %{name} -Requires: %{name}=%{version}-%{release} +Requires: %{name} = %{version}-%{release} Group: contrib %description doc @@ -87,6 +87,9 @@ %changelog +* Mon Sep 13 2004 Jaakko Heinonen 3.11-2jh +- fix broken requirement + * Mon Jun 21 2004 Goetz Bock 3.11-1bg - build for tinysofa contrib - new upstream: 3.11 Modified: contrib/1.1/wol/current/specs/wol.spec =================================================================== --- contrib/1.1/wol/current/specs/wol.spec 2004-09-13 10:15:46 UTC (rev 4375) +++ contrib/1.1/wol/current/specs/wol.spec 2004-09-13 10:20:37 UTC (rev 4376) @@ -1,7 +1,7 @@ Summary: Wake On Lan client Name: wol Version: 0.7.1 -Release: 1bg +Release: 2jh Group: contrib Source: http://prdownloads.sourceforge.net/ahh/wol-%{version}.tar.gz Patch: sources/wol-0.7.0-info.patch @@ -20,7 +20,7 @@ %package doc Summary: Documentation for %{name} Requires: htmlinfo -Requires: %{name}=%{version}-%{release} +Requires: %{name} = %{version}-%{release} Group: contrib %description doc @@ -29,7 +29,7 @@ %package tools Summary: Additional utilities for %{name} -Requires: %{name}=%{version}-%{release} +Requires: %{name} = %{version}-%{release} Group: contrib %description tools @@ -90,6 +90,9 @@ %changelog +* Mon Sep 13 2004 Jaakko Heinonen 0.7.1-2jh +- fix broken requirements + * Mon Jun 21 2004 Goetz Bock 0.7.1-1bg - new upstream: 0.7.1 - build for tinysofa contrib From svn at tinysofa.org Mon Sep 13 10:27:42 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:27:42 +1000 (EST) Subject: [tinysofa-svn] r4377 - in contrib/1.1: chkfontpath clamassassin clearsilver compface distcc exim fetchmail getmail glib12 gpgme gtk12+ imlib jigdo kernel kernel-utils26 libidl libungif maildrop masqmail mod_auth_external pam_sqlite perl-business-isbn perl-digest-sha1 perl-libwww-perl perl-net-cidr perl-test-manifest perl-timedate python-openssl sylpheed tnef xinitrc xterm Message-ID: <20040913102742.176284E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:27:41 +1000 (Mon, 13 Sep 2004) New Revision: 4377 Added: contrib/1.1/chkfontpath/releases/ contrib/1.1/clamassassin/releases/ contrib/1.1/clearsilver/releases/ contrib/1.1/compface/releases/ contrib/1.1/distcc/releases/ contrib/1.1/exim/releases/ contrib/1.1/fetchmail/releases/ contrib/1.1/getmail/releases/ contrib/1.1/glib12/releases/ contrib/1.1/gpgme/releases/ contrib/1.1/gtk12+/releases/ contrib/1.1/imlib/releases/ contrib/1.1/jigdo/releases/ contrib/1.1/kernel-utils26/releases/ contrib/1.1/kernel/releases/ contrib/1.1/libidl/releases/ contrib/1.1/libungif/releases/ contrib/1.1/maildrop/releases/ contrib/1.1/masqmail/releases/ contrib/1.1/mod_auth_external/releases/ contrib/1.1/pam_sqlite/releases/ contrib/1.1/perl-business-isbn/releases/ contrib/1.1/perl-digest-sha1/releases/ contrib/1.1/perl-libwww-perl/releases/ contrib/1.1/perl-net-cidr/releases/ contrib/1.1/perl-test-manifest/releases/ contrib/1.1/perl-timedate/releases/ contrib/1.1/python-openssl/releases/ contrib/1.1/sylpheed/releases/ contrib/1.1/tnef/releases/ contrib/1.1/xinitrc/releases/ contrib/1.1/xterm/releases/ Log: - add releases directories From svn at tinysofa.org Mon Sep 13 10:42:23 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:42:23 +1000 (EST) Subject: [tinysofa-svn] r4378 - in contrib/1.1/aide: current/specs releases/0.10/2bg releases/0.10/2bg/current/specs Message-ID: <20040913104223.A87584E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:42:23 +1000 (Mon, 13 Sep 2004) New Revision: 4378 Added: contrib/1.1/aide/releases/0.10/2bg/current/ Modified: contrib/1.1/aide/current/specs/aide.spec contrib/1.1/aide/releases/0.10/2bg/current/specs/aide.spec Log: aide: * integrate current (0.10-2bg) as releases/0.10/2bg Modified: contrib/1.1/aide/current/specs/aide.spec =================================================================== --- contrib/1.1/aide/current/specs/aide.spec 2004-09-13 10:27:41 UTC (rev 4377) +++ contrib/1.1/aide/current/specs/aide.spec 2004-09-13 10:42:23 UTC (rev 4378) @@ -111,6 +111,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.10-2bg +- current (0.10-2bg) integrated as 0.10-2bg + * Tue Jun 22 2004 Goetz Bock 0.10-2bg - small specfile cleanups Copied: contrib/1.1/aide/releases/0.10/2bg/current (from rev 4376, contrib/1.1/aide/current) Modified: contrib/1.1/aide/releases/0.10/2bg/current/specs/aide.spec =================================================================== --- contrib/1.1/aide/current/specs/aide.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/aide/releases/0.10/2bg/current/specs/aide.spec 2004-09-13 10:42:23 UTC (rev 4378) @@ -111,6 +111,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.10-2bg +- current (0.10-2bg) integrated as 0.10-2bg + * Tue Jun 22 2004 Goetz Bock 0.10-2bg - small specfile cleanups From svn at tinysofa.org Mon Sep 13 10:42:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:42:27 +1000 (EST) Subject: [tinysofa-svn] r4379 - contrib/1.1/aide Message-ID: <20040913104227.647574E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:42:27 +1000 (Mon, 13 Sep 2004) New Revision: 4379 Removed: contrib/1.1/aide/pristine/ Log: aide: * removing pristine (0.10-2bg) From svn at tinysofa.org Mon Sep 13 10:42:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:42:35 +1000 (EST) Subject: [tinysofa-svn] r4380 - in contrib/1.1/aide: . pristine Message-ID: <20040913104235.758EA4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:42:35 +1000 (Mon, 13 Sep 2004) New Revision: 4380 Added: contrib/1.1/aide/pristine/ contrib/1.1/aide/pristine/current/ Log: aide: * retarget pristine (0.10-2bg) to releases/0.10/2bg Copied: contrib/1.1/aide/pristine (from rev 4376, contrib/1.1/aide/releases/0.10/2bg) Copied: contrib/1.1/aide/pristine/current (from rev 4378, contrib/1.1/aide/releases/0.10/2bg/current) From svn at tinysofa.org Mon Sep 13 10:42:42 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:42:42 +1000 (EST) Subject: [tinysofa-svn] r4381 - in contrib/1.1/amavisd-new: current/specs releases releases/0.0.20040701 releases/0.0.20040701/2gd/specs Message-ID: <20040913104242.EDE8B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:42:42 +1000 (Mon, 13 Sep 2004) New Revision: 4381 Added: contrib/1.1/amavisd-new/releases/0.0.20040701/ contrib/1.1/amavisd-new/releases/0.0.20040701/2gd/ Modified: contrib/1.1/amavisd-new/current/specs/amavisd-new.spec contrib/1.1/amavisd-new/releases/0.0.20040701/2gd/specs/amavisd-new.spec Log: amavisd-new: * integrate current (0.0.20040701-2gd) as releases/0.0.20040701/2gd Modified: contrib/1.1/amavisd-new/current/specs/amavisd-new.spec =================================================================== --- contrib/1.1/amavisd-new/current/specs/amavisd-new.spec 2004-09-13 10:42:35 UTC (rev 4380) +++ contrib/1.1/amavisd-new/current/specs/amavisd-new.spec 2004-09-13 10:42:42 UTC (rev 4381) @@ -1,7 +1,7 @@ %define realversion 20040701 Name: amavisd-new Version: 0.0.%{realversion} -Release: 2gd +Release: 2gd Summary: AMaViSd-new - A Mail Virus Scanner URL: http://www.ijs.si/software/amavisd/ License: GPL @@ -123,6 +123,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.0.20040701-2gd +- current (0.0.20040701-2gd) integrated as 0.0.20040701-2gd + * Mon Aug 02 2004 Gerald Dachs 20040701-2gd - cleaned up spec file - added condrestart, try-restart to initscript Copied: contrib/1.1/amavisd-new/releases/0.0.20040701/2gd (from rev 4376, contrib/1.1/amavisd-new/current) Modified: contrib/1.1/amavisd-new/releases/0.0.20040701/2gd/specs/amavisd-new.spec =================================================================== --- contrib/1.1/amavisd-new/current/specs/amavisd-new.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/amavisd-new/releases/0.0.20040701/2gd/specs/amavisd-new.spec 2004-09-13 10:42:42 UTC (rev 4381) @@ -1,7 +1,7 @@ %define realversion 20040701 Name: amavisd-new Version: 0.0.%{realversion} -Release: 2gd +Release: 2gd Summary: AMaViSd-new - A Mail Virus Scanner URL: http://www.ijs.si/software/amavisd/ License: GPL @@ -123,6 +123,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.0.20040701-2gd +- current (0.0.20040701-2gd) integrated as 0.0.20040701-2gd + * Mon Aug 02 2004 Gerald Dachs 20040701-2gd - cleaned up spec file - added condrestart, try-restart to initscript From svn at tinysofa.org Mon Sep 13 10:42:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:42:49 +1000 (EST) Subject: [tinysofa-svn] r4382 - contrib/1.1/amavisd-new Message-ID: <20040913104249.8860E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:42:49 +1000 (Mon, 13 Sep 2004) New Revision: 4382 Removed: contrib/1.1/amavisd-new/pristine/ Log: amavisd-new: * removing pristine (0.0.20040623-1gd) From svn at tinysofa.org Mon Sep 13 10:42:53 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:42:53 +1000 (EST) Subject: [tinysofa-svn] r4383 - contrib/1.1/amavisd-new Message-ID: <20040913104253.001224E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:42:53 +1000 (Mon, 13 Sep 2004) New Revision: 4383 Added: contrib/1.1/amavisd-new/pristine/ Log: amavisd-new: * retarget pristine (0.0.20040623-1gd) to releases/0.0.20040701/2gd Copied: contrib/1.1/amavisd-new/pristine (from rev 4381, contrib/1.1/amavisd-new/releases/0.0.20040701/2gd) From svn at tinysofa.org Mon Sep 13 10:43:05 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:43:05 +1000 (EST) Subject: [tinysofa-svn] r4384 - in contrib/1.1/arc: current/specs releases/5.21j/1ok releases/5.21j/1ok/current/specs Message-ID: <20040913104305.1D6344E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:43:04 +1000 (Mon, 13 Sep 2004) New Revision: 4384 Added: contrib/1.1/arc/releases/5.21j/1ok/current/ Modified: contrib/1.1/arc/current/specs/arc.spec contrib/1.1/arc/releases/5.21j/1ok/current/specs/arc.spec Log: arc: * integrate current (5.21j-1ok) as releases/5.21j/1ok Modified: contrib/1.1/arc/current/specs/arc.spec =================================================================== --- contrib/1.1/arc/current/specs/arc.spec 2004-09-13 10:42:53 UTC (rev 4383) +++ contrib/1.1/arc/current/specs/arc.spec 2004-09-13 10:43:04 UTC (rev 4384) @@ -38,6 +38,9 @@ %{_mandir}/man1/arc.1* %changelog +* Mon Sep 13 2004 tsintegrate 5.21j-1ok +- current (5.21j-1ok) integrated as 5.21j-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa Copied: contrib/1.1/arc/releases/5.21j/1ok/current (from rev 4376, contrib/1.1/arc/current) Modified: contrib/1.1/arc/releases/5.21j/1ok/current/specs/arc.spec =================================================================== --- contrib/1.1/arc/current/specs/arc.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/arc/releases/5.21j/1ok/current/specs/arc.spec 2004-09-13 10:43:04 UTC (rev 4384) @@ -38,6 +38,9 @@ %{_mandir}/man1/arc.1* %changelog +* Mon Sep 13 2004 tsintegrate 5.21j-1ok +- current (5.21j-1ok) integrated as 5.21j-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa From svn at tinysofa.org Mon Sep 13 10:43:09 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:43:09 +1000 (EST) Subject: [tinysofa-svn] r4385 - contrib/1.1/arc Message-ID: <20040913104309.54AA34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:43:09 +1000 (Mon, 13 Sep 2004) New Revision: 4385 Removed: contrib/1.1/arc/pristine/ Log: arc: * removing pristine (5.21j-1ok) From svn at tinysofa.org Mon Sep 13 10:43:14 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:43:14 +1000 (EST) Subject: [tinysofa-svn] r4386 - in contrib/1.1/arc: . pristine Message-ID: <20040913104314.973654E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:43:14 +1000 (Mon, 13 Sep 2004) New Revision: 4386 Added: contrib/1.1/arc/pristine/ contrib/1.1/arc/pristine/current/ Log: arc: * retarget pristine (5.21j-1ok) to releases/5.21j/1ok Copied: contrib/1.1/arc/pristine (from rev 4376, contrib/1.1/arc/releases/5.21j/1ok) Copied: contrib/1.1/arc/pristine/current (from rev 4384, contrib/1.1/arc/releases/5.21j/1ok/current) From svn at tinysofa.org Mon Sep 13 10:43:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:43:24 +1000 (EST) Subject: [tinysofa-svn] r4387 - in contrib/1.1/bittorrent: current/specs releases/3.4.2/1ok releases/3.4.2/1ok/current/specs Message-ID: <20040913104324.64DC84E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:43:24 +1000 (Mon, 13 Sep 2004) New Revision: 4387 Added: contrib/1.1/bittorrent/releases/3.4.2/1ok/current/ Modified: contrib/1.1/bittorrent/current/specs/bittorrent.spec contrib/1.1/bittorrent/releases/3.4.2/1ok/current/specs/bittorrent.spec Log: bittorrent: * integrate current (3.4.2-1ok) as releases/3.4.2/1ok Modified: contrib/1.1/bittorrent/current/specs/bittorrent.spec =================================================================== --- contrib/1.1/bittorrent/current/specs/bittorrent.spec 2004-09-13 10:43:14 UTC (rev 4386) +++ contrib/1.1/bittorrent/current/specs/bittorrent.spec 2004-09-13 10:43:24 UTC (rev 4387) @@ -63,6 +63,9 @@ %ghost %{_bindir}/*.pyc %changelog +* Mon Sep 13 2004 tsintegrate 3.4.2-1ok +- current (3.4.2-1ok) integrated as 3.4.2-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa - new upstream: 3.4.2 Copied: contrib/1.1/bittorrent/releases/3.4.2/1ok/current (from rev 4376, contrib/1.1/bittorrent/current) Modified: contrib/1.1/bittorrent/releases/3.4.2/1ok/current/specs/bittorrent.spec =================================================================== --- contrib/1.1/bittorrent/current/specs/bittorrent.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/bittorrent/releases/3.4.2/1ok/current/specs/bittorrent.spec 2004-09-13 10:43:24 UTC (rev 4387) @@ -63,6 +63,9 @@ %ghost %{_bindir}/*.pyc %changelog +* Mon Sep 13 2004 tsintegrate 3.4.2-1ok +- current (3.4.2-1ok) integrated as 3.4.2-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa - new upstream: 3.4.2 From svn at tinysofa.org Mon Sep 13 10:43:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:43:28 +1000 (EST) Subject: [tinysofa-svn] r4388 - contrib/1.1/bittorrent Message-ID: <20040913104328.546204E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:43:28 +1000 (Mon, 13 Sep 2004) New Revision: 4388 Removed: contrib/1.1/bittorrent/pristine/ Log: bittorrent: * removing pristine (3.4.2-1ok) From svn at tinysofa.org Mon Sep 13 10:43:33 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:43:33 +1000 (EST) Subject: [tinysofa-svn] r4389 - in contrib/1.1/bittorrent: . pristine Message-ID: <20040913104333.CF1694E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:43:33 +1000 (Mon, 13 Sep 2004) New Revision: 4389 Added: contrib/1.1/bittorrent/pristine/ contrib/1.1/bittorrent/pristine/current/ Log: bittorrent: * retarget pristine (3.4.2-1ok) to releases/3.4.2/1ok Copied: contrib/1.1/bittorrent/pristine (from rev 4376, contrib/1.1/bittorrent/releases/3.4.2/1ok) Copied: contrib/1.1/bittorrent/pristine/current (from rev 4387, contrib/1.1/bittorrent/releases/3.4.2/1ok/current) From svn at tinysofa.org Mon Sep 13 10:43:44 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:43:44 +1000 (EST) Subject: [tinysofa-svn] r4390 - in contrib/1.1/ccache: current/specs releases/2.3/1ok releases/2.3/1ok/current/specs Message-ID: <20040913104344.794B14E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:43:44 +1000 (Mon, 13 Sep 2004) New Revision: 4390 Added: contrib/1.1/ccache/releases/2.3/1ok/current/ Modified: contrib/1.1/ccache/current/specs/ccache.spec contrib/1.1/ccache/releases/2.3/1ok/current/specs/ccache.spec Log: ccache: * integrate current (2.3-1ok) as releases/2.3/1ok Modified: contrib/1.1/ccache/current/specs/ccache.spec =================================================================== --- contrib/1.1/ccache/current/specs/ccache.spec 2004-09-13 10:43:33 UTC (rev 4389) +++ contrib/1.1/ccache/current/specs/ccache.spec 2004-09-13 10:43:44 UTC (rev 4390) @@ -32,6 +32,9 @@ %{_bindir}/ccache %changelog +* Mon Sep 13 2004 tsintegrate 2.3-1ok +- current (2.3-1ok) integrated as 2.3-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa - New upstream: 2.3. Copied: contrib/1.1/ccache/releases/2.3/1ok/current (from rev 4376, contrib/1.1/ccache/current) Modified: contrib/1.1/ccache/releases/2.3/1ok/current/specs/ccache.spec =================================================================== --- contrib/1.1/ccache/current/specs/ccache.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/ccache/releases/2.3/1ok/current/specs/ccache.spec 2004-09-13 10:43:44 UTC (rev 4390) @@ -32,6 +32,9 @@ %{_bindir}/ccache %changelog +* Mon Sep 13 2004 tsintegrate 2.3-1ok +- current (2.3-1ok) integrated as 2.3-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa - New upstream: 2.3. From svn at tinysofa.org Mon Sep 13 10:43:48 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:43:48 +1000 (EST) Subject: [tinysofa-svn] r4391 - contrib/1.1/ccache Message-ID: <20040913104348.56C794E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:43:48 +1000 (Mon, 13 Sep 2004) New Revision: 4391 Removed: contrib/1.1/ccache/pristine/ Log: ccache: * removing pristine (2.3-1ok) From svn at tinysofa.org Mon Sep 13 10:43:53 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:43:53 +1000 (EST) Subject: [tinysofa-svn] r4392 - in contrib/1.1/ccache: . pristine Message-ID: <20040913104353.EE3394E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:43:53 +1000 (Mon, 13 Sep 2004) New Revision: 4392 Added: contrib/1.1/ccache/pristine/ contrib/1.1/ccache/pristine/current/ Log: ccache: * retarget pristine (2.3-1ok) to releases/2.3/1ok Copied: contrib/1.1/ccache/pristine (from rev 4376, contrib/1.1/ccache/releases/2.3/1ok) Copied: contrib/1.1/ccache/pristine/current (from rev 4390, contrib/1.1/ccache/releases/2.3/1ok/current) From svn at tinysofa.org Mon Sep 13 10:44:02 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:44:02 +1000 (EST) Subject: [tinysofa-svn] r4393 - in contrib/1.1/clamav: current/specs releases releases/0.75.1 releases/0.75.1/1gd/specs Message-ID: <20040913104402.A7B574E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:44:02 +1000 (Mon, 13 Sep 2004) New Revision: 4393 Added: contrib/1.1/clamav/releases/0.75.1/ contrib/1.1/clamav/releases/0.75.1/1gd/ Modified: contrib/1.1/clamav/current/specs/clamav.spec contrib/1.1/clamav/releases/0.75.1/1gd/specs/clamav.spec Log: clamav: * integrate current (0.75.1-1gd) as releases/0.75.1/1gd Modified: contrib/1.1/clamav/current/specs/clamav.spec =================================================================== --- contrib/1.1/clamav/current/specs/clamav.spec 2004-09-13 10:43:53 UTC (rev 4392) +++ contrib/1.1/clamav/current/specs/clamav.spec 2004-09-13 10:44:02 UTC (rev 4393) @@ -181,6 +181,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.75.1-1gd +- current (0.75.1-1gd) integrated as 0.75.1-1gd + * Sun Aug 01 2004 Gerald Dachs 0.75.1-1gd - New upstream Copied: contrib/1.1/clamav/releases/0.75.1/1gd (from rev 4376, contrib/1.1/clamav/current) Modified: contrib/1.1/clamav/releases/0.75.1/1gd/specs/clamav.spec =================================================================== --- contrib/1.1/clamav/current/specs/clamav.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/clamav/releases/0.75.1/1gd/specs/clamav.spec 2004-09-13 10:44:02 UTC (rev 4393) @@ -181,6 +181,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.75.1-1gd +- current (0.75.1-1gd) integrated as 0.75.1-1gd + * Sun Aug 01 2004 Gerald Dachs 0.75.1-1gd - New upstream From svn at tinysofa.org Mon Sep 13 10:44:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:44:07 +1000 (EST) Subject: [tinysofa-svn] r4394 - contrib/1.1/clamav Message-ID: <20040913104407.822E94E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:44:07 +1000 (Mon, 13 Sep 2004) New Revision: 4394 Removed: contrib/1.1/clamav/pristine/ Log: clamav: * removing pristine (0.73-3bg) From svn at tinysofa.org Mon Sep 13 10:44:11 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:44:11 +1000 (EST) Subject: [tinysofa-svn] r4395 - contrib/1.1/clamav Message-ID: <20040913104411.EF43E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:44:11 +1000 (Mon, 13 Sep 2004) New Revision: 4395 Added: contrib/1.1/clamav/pristine/ Log: clamav: * retarget pristine (0.73-3bg) to releases/0.75.1/1gd Copied: contrib/1.1/clamav/pristine (from rev 4393, contrib/1.1/clamav/releases/0.75.1/1gd) From svn at tinysofa.org Mon Sep 13 10:44:23 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:44:23 +1000 (EST) Subject: [tinysofa-svn] r4396 - in contrib/1.1/curl: current/specs releases/7.11.2 releases/7.11.2/2gd/specs Message-ID: <20040913104423.8C9404E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:44:23 +1000 (Mon, 13 Sep 2004) New Revision: 4396 Added: contrib/1.1/curl/releases/7.11.2/2gd/ Modified: contrib/1.1/curl/current/specs/curl.spec contrib/1.1/curl/releases/7.11.2/2gd/specs/curl.spec Log: curl: * integrate current (7.11.2-2gd) as releases/7.11.2/2gd Modified: contrib/1.1/curl/current/specs/curl.spec =================================================================== --- contrib/1.1/curl/current/specs/curl.spec 2004-09-13 10:44:11 UTC (rev 4395) +++ contrib/1.1/curl/current/specs/curl.spec 2004-09-13 10:44:23 UTC (rev 4396) @@ -92,6 +92,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 7.11.2-2gd +- current (7.11.2-2gd) integrated as 7.11.2-2gd + * Sun Aug 22 2004 Gerald Dachs 7.11.2-2gd - fixed build requirements Copied: contrib/1.1/curl/releases/7.11.2/2gd (from rev 4376, contrib/1.1/curl/current) Modified: contrib/1.1/curl/releases/7.11.2/2gd/specs/curl.spec =================================================================== --- contrib/1.1/curl/current/specs/curl.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/curl/releases/7.11.2/2gd/specs/curl.spec 2004-09-13 10:44:23 UTC (rev 4396) @@ -92,6 +92,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 7.11.2-2gd +- current (7.11.2-2gd) integrated as 7.11.2-2gd + * Sun Aug 22 2004 Gerald Dachs 7.11.2-2gd - fixed build requirements From svn at tinysofa.org Mon Sep 13 10:44:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:44:27 +1000 (EST) Subject: [tinysofa-svn] r4397 - contrib/1.1/curl Message-ID: <20040913104427.67A244E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:44:27 +1000 (Mon, 13 Sep 2004) New Revision: 4397 Removed: contrib/1.1/curl/pristine/ Log: curl: * removing pristine (7.11.2-1bg) From svn at tinysofa.org Mon Sep 13 10:44:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:44:32 +1000 (EST) Subject: [tinysofa-svn] r4398 - contrib/1.1/curl Message-ID: <20040913104432.073B24E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:44:31 +1000 (Mon, 13 Sep 2004) New Revision: 4398 Added: contrib/1.1/curl/pristine/ Log: curl: * retarget pristine (7.11.2-1bg) to releases/7.11.2/2gd Copied: contrib/1.1/curl/pristine (from rev 4396, contrib/1.1/curl/releases/7.11.2/2gd) From svn at tinysofa.org Mon Sep 13 10:44:43 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:44:43 +1000 (EST) Subject: [tinysofa-svn] r4399 - in contrib/1.1/ddrescue: current/specs releases/1.03/1bg releases/1.03/1bg/current/specs Message-ID: <20040913104443.F0C564E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:44:43 +1000 (Mon, 13 Sep 2004) New Revision: 4399 Added: contrib/1.1/ddrescue/releases/1.03/1bg/current/ Modified: contrib/1.1/ddrescue/current/specs/ddrescue.spec contrib/1.1/ddrescue/releases/1.03/1bg/current/specs/ddrescue.spec Log: ddrescue: * integrate current (1.03-1bg) as releases/1.03/1bg Modified: contrib/1.1/ddrescue/current/specs/ddrescue.spec =================================================================== --- contrib/1.1/ddrescue/current/specs/ddrescue.spec 2004-09-13 10:44:31 UTC (rev 4398) +++ contrib/1.1/ddrescue/current/specs/ddrescue.spec 2004-09-13 10:44:43 UTC (rev 4399) @@ -1,6 +1,6 @@ Name: ddrescue Version: 1.03 -Release: 1bg +Release: 1bg License: GPL Group: contrib Summary: Data copying in presence of I/O errors @@ -37,7 +37,10 @@ [ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf %{buildroot} -%changelog -n ddrescue +%changelog +* Mon Sep 13 2004 tsintegrate 1.03-1bg +- current (1.03-1bg) integrated as 1.03-1bg + * Fri Jul 16 2004 Goetz Bock 1.03-1bg - build for tinysofa contrib - added patch to build as none root Copied: contrib/1.1/ddrescue/releases/1.03/1bg/current (from rev 4376, contrib/1.1/ddrescue/current) Modified: contrib/1.1/ddrescue/releases/1.03/1bg/current/specs/ddrescue.spec =================================================================== --- contrib/1.1/ddrescue/current/specs/ddrescue.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/ddrescue/releases/1.03/1bg/current/specs/ddrescue.spec 2004-09-13 10:44:43 UTC (rev 4399) @@ -1,6 +1,6 @@ Name: ddrescue Version: 1.03 -Release: 1bg +Release: 1bg License: GPL Group: contrib Summary: Data copying in presence of I/O errors @@ -37,7 +37,10 @@ [ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf %{buildroot} -%changelog -n ddrescue +%changelog +* Mon Sep 13 2004 tsintegrate 1.03-1bg +- current (1.03-1bg) integrated as 1.03-1bg + * Fri Jul 16 2004 Goetz Bock 1.03-1bg - build for tinysofa contrib - added patch to build as none root From svn at tinysofa.org Mon Sep 13 10:44:48 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:44:48 +1000 (EST) Subject: [tinysofa-svn] r4400 - contrib/1.1/ddrescue Message-ID: <20040913104448.6E9E34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:44:48 +1000 (Mon, 13 Sep 2004) New Revision: 4400 Removed: contrib/1.1/ddrescue/pristine/ Log: ddrescue: * removing pristine (1.03-1bg) From svn at tinysofa.org Mon Sep 13 10:44:54 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:44:54 +1000 (EST) Subject: [tinysofa-svn] r4401 - in contrib/1.1/ddrescue: . pristine Message-ID: <20040913104454.0DB624E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:44:53 +1000 (Mon, 13 Sep 2004) New Revision: 4401 Added: contrib/1.1/ddrescue/pristine/ contrib/1.1/ddrescue/pristine/current/ Log: ddrescue: * retarget pristine (1.03-1bg) to releases/1.03/1bg Copied: contrib/1.1/ddrescue/pristine (from rev 4376, contrib/1.1/ddrescue/releases/1.03/1bg) Copied: contrib/1.1/ddrescue/pristine/current (from rev 4399, contrib/1.1/ddrescue/releases/1.03/1bg/current) From svn at tinysofa.org Mon Sep 13 10:45:05 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:45:05 +1000 (EST) Subject: [tinysofa-svn] r4402 - in contrib/1.1/dmapi: current/specs releases/2.2.0 releases/2.2.0/2jh/specs Message-ID: <20040913104505.20F3E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:45:04 +1000 (Mon, 13 Sep 2004) New Revision: 4402 Added: contrib/1.1/dmapi/releases/2.2.0/2jh/ Modified: contrib/1.1/dmapi/current/specs/dmapi.spec contrib/1.1/dmapi/releases/2.2.0/2jh/specs/dmapi.spec Log: dmapi: * integrate current (2.2.0-2jh) as releases/2.2.0/2jh Modified: contrib/1.1/dmapi/current/specs/dmapi.spec =================================================================== --- contrib/1.1/dmapi/current/specs/dmapi.spec 2004-09-13 10:44:53 UTC (rev 4401) +++ contrib/1.1/dmapi/current/specs/dmapi.spec 2004-09-13 10:45:04 UTC (rev 4402) @@ -95,6 +95,9 @@ %defattr(-,root,root) %changelog +* Mon Sep 13 2004 tsintegrate 2.2.0-2jh +- current (2.2.0-2jh) integrated as 2.2.0-2jh + * Wed May 19 2004 tsintegrate 2.2.0-1ts - current (2.2.0-1ok) integrated as 2.2.0-1ts for release 1.0-U1 Copied: contrib/1.1/dmapi/releases/2.2.0/2jh (from rev 4376, contrib/1.1/dmapi/current) Modified: contrib/1.1/dmapi/releases/2.2.0/2jh/specs/dmapi.spec =================================================================== --- contrib/1.1/dmapi/current/specs/dmapi.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/dmapi/releases/2.2.0/2jh/specs/dmapi.spec 2004-09-13 10:45:04 UTC (rev 4402) @@ -95,6 +95,9 @@ %defattr(-,root,root) %changelog +* Mon Sep 13 2004 tsintegrate 2.2.0-2jh +- current (2.2.0-2jh) integrated as 2.2.0-2jh + * Wed May 19 2004 tsintegrate 2.2.0-1ts - current (2.2.0-1ok) integrated as 2.2.0-1ts for release 1.0-U1 From svn at tinysofa.org Mon Sep 13 10:45:09 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:45:09 +1000 (EST) Subject: [tinysofa-svn] r4403 - contrib/1.1/dmapi Message-ID: <20040913104509.509874E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:45:09 +1000 (Mon, 13 Sep 2004) New Revision: 4403 Removed: contrib/1.1/dmapi/pristine/ Log: dmapi: * removing pristine (2.2.0-1ts) From svn at tinysofa.org Mon Sep 13 10:45:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:45:13 +1000 (EST) Subject: [tinysofa-svn] r4404 - contrib/1.1/dmapi Message-ID: <20040913104513.D37934E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:45:13 +1000 (Mon, 13 Sep 2004) New Revision: 4404 Added: contrib/1.1/dmapi/pristine/ Log: dmapi: * retarget pristine (2.2.0-1ts) to releases/2.2.0/2jh Copied: contrib/1.1/dmapi/pristine (from rev 4402, contrib/1.1/dmapi/releases/2.2.0/2jh) From svn at tinysofa.org Mon Sep 13 10:45:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:45:21 +1000 (EST) Subject: [tinysofa-svn] r4405 - in contrib/1.1/dnsmasq: current/specs releases releases/2.13 releases/2.13/1gd/specs Message-ID: <20040913104521.736534E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:45:21 +1000 (Mon, 13 Sep 2004) New Revision: 4405 Added: contrib/1.1/dnsmasq/releases/2.13/ contrib/1.1/dnsmasq/releases/2.13/1gd/ Modified: contrib/1.1/dnsmasq/current/specs/dnsmasq.spec contrib/1.1/dnsmasq/releases/2.13/1gd/specs/dnsmasq.spec Log: dnsmasq: * integrate current (2.13-1gd) as releases/2.13/1gd Modified: contrib/1.1/dnsmasq/current/specs/dnsmasq.spec =================================================================== --- contrib/1.1/dnsmasq/current/specs/dnsmasq.spec 2004-09-13 10:45:13 UTC (rev 4404) +++ contrib/1.1/dnsmasq/current/specs/dnsmasq.spec 2004-09-13 10:45:21 UTC (rev 4405) @@ -1,7 +1,7 @@ Summary: A lightweight caching nameserver Name: dnsmasq Version: 2.13 -Release: 1gd +Release: 1gd Group: contrib Source: http://www.thekelleys.org.uk/dnsmasq/%{name}-%{version}.tar.gz Source1: %{name}.initd @@ -63,6 +63,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 2.13-1gd +- current (2.13-1gd) integrated as 2.13-1gd + * Sat Aug 14 2004 Gerald Dachs 2.13-1gd - new upstream version Copied: contrib/1.1/dnsmasq/releases/2.13/1gd (from rev 4376, contrib/1.1/dnsmasq/current) Modified: contrib/1.1/dnsmasq/releases/2.13/1gd/specs/dnsmasq.spec =================================================================== --- contrib/1.1/dnsmasq/current/specs/dnsmasq.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/dnsmasq/releases/2.13/1gd/specs/dnsmasq.spec 2004-09-13 10:45:21 UTC (rev 4405) @@ -1,7 +1,7 @@ Summary: A lightweight caching nameserver Name: dnsmasq Version: 2.13 -Release: 1gd +Release: 1gd Group: contrib Source: http://www.thekelleys.org.uk/dnsmasq/%{name}-%{version}.tar.gz Source1: %{name}.initd @@ -63,6 +63,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 2.13-1gd +- current (2.13-1gd) integrated as 2.13-1gd + * Sat Aug 14 2004 Gerald Dachs 2.13-1gd - new upstream version From svn at tinysofa.org Mon Sep 13 10:45:25 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:45:25 +1000 (EST) Subject: [tinysofa-svn] r4406 - contrib/1.1/dnsmasq Message-ID: <20040913104525.434004E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:45:25 +1000 (Mon, 13 Sep 2004) New Revision: 4406 Removed: contrib/1.1/dnsmasq/pristine/ Log: dnsmasq: * removing pristine (2.9-1gd) From svn at tinysofa.org Mon Sep 13 10:45:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:45:30 +1000 (EST) Subject: [tinysofa-svn] r4407 - contrib/1.1/dnsmasq Message-ID: <20040913104530.143C74E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:45:29 +1000 (Mon, 13 Sep 2004) New Revision: 4407 Added: contrib/1.1/dnsmasq/pristine/ Log: dnsmasq: * retarget pristine (2.9-1gd) to releases/2.13/1gd Copied: contrib/1.1/dnsmasq/pristine (from rev 4405, contrib/1.1/dnsmasq/releases/2.13/1gd) From svn at tinysofa.org Mon Sep 13 10:45:40 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:45:40 +1000 (EST) Subject: [tinysofa-svn] r4408 - in contrib/1.1/dtach: current/specs releases/0.5/1jh releases/0.5/1jh/current/specs Message-ID: <20040913104540.61C434E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:45:40 +1000 (Mon, 13 Sep 2004) New Revision: 4408 Added: contrib/1.1/dtach/releases/0.5/1jh/current/ Modified: contrib/1.1/dtach/current/specs/dtach.spec contrib/1.1/dtach/releases/0.5/1jh/current/specs/dtach.spec Log: dtach: * integrate current (0.5-1jh) as releases/0.5/1jh Modified: contrib/1.1/dtach/current/specs/dtach.spec =================================================================== --- contrib/1.1/dtach/current/specs/dtach.spec 2004-09-13 10:45:29 UTC (rev 4407) +++ contrib/1.1/dtach/current/specs/dtach.spec 2004-09-13 10:45:40 UTC (rev 4408) @@ -1,7 +1,7 @@ Summary: A simple program that emulates the detach feature of screen. Name: dtach Version: 0.5 -Release: 1jh +Release: 1jh License: GPL URL: http://dtach.sourceforge.net/ Group: contrib @@ -47,6 +47,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.5-1jh +- current (0.5-1jh) integrated as 0.5-1jh + * Wed May 19 2004 Jaakko Heinonen 0.5-1jh - initial tinysofa release based on Fedora spec file Copied: contrib/1.1/dtach/releases/0.5/1jh/current (from rev 4376, contrib/1.1/dtach/current) Modified: contrib/1.1/dtach/releases/0.5/1jh/current/specs/dtach.spec =================================================================== --- contrib/1.1/dtach/current/specs/dtach.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/dtach/releases/0.5/1jh/current/specs/dtach.spec 2004-09-13 10:45:40 UTC (rev 4408) @@ -1,7 +1,7 @@ Summary: A simple program that emulates the detach feature of screen. Name: dtach Version: 0.5 -Release: 1jh +Release: 1jh License: GPL URL: http://dtach.sourceforge.net/ Group: contrib @@ -47,6 +47,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.5-1jh +- current (0.5-1jh) integrated as 0.5-1jh + * Wed May 19 2004 Jaakko Heinonen 0.5-1jh - initial tinysofa release based on Fedora spec file From svn at tinysofa.org Mon Sep 13 10:45:44 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:45:44 +1000 (EST) Subject: [tinysofa-svn] r4409 - contrib/1.1/dtach Message-ID: <20040913104544.3DBF64E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:45:44 +1000 (Mon, 13 Sep 2004) New Revision: 4409 Removed: contrib/1.1/dtach/pristine/ Log: dtach: * removing pristine (0.5-1jh) From svn at tinysofa.org Mon Sep 13 10:45:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:45:49 +1000 (EST) Subject: [tinysofa-svn] r4410 - in contrib/1.1/dtach: . pristine Message-ID: <20040913104549.CA8824E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:45:49 +1000 (Mon, 13 Sep 2004) New Revision: 4410 Added: contrib/1.1/dtach/pristine/ contrib/1.1/dtach/pristine/current/ Log: dtach: * retarget pristine (0.5-1jh) to releases/0.5/1jh Copied: contrib/1.1/dtach/pristine (from rev 4376, contrib/1.1/dtach/releases/0.5/1jh) Copied: contrib/1.1/dtach/pristine/current (from rev 4408, contrib/1.1/dtach/releases/0.5/1jh/current) From svn at tinysofa.org Mon Sep 13 10:46:00 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:46:00 +1000 (EST) Subject: [tinysofa-svn] r4411 - in contrib/1.1/ettercap: current/specs releases/0.6.b/1bg releases/0.6.b/1bg/current/specs Message-ID: <20040913104600.F3CEE4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:46:00 +1000 (Mon, 13 Sep 2004) New Revision: 4411 Added: contrib/1.1/ettercap/releases/0.6.b/1bg/current/ Modified: contrib/1.1/ettercap/current/specs/ettercap.spec contrib/1.1/ettercap/releases/0.6.b/1bg/current/specs/ettercap.spec Log: ettercap: * integrate current (0.6.b-1bg) as releases/0.6.b/1bg Modified: contrib/1.1/ettercap/current/specs/ettercap.spec =================================================================== --- contrib/1.1/ettercap/current/specs/ettercap.spec 2004-09-13 10:45:49 UTC (rev 4410) +++ contrib/1.1/ettercap/current/specs/ettercap.spec 2004-09-13 10:46:00 UTC (rev 4411) @@ -65,6 +65,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.6.b-1bg +- current (0.6.b-1bg) integrated as 0.6.b-1bg + * Tue Jun 22 2004 Goetz Bock 0.6.b-1bg - build for tinysofa contrib Copied: contrib/1.1/ettercap/releases/0.6.b/1bg/current (from rev 4376, contrib/1.1/ettercap/current) Modified: contrib/1.1/ettercap/releases/0.6.b/1bg/current/specs/ettercap.spec =================================================================== --- contrib/1.1/ettercap/current/specs/ettercap.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/ettercap/releases/0.6.b/1bg/current/specs/ettercap.spec 2004-09-13 10:46:00 UTC (rev 4411) @@ -65,6 +65,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.6.b-1bg +- current (0.6.b-1bg) integrated as 0.6.b-1bg + * Tue Jun 22 2004 Goetz Bock 0.6.b-1bg - build for tinysofa contrib From svn at tinysofa.org Mon Sep 13 10:46:05 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:46:05 +1000 (EST) Subject: [tinysofa-svn] r4412 - contrib/1.1/ettercap Message-ID: <20040913104605.5C4A94E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:46:05 +1000 (Mon, 13 Sep 2004) New Revision: 4412 Removed: contrib/1.1/ettercap/pristine/ Log: ettercap: * removing pristine (0.6.b-1bg) From svn at tinysofa.org Mon Sep 13 10:46:10 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:46:10 +1000 (EST) Subject: [tinysofa-svn] r4413 - in contrib/1.1/ettercap: . pristine Message-ID: <20040913104610.A88754E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:46:10 +1000 (Mon, 13 Sep 2004) New Revision: 4413 Added: contrib/1.1/ettercap/pristine/ contrib/1.1/ettercap/pristine/current/ Log: ettercap: * retarget pristine (0.6.b-1bg) to releases/0.6.b/1bg Copied: contrib/1.1/ettercap/pristine (from rev 4376, contrib/1.1/ettercap/releases/0.6.b/1bg) Copied: contrib/1.1/ettercap/pristine/current (from rev 4411, contrib/1.1/ettercap/releases/0.6.b/1bg/current) From svn at tinysofa.org Mon Sep 13 10:46:19 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:46:19 +1000 (EST) Subject: [tinysofa-svn] r4414 - in contrib/1.1/exim: current/specs releases releases/4.34 releases/4.34/5gd/specs Message-ID: <20040913104619.141F04E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:46:18 +1000 (Mon, 13 Sep 2004) New Revision: 4414 Added: contrib/1.1/exim/releases/4.34/ contrib/1.1/exim/releases/4.34/5gd/ Modified: contrib/1.1/exim/current/specs/exim.spec contrib/1.1/exim/releases/4.34/5gd/specs/exim.spec Log: exim: * integrate current (4.34-5gd) as releases/4.34/5gd Modified: contrib/1.1/exim/current/specs/exim.spec =================================================================== --- contrib/1.1/exim/current/specs/exim.spec 2004-09-13 10:46:10 UTC (rev 4413) +++ contrib/1.1/exim/current/specs/exim.spec 2004-09-13 10:46:18 UTC (rev 4414) @@ -227,6 +227,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 4.34-5gd +- current (4.34-5gd) integrated as 4.34-5gd + * Wed Jun 2 2004 Gerald Dachs 4.34-5gd - spec file cleanups for ts 1.1 - fixed init script Copied: contrib/1.1/exim/releases/4.34/5gd (from rev 4376, contrib/1.1/exim/current) Modified: contrib/1.1/exim/releases/4.34/5gd/specs/exim.spec =================================================================== --- contrib/1.1/exim/current/specs/exim.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/exim/releases/4.34/5gd/specs/exim.spec 2004-09-13 10:46:18 UTC (rev 4414) @@ -227,6 +227,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 4.34-5gd +- current (4.34-5gd) integrated as 4.34-5gd + * Wed Jun 2 2004 Gerald Dachs 4.34-5gd - spec file cleanups for ts 1.1 - fixed init script From svn at tinysofa.org Mon Sep 13 10:46:23 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:46:23 +1000 (EST) Subject: [tinysofa-svn] r4415 - contrib/1.1/exim Message-ID: <20040913104623.6F0E24E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:46:23 +1000 (Mon, 13 Sep 2004) New Revision: 4415 Removed: contrib/1.1/exim/pristine/ Log: exim: * removing pristine (4.34-4gd) From svn at tinysofa.org Mon Sep 13 10:46:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:46:27 +1000 (EST) Subject: [tinysofa-svn] r4416 - contrib/1.1/exim Message-ID: <20040913104627.01A6A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:46:27 +1000 (Mon, 13 Sep 2004) New Revision: 4416 Added: contrib/1.1/exim/pristine/ Log: exim: * retarget pristine (4.34-4gd) to releases/4.34/5gd Copied: contrib/1.1/exim/pristine (from rev 4414, contrib/1.1/exim/releases/4.34/5gd) From svn at tinysofa.org Mon Sep 13 10:46:39 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:46:39 +1000 (EST) Subject: [tinysofa-svn] r4417 - in contrib/1.1/firehol: current/specs releases/1.194 releases/1.194/2gd/specs Message-ID: <20040913104639.469844E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:46:39 +1000 (Mon, 13 Sep 2004) New Revision: 4417 Added: contrib/1.1/firehol/releases/1.194/2gd/ Modified: contrib/1.1/firehol/current/specs/firehol.spec contrib/1.1/firehol/releases/1.194/2gd/specs/firehol.spec Log: firehol: * integrate current (1.194-2gd) as releases/1.194/2gd Modified: contrib/1.1/firehol/current/specs/firehol.spec =================================================================== --- contrib/1.1/firehol/current/specs/firehol.spec 2004-09-13 10:46:27 UTC (rev 4416) +++ contrib/1.1/firehol/current/specs/firehol.spec 2004-09-13 10:46:39 UTC (rev 4417) @@ -55,6 +55,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.194-2gd +- current (1.194-2gd) integrated as 1.194-2gd + * Sat Aug 21 2004 Gerald Dachs 1.194-2gd - spec file cleanups Copied: contrib/1.1/firehol/releases/1.194/2gd (from rev 4376, contrib/1.1/firehol/current) Modified: contrib/1.1/firehol/releases/1.194/2gd/specs/firehol.spec =================================================================== --- contrib/1.1/firehol/current/specs/firehol.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/firehol/releases/1.194/2gd/specs/firehol.spec 2004-09-13 10:46:39 UTC (rev 4417) @@ -55,6 +55,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.194-2gd +- current (1.194-2gd) integrated as 1.194-2gd + * Sat Aug 21 2004 Gerald Dachs 1.194-2gd - spec file cleanups From svn at tinysofa.org Mon Sep 13 10:46:43 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:46:43 +1000 (EST) Subject: [tinysofa-svn] r4418 - contrib/1.1/firehol Message-ID: <20040913104643.679414E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:46:43 +1000 (Mon, 13 Sep 2004) New Revision: 4418 Removed: contrib/1.1/firehol/pristine/ Log: firehol: * removing pristine (1.194-1bg) From svn at tinysofa.org Mon Sep 13 10:46:47 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:46:47 +1000 (EST) Subject: [tinysofa-svn] r4419 - contrib/1.1/firehol Message-ID: <20040913104647.ECFA54E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:46:47 +1000 (Mon, 13 Sep 2004) New Revision: 4419 Added: contrib/1.1/firehol/pristine/ Log: firehol: * retarget pristine (1.194-1bg) to releases/1.194/2gd Copied: contrib/1.1/firehol/pristine (from rev 4417, contrib/1.1/firehol/releases/1.194/2gd) From svn at tinysofa.org Mon Sep 13 10:46:58 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:46:58 +1000 (EST) Subject: [tinysofa-svn] r4420 - in contrib/1.1/fontconfig: current/specs releases/2.2.1/1ok releases/2.2.1/1ok/current/specs Message-ID: <20040913104658.99C6A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:46:58 +1000 (Mon, 13 Sep 2004) New Revision: 4420 Added: contrib/1.1/fontconfig/releases/2.2.1/1ok/current/ Modified: contrib/1.1/fontconfig/current/specs/fontconfig.spec contrib/1.1/fontconfig/releases/2.2.1/1ok/current/specs/fontconfig.spec Log: fontconfig: * integrate current (2.2.1-1ok) as releases/2.2.1/1ok Modified: contrib/1.1/fontconfig/current/specs/fontconfig.spec =================================================================== --- contrib/1.1/fontconfig/current/specs/fontconfig.spec 2004-09-13 10:46:47 UTC (rev 4419) +++ contrib/1.1/fontconfig/current/specs/fontconfig.spec 2004-09-13 10:46:58 UTC (rev 4420) @@ -164,6 +164,9 @@ %endif %changelog +* Mon Sep 13 2004 tsintegrate 2.2.1-1ok +- current (2.2.1-1ok) integrated as 2.2.1-1ok + * Thu May 20 2004 Omar Kilani - tinysofa. Copied: contrib/1.1/fontconfig/releases/2.2.1/1ok/current (from rev 4376, contrib/1.1/fontconfig/current) Modified: contrib/1.1/fontconfig/releases/2.2.1/1ok/current/specs/fontconfig.spec =================================================================== --- contrib/1.1/fontconfig/current/specs/fontconfig.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/fontconfig/releases/2.2.1/1ok/current/specs/fontconfig.spec 2004-09-13 10:46:58 UTC (rev 4420) @@ -164,6 +164,9 @@ %endif %changelog +* Mon Sep 13 2004 tsintegrate 2.2.1-1ok +- current (2.2.1-1ok) integrated as 2.2.1-1ok + * Thu May 20 2004 Omar Kilani - tinysofa. From svn at tinysofa.org Mon Sep 13 10:47:03 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:47:03 +1000 (EST) Subject: [tinysofa-svn] r4421 - contrib/1.1/fontconfig Message-ID: <20040913104703.66EA34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:47:03 +1000 (Mon, 13 Sep 2004) New Revision: 4421 Removed: contrib/1.1/fontconfig/pristine/ Log: fontconfig: * removing pristine (2.2.1-1ok) From svn at tinysofa.org Mon Sep 13 10:47:10 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:47:10 +1000 (EST) Subject: [tinysofa-svn] r4422 - in contrib/1.1/fontconfig: . pristine Message-ID: <20040913104710.0FF804E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:47:09 +1000 (Mon, 13 Sep 2004) New Revision: 4422 Added: contrib/1.1/fontconfig/pristine/ contrib/1.1/fontconfig/pristine/current/ Log: fontconfig: * retarget pristine (2.2.1-1ok) to releases/2.2.1/1ok Copied: contrib/1.1/fontconfig/pristine (from rev 4376, contrib/1.1/fontconfig/releases/2.2.1/1ok) Copied: contrib/1.1/fontconfig/pristine/current (from rev 4420, contrib/1.1/fontconfig/releases/2.2.1/1ok/current) From svn at tinysofa.org Mon Sep 13 10:47:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:47:21 +1000 (EST) Subject: [tinysofa-svn] r4423 - in contrib/1.1/freetype: current/specs releases/2.1.7 releases/2.1.7/2gd/specs Message-ID: <20040913104721.80CA14E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:47:21 +1000 (Mon, 13 Sep 2004) New Revision: 4423 Added: contrib/1.1/freetype/releases/2.1.7/2gd/ Modified: contrib/1.1/freetype/current/specs/freetype.spec contrib/1.1/freetype/releases/2.1.7/2gd/specs/freetype.spec Log: freetype: * integrate current (2.1.7-2gd) as releases/2.1.7/2gd Modified: contrib/1.1/freetype/current/specs/freetype.spec =================================================================== --- contrib/1.1/freetype/current/specs/freetype.spec 2004-09-13 10:47:09 UTC (rev 4422) +++ contrib/1.1/freetype/current/specs/freetype.spec 2004-09-13 10:47:21 UTC (rev 4423) @@ -264,6 +264,9 @@ %{_libdir}/pkgconfig/ %changelog +* Mon Sep 13 2004 tsintegrate 2.1.7-2gd +- current (2.1.7-2gd) integrated as 2.1.7-2gd + * Sat Aug 21 2004 Gerald Dachs 2.1.7-2gd - fixed build requirements Copied: contrib/1.1/freetype/releases/2.1.7/2gd (from rev 4376, contrib/1.1/freetype/current) Modified: contrib/1.1/freetype/releases/2.1.7/2gd/specs/freetype.spec =================================================================== --- contrib/1.1/freetype/current/specs/freetype.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/freetype/releases/2.1.7/2gd/specs/freetype.spec 2004-09-13 10:47:21 UTC (rev 4423) @@ -264,6 +264,9 @@ %{_libdir}/pkgconfig/ %changelog +* Mon Sep 13 2004 tsintegrate 2.1.7-2gd +- current (2.1.7-2gd) integrated as 2.1.7-2gd + * Sat Aug 21 2004 Gerald Dachs 2.1.7-2gd - fixed build requirements From svn at tinysofa.org Mon Sep 13 10:47:25 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:47:25 +1000 (EST) Subject: [tinysofa-svn] r4424 - contrib/1.1/freetype Message-ID: <20040913104725.6A71B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:47:25 +1000 (Mon, 13 Sep 2004) New Revision: 4424 Removed: contrib/1.1/freetype/pristine/ Log: freetype: * removing pristine (2.1.7-1ok) From svn at tinysofa.org Mon Sep 13 10:47:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:47:30 +1000 (EST) Subject: [tinysofa-svn] r4425 - contrib/1.1/freetype Message-ID: <20040913104730.0AAF34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:47:29 +1000 (Mon, 13 Sep 2004) New Revision: 4425 Added: contrib/1.1/freetype/pristine/ Log: freetype: * retarget pristine (2.1.7-1ok) to releases/2.1.7/2gd Copied: contrib/1.1/freetype/pristine (from rev 4423, contrib/1.1/freetype/releases/2.1.7/2gd) From svn at tinysofa.org Mon Sep 13 10:47:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:47:41 +1000 (EST) Subject: [tinysofa-svn] r4426 - in contrib/1.1/geoip: current/specs releases/1.3.4/1bg releases/1.3.4/1bg/current/specs Message-ID: <20040913104741.03AD74E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:47:40 +1000 (Mon, 13 Sep 2004) New Revision: 4426 Added: contrib/1.1/geoip/releases/1.3.4/1bg/current/ Modified: contrib/1.1/geoip/current/specs/geoip.spec contrib/1.1/geoip/releases/1.3.4/1bg/current/specs/geoip.spec Log: geoip: * integrate current (1.3.4-1bg) as releases/1.3.4/1bg Modified: contrib/1.1/geoip/current/specs/geoip.spec =================================================================== --- contrib/1.1/geoip/current/specs/geoip.spec 2004-09-13 10:47:29 UTC (rev 4425) +++ contrib/1.1/geoip/current/specs/geoip.spec 2004-09-13 10:47:40 UTC (rev 4426) @@ -116,6 +116,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.3.4-1bg +- current (1.3.4-1bg) integrated as 1.3.4-1bg + * Wed Jun 23 2004 Goetz Bock 1.3.4-1bg - initial build for tinysofa contrib. Copied: contrib/1.1/geoip/releases/1.3.4/1bg/current (from rev 4376, contrib/1.1/geoip/current) Modified: contrib/1.1/geoip/releases/1.3.4/1bg/current/specs/geoip.spec =================================================================== --- contrib/1.1/geoip/current/specs/geoip.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/geoip/releases/1.3.4/1bg/current/specs/geoip.spec 2004-09-13 10:47:40 UTC (rev 4426) @@ -116,6 +116,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.3.4-1bg +- current (1.3.4-1bg) integrated as 1.3.4-1bg + * Wed Jun 23 2004 Goetz Bock 1.3.4-1bg - initial build for tinysofa contrib. From svn at tinysofa.org Mon Sep 13 10:47:45 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:47:45 +1000 (EST) Subject: [tinysofa-svn] r4427 - contrib/1.1/geoip Message-ID: <20040913104745.5DD904E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:47:45 +1000 (Mon, 13 Sep 2004) New Revision: 4427 Removed: contrib/1.1/geoip/pristine/ Log: geoip: * removing pristine (1.3.4-1bg) From svn at tinysofa.org Mon Sep 13 10:47:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:47:50 +1000 (EST) Subject: [tinysofa-svn] r4428 - in contrib/1.1/geoip: . pristine Message-ID: <20040913104750.01A7E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:47:50 +1000 (Mon, 13 Sep 2004) New Revision: 4428 Added: contrib/1.1/geoip/pristine/ contrib/1.1/geoip/pristine/current/ Log: geoip: * retarget pristine (1.3.4-1bg) to releases/1.3.4/1bg Copied: contrib/1.1/geoip/pristine (from rev 4376, contrib/1.1/geoip/releases/1.3.4/1bg) Copied: contrib/1.1/geoip/pristine/current (from rev 4426, contrib/1.1/geoip/releases/1.3.4/1bg/current) From svn at tinysofa.org Mon Sep 13 10:48:03 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:48:03 +1000 (EST) Subject: [tinysofa-svn] r4429 - in contrib/1.1/hddtemp: current/specs releases/0.2.8.11/1bg releases/0.2.8.11/1bg/current/specs Message-ID: <20040913104803.0C3D74E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:48:02 +1000 (Mon, 13 Sep 2004) New Revision: 4429 Added: contrib/1.1/hddtemp/releases/0.2.8.11/1bg/current/ Modified: contrib/1.1/hddtemp/current/specs/hddtemp.spec contrib/1.1/hddtemp/releases/0.2.8.11/1bg/current/specs/hddtemp.spec Log: hddtemp: * integrate current (0.2.8.11-1bg) as releases/0.2.8.11/1bg Modified: contrib/1.1/hddtemp/current/specs/hddtemp.spec =================================================================== --- contrib/1.1/hddtemp/current/specs/hddtemp.spec 2004-09-13 10:47:50 UTC (rev 4428) +++ contrib/1.1/hddtemp/current/specs/hddtemp.spec 2004-09-13 10:48:02 UTC (rev 4429) @@ -49,6 +49,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.2.8.11-1bg +- current (0.2.8.11-1bg) integrated as 0.2.8.11-1bg + * Wed Jun 9 2004 Goetz Bock 0.2.8.11-1bg - new upstream: 0.3-beta11 - new version of DB file Copied: contrib/1.1/hddtemp/releases/0.2.8.11/1bg/current (from rev 4376, contrib/1.1/hddtemp/current) Modified: contrib/1.1/hddtemp/releases/0.2.8.11/1bg/current/specs/hddtemp.spec =================================================================== --- contrib/1.1/hddtemp/current/specs/hddtemp.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/hddtemp/releases/0.2.8.11/1bg/current/specs/hddtemp.spec 2004-09-13 10:48:02 UTC (rev 4429) @@ -49,6 +49,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.2.8.11-1bg +- current (0.2.8.11-1bg) integrated as 0.2.8.11-1bg + * Wed Jun 9 2004 Goetz Bock 0.2.8.11-1bg - new upstream: 0.3-beta11 - new version of DB file From svn at tinysofa.org Mon Sep 13 10:48:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:48:07 +1000 (EST) Subject: [tinysofa-svn] r4430 - contrib/1.1/hddtemp Message-ID: <20040913104807.4EF704E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:48:07 +1000 (Mon, 13 Sep 2004) New Revision: 4430 Removed: contrib/1.1/hddtemp/pristine/ Log: hddtemp: * removing pristine (0.2.8.11-1bg) From svn at tinysofa.org Mon Sep 13 10:48:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:48:12 +1000 (EST) Subject: [tinysofa-svn] r4431 - in contrib/1.1/hddtemp: . pristine Message-ID: <20040913104812.C30C04E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:48:12 +1000 (Mon, 13 Sep 2004) New Revision: 4431 Added: contrib/1.1/hddtemp/pristine/ contrib/1.1/hddtemp/pristine/current/ Log: hddtemp: * retarget pristine (0.2.8.11-1bg) to releases/0.2.8.11/1bg Copied: contrib/1.1/hddtemp/pristine (from rev 4376, contrib/1.1/hddtemp/releases/0.2.8.11/1bg) Copied: contrib/1.1/hddtemp/pristine/current (from rev 4429, contrib/1.1/hddtemp/releases/0.2.8.11/1bg/current) From svn at tinysofa.org Mon Sep 13 10:48:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:48:24 +1000 (EST) Subject: [tinysofa-svn] r4432 - in contrib/1.1/irssi: current/specs releases/0.8.9 releases/0.8.9/3jh/specs Message-ID: <20040913104824.45EC94E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:48:24 +1000 (Mon, 13 Sep 2004) New Revision: 4432 Added: contrib/1.1/irssi/releases/0.8.9/3jh/ Modified: contrib/1.1/irssi/current/specs/irssi.spec contrib/1.1/irssi/releases/0.8.9/3jh/specs/irssi.spec Log: irssi: * integrate current (0.8.9-3jh) as releases/0.8.9/3jh Modified: contrib/1.1/irssi/current/specs/irssi.spec =================================================================== --- contrib/1.1/irssi/current/specs/irssi.spec 2004-09-13 10:48:12 UTC (rev 4431) +++ contrib/1.1/irssi/current/specs/irssi.spec 2004-09-13 10:48:24 UTC (rev 4432) @@ -84,6 +84,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.8.9-3jh +- current (0.8.9-3jh) integrated as 0.8.9-3jh + * Wed Aug 25 2004 Jaakko Heinonen - fix documentation permissions and unify doc directory Copied: contrib/1.1/irssi/releases/0.8.9/3jh (from rev 4376, contrib/1.1/irssi/current) Modified: contrib/1.1/irssi/releases/0.8.9/3jh/specs/irssi.spec =================================================================== --- contrib/1.1/irssi/current/specs/irssi.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/irssi/releases/0.8.9/3jh/specs/irssi.spec 2004-09-13 10:48:24 UTC (rev 4432) @@ -84,6 +84,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.8.9-3jh +- current (0.8.9-3jh) integrated as 0.8.9-3jh + * Wed Aug 25 2004 Jaakko Heinonen - fix documentation permissions and unify doc directory From svn at tinysofa.org Mon Sep 13 10:48:29 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:48:29 +1000 (EST) Subject: [tinysofa-svn] r4433 - contrib/1.1/irssi Message-ID: <20040913104829.506084E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:48:29 +1000 (Mon, 13 Sep 2004) New Revision: 4433 Removed: contrib/1.1/irssi/pristine/ Log: irssi: * removing pristine (0.8.9-1ok) From svn at tinysofa.org Mon Sep 13 10:48:33 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:48:33 +1000 (EST) Subject: [tinysofa-svn] r4434 - contrib/1.1/irssi Message-ID: <20040913104833.D6E994E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:48:33 +1000 (Mon, 13 Sep 2004) New Revision: 4434 Added: contrib/1.1/irssi/pristine/ Log: irssi: * retarget pristine (0.8.9-1ok) to releases/0.8.9/3jh Copied: contrib/1.1/irssi/pristine (from rev 4432, contrib/1.1/irssi/releases/0.8.9/3jh) From svn at tinysofa.org Mon Sep 13 10:48:44 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:48:44 +1000 (EST) Subject: [tinysofa-svn] r4435 - in contrib/1.1/jfsutils: current/specs releases/1.1.6 releases/1.1.6/2jh/specs Message-ID: <20040913104844.48DC14E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:48:44 +1000 (Mon, 13 Sep 2004) New Revision: 4435 Added: contrib/1.1/jfsutils/releases/1.1.6/2jh/ Modified: contrib/1.1/jfsutils/current/specs/jfsutils.spec contrib/1.1/jfsutils/releases/1.1.6/2jh/specs/jfsutils.spec Log: jfsutils: * integrate current (1.1.6-2jh) as releases/1.1.6/2jh Modified: contrib/1.1/jfsutils/current/specs/jfsutils.spec =================================================================== --- contrib/1.1/jfsutils/current/specs/jfsutils.spec 2004-09-13 10:48:33 UTC (rev 4434) +++ contrib/1.1/jfsutils/current/specs/jfsutils.spec 2004-09-13 10:48:44 UTC (rev 4435) @@ -40,6 +40,9 @@ %doc AUTHORS COPYING INSTALL NEWS README ChangeLog %changelog +* Mon Sep 13 2004 tsintegrate 1.1.6-2jh +- current (1.1.6-2jh) integrated as 1.1.6-2jh + * Wed May 19 2004 tsintegrate 1.1.6-1ts - current (1.1.6-1ok) integrated as 1.1.6-1ts for release 1.0-U1 Copied: contrib/1.1/jfsutils/releases/1.1.6/2jh (from rev 4376, contrib/1.1/jfsutils/current) Modified: contrib/1.1/jfsutils/releases/1.1.6/2jh/specs/jfsutils.spec =================================================================== --- contrib/1.1/jfsutils/current/specs/jfsutils.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/jfsutils/releases/1.1.6/2jh/specs/jfsutils.spec 2004-09-13 10:48:44 UTC (rev 4435) @@ -40,6 +40,9 @@ %doc AUTHORS COPYING INSTALL NEWS README ChangeLog %changelog +* Mon Sep 13 2004 tsintegrate 1.1.6-2jh +- current (1.1.6-2jh) integrated as 1.1.6-2jh + * Wed May 19 2004 tsintegrate 1.1.6-1ts - current (1.1.6-1ok) integrated as 1.1.6-1ts for release 1.0-U1 From svn at tinysofa.org Mon Sep 13 10:48:48 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:48:48 +1000 (EST) Subject: [tinysofa-svn] r4436 - contrib/1.1/jfsutils Message-ID: <20040913104848.5EB904E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:48:48 +1000 (Mon, 13 Sep 2004) New Revision: 4436 Removed: contrib/1.1/jfsutils/pristine/ Log: jfsutils: * removing pristine (1.1.6-1ts) From svn at tinysofa.org Mon Sep 13 10:48:52 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:48:52 +1000 (EST) Subject: [tinysofa-svn] r4437 - contrib/1.1/jfsutils Message-ID: <20040913104852.EC0544E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:48:52 +1000 (Mon, 13 Sep 2004) New Revision: 4437 Added: contrib/1.1/jfsutils/pristine/ Log: jfsutils: * retarget pristine (1.1.6-1ts) to releases/1.1.6/2jh Copied: contrib/1.1/jfsutils/pristine (from rev 4435, contrib/1.1/jfsutils/releases/1.1.6/2jh) From svn at tinysofa.org Mon Sep 13 10:49:04 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:49:04 +1000 (EST) Subject: [tinysofa-svn] r4438 - in contrib/1.1/lha: current/specs releases/1.14i/1ok releases/1.14i/1ok/current/specs Message-ID: <20040913104904.64BA14E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:49:04 +1000 (Mon, 13 Sep 2004) New Revision: 4438 Added: contrib/1.1/lha/releases/1.14i/1ok/current/ Modified: contrib/1.1/lha/current/specs/lha.spec contrib/1.1/lha/releases/1.14i/1ok/current/specs/lha.spec Log: lha: * integrate current (1.14i-1ok) as releases/1.14i/1ok Modified: contrib/1.1/lha/current/specs/lha.spec =================================================================== --- contrib/1.1/lha/current/specs/lha.spec 2004-09-13 10:48:52 UTC (rev 4437) +++ contrib/1.1/lha/current/specs/lha.spec 2004-09-13 10:49:04 UTC (rev 4438) @@ -35,6 +35,9 @@ %{_bindir}/lha %changelog +* Mon Sep 13 2004 tsintegrate 1.14i-1ok +- current (1.14i-1ok) integrated as 1.14i-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa Copied: contrib/1.1/lha/releases/1.14i/1ok/current (from rev 4376, contrib/1.1/lha/current) Modified: contrib/1.1/lha/releases/1.14i/1ok/current/specs/lha.spec =================================================================== --- contrib/1.1/lha/current/specs/lha.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/lha/releases/1.14i/1ok/current/specs/lha.spec 2004-09-13 10:49:04 UTC (rev 4438) @@ -35,6 +35,9 @@ %{_bindir}/lha %changelog +* Mon Sep 13 2004 tsintegrate 1.14i-1ok +- current (1.14i-1ok) integrated as 1.14i-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa From svn at tinysofa.org Mon Sep 13 10:49:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:49:08 +1000 (EST) Subject: [tinysofa-svn] r4439 - contrib/1.1/lha Message-ID: <20040913104908.57BD74E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:49:08 +1000 (Mon, 13 Sep 2004) New Revision: 4439 Removed: contrib/1.1/lha/pristine/ Log: lha: * removing pristine (1.14i-1ok) From svn at tinysofa.org Mon Sep 13 10:49:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:49:13 +1000 (EST) Subject: [tinysofa-svn] r4440 - in contrib/1.1/lha: . pristine Message-ID: <20040913104913.A6C764E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:49:13 +1000 (Mon, 13 Sep 2004) New Revision: 4440 Added: contrib/1.1/lha/pristine/ contrib/1.1/lha/pristine/current/ Log: lha: * retarget pristine (1.14i-1ok) to releases/1.14i/1ok Copied: contrib/1.1/lha/pristine (from rev 4376, contrib/1.1/lha/releases/1.14i/1ok) Copied: contrib/1.1/lha/pristine/current (from rev 4438, contrib/1.1/lha/releases/1.14i/1ok/current) From svn at tinysofa.org Mon Sep 13 10:49:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:49:24 +1000 (EST) Subject: [tinysofa-svn] r4441 - in contrib/1.1/librsync: current/specs releases/0.9.6/3jh releases/0.9.6/3jh/current/specs Message-ID: <20040913104924.14BC34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:49:23 +1000 (Mon, 13 Sep 2004) New Revision: 4441 Added: contrib/1.1/librsync/releases/0.9.6/3jh/current/ Modified: contrib/1.1/librsync/current/specs/librsync.spec contrib/1.1/librsync/releases/0.9.6/3jh/current/specs/librsync.spec Log: librsync: * integrate current (0.9.6-3jh) as releases/0.9.6/3jh Modified: contrib/1.1/librsync/current/specs/librsync.spec =================================================================== --- contrib/1.1/librsync/current/specs/librsync.spec 2004-09-13 10:49:13 UTC (rev 4440) +++ contrib/1.1/librsync/current/specs/librsync.spec 2004-09-13 10:49:23 UTC (rev 4441) @@ -1,7 +1,7 @@ Summary: Rsync libraries Name: librsync Version: 0.9.6 -Release: 3jh +Release: 3jh License: LGPL Group: contrib Source: %{name}-%{version}.tar.gz @@ -91,6 +91,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.9.6-3jh +- current (0.9.6-3jh) integrated as 0.9.6-3jh + * Thu May 13 2004 Jaakko Heinonen 0.9.6-3jh - corrected library permissions - package .la file too Copied: contrib/1.1/librsync/releases/0.9.6/3jh/current (from rev 4376, contrib/1.1/librsync/current) Modified: contrib/1.1/librsync/releases/0.9.6/3jh/current/specs/librsync.spec =================================================================== --- contrib/1.1/librsync/current/specs/librsync.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/librsync/releases/0.9.6/3jh/current/specs/librsync.spec 2004-09-13 10:49:23 UTC (rev 4441) @@ -1,7 +1,7 @@ Summary: Rsync libraries Name: librsync Version: 0.9.6 -Release: 3jh +Release: 3jh License: LGPL Group: contrib Source: %{name}-%{version}.tar.gz @@ -91,6 +91,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.9.6-3jh +- current (0.9.6-3jh) integrated as 0.9.6-3jh + * Thu May 13 2004 Jaakko Heinonen 0.9.6-3jh - corrected library permissions - package .la file too From svn at tinysofa.org Mon Sep 13 10:49:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:49:28 +1000 (EST) Subject: [tinysofa-svn] r4442 - contrib/1.1/librsync Message-ID: <20040913104928.57AB24E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:49:28 +1000 (Mon, 13 Sep 2004) New Revision: 4442 Removed: contrib/1.1/librsync/pristine/ Log: librsync: * removing pristine (0.9.6-3jh) From svn at tinysofa.org Mon Sep 13 10:49:34 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:49:34 +1000 (EST) Subject: [tinysofa-svn] r4443 - in contrib/1.1/librsync: . pristine Message-ID: <20040913104934.0D8204E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:49:33 +1000 (Mon, 13 Sep 2004) New Revision: 4443 Added: contrib/1.1/librsync/pristine/ contrib/1.1/librsync/pristine/current/ Log: librsync: * retarget pristine (0.9.6-3jh) to releases/0.9.6/3jh Copied: contrib/1.1/librsync/pristine (from rev 4376, contrib/1.1/librsync/releases/0.9.6/3jh) Copied: contrib/1.1/librsync/pristine/current (from rev 4441, contrib/1.1/librsync/releases/0.9.6/3jh/current) From svn at tinysofa.org Mon Sep 13 10:49:55 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:49:55 +1000 (EST) Subject: [tinysofa-svn] r4444 - in contrib/1.1/lzop: current/specs releases/1.01/1ok releases/1.01/1ok/current/specs Message-ID: <20040913104955.777FE4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:49:55 +1000 (Mon, 13 Sep 2004) New Revision: 4444 Added: contrib/1.1/lzop/releases/1.01/1ok/current/ Modified: contrib/1.1/lzop/current/specs/lzop.spec contrib/1.1/lzop/releases/1.01/1ok/current/specs/lzop.spec Log: lzop: * integrate current (1.01-1ok) as releases/1.01/1ok Modified: contrib/1.1/lzop/current/specs/lzop.spec =================================================================== --- contrib/1.1/lzop/current/specs/lzop.spec 2004-09-13 10:49:33 UTC (rev 4443) +++ contrib/1.1/lzop/current/specs/lzop.spec 2004-09-13 10:49:55 UTC (rev 4444) @@ -43,6 +43,9 @@ %doc AUTHORS NEWS README THANKS %changelog +* Mon Sep 13 2004 tsintegrate 1.01-1ok +- current (1.01-1ok) integrated as 1.01-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa - Update URL and Source. Copied: contrib/1.1/lzop/releases/1.01/1ok/current (from rev 4376, contrib/1.1/lzop/current) Modified: contrib/1.1/lzop/releases/1.01/1ok/current/specs/lzop.spec =================================================================== --- contrib/1.1/lzop/current/specs/lzop.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/lzop/releases/1.01/1ok/current/specs/lzop.spec 2004-09-13 10:49:55 UTC (rev 4444) @@ -43,6 +43,9 @@ %doc AUTHORS NEWS README THANKS %changelog +* Mon Sep 13 2004 tsintegrate 1.01-1ok +- current (1.01-1ok) integrated as 1.01-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa - Update URL and Source. From svn at tinysofa.org Mon Sep 13 10:49:59 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:49:59 +1000 (EST) Subject: [tinysofa-svn] r4445 - contrib/1.1/lzop Message-ID: <20040913104959.3C0C64E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:49:59 +1000 (Mon, 13 Sep 2004) New Revision: 4445 Removed: contrib/1.1/lzop/pristine/ Log: lzop: * removing pristine (1.01-1ok) From svn at tinysofa.org Mon Sep 13 10:50:04 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:50:04 +1000 (EST) Subject: [tinysofa-svn] r4446 - in contrib/1.1/lzop: . pristine Message-ID: <20040913105004.E129C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:50:04 +1000 (Mon, 13 Sep 2004) New Revision: 4446 Added: contrib/1.1/lzop/pristine/ contrib/1.1/lzop/pristine/current/ Log: lzop: * retarget pristine (1.01-1ok) to releases/1.01/1ok Copied: contrib/1.1/lzop/pristine (from rev 4376, contrib/1.1/lzop/releases/1.01/1ok) Copied: contrib/1.1/lzop/pristine/current (from rev 4444, contrib/1.1/lzop/releases/1.01/1ok/current) From svn at tinysofa.org Mon Sep 13 10:50:16 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:50:16 +1000 (EST) Subject: [tinysofa-svn] r4447 - in contrib/1.1/mailf: current/specs releases/1.0rc6 releases/1.0rc6/2gd/specs Message-ID: <20040913105016.0B5B14E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:50:15 +1000 (Mon, 13 Sep 2004) New Revision: 4447 Added: contrib/1.1/mailf/releases/1.0rc6/2gd/ Modified: contrib/1.1/mailf/current/specs/mailf.spec contrib/1.1/mailf/releases/1.0rc6/2gd/specs/mailf.spec Log: mailf: * integrate current (1.0rc6-2gd) as releases/1.0rc6/2gd Modified: contrib/1.1/mailf/current/specs/mailf.spec =================================================================== --- contrib/1.1/mailf/current/specs/mailf.spec 2004-09-13 10:50:04 UTC (rev 4446) +++ contrib/1.1/mailf/current/specs/mailf.spec 2004-09-13 10:50:15 UTC (rev 4447) @@ -1,7 +1,7 @@ Summary: Steines Mailfilter for Mail Multidrop Name: mailf Version: 1.0rc6 -Release: 2gd +Release: 2gd License: GNU General Public License (GPL) Group: contrib URL: http://www.steines.com/mailf/ @@ -39,6 +39,9 @@ %{_bindir}/* %changelog +* Mon Sep 13 2004 tsintegrate 1.0rc6-2gd +- current (1.0rc6-2gd) integrated as 1.0rc6-2gd + * Sat Aug 20 2004 Gerald Dachs 1.0rc6-2gd - cleanups Copied: contrib/1.1/mailf/releases/1.0rc6/2gd (from rev 4376, contrib/1.1/mailf/current) Modified: contrib/1.1/mailf/releases/1.0rc6/2gd/specs/mailf.spec =================================================================== --- contrib/1.1/mailf/current/specs/mailf.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/mailf/releases/1.0rc6/2gd/specs/mailf.spec 2004-09-13 10:50:15 UTC (rev 4447) @@ -1,7 +1,7 @@ Summary: Steines Mailfilter for Mail Multidrop Name: mailf Version: 1.0rc6 -Release: 2gd +Release: 2gd License: GNU General Public License (GPL) Group: contrib URL: http://www.steines.com/mailf/ @@ -39,6 +39,9 @@ %{_bindir}/* %changelog +* Mon Sep 13 2004 tsintegrate 1.0rc6-2gd +- current (1.0rc6-2gd) integrated as 1.0rc6-2gd + * Sat Aug 20 2004 Gerald Dachs 1.0rc6-2gd - cleanups From svn at tinysofa.org Mon Sep 13 10:50:20 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:50:20 +1000 (EST) Subject: [tinysofa-svn] r4448 - contrib/1.1/mailf Message-ID: <20040913105020.42B2E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:50:20 +1000 (Mon, 13 Sep 2004) New Revision: 4448 Removed: contrib/1.1/mailf/pristine/ Log: mailf: * removing pristine (1.0rc6-1gd) From svn at tinysofa.org Mon Sep 13 10:50:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:50:24 +1000 (EST) Subject: [tinysofa-svn] r4449 - contrib/1.1/mailf Message-ID: <20040913105024.CE6D44E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:50:24 +1000 (Mon, 13 Sep 2004) New Revision: 4449 Added: contrib/1.1/mailf/pristine/ Log: mailf: * retarget pristine (1.0rc6-1gd) to releases/1.0rc6/2gd Copied: contrib/1.1/mailf/pristine (from rev 4447, contrib/1.1/mailf/releases/1.0rc6/2gd) From svn at tinysofa.org Mon Sep 13 10:50:36 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:50:36 +1000 (EST) Subject: [tinysofa-svn] r4450 - in contrib/1.1/mhash: current/specs releases/0.9.1/1ok releases/0.9.1/1ok/current/specs Message-ID: <20040913105036.BCD384E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:50:36 +1000 (Mon, 13 Sep 2004) New Revision: 4450 Added: contrib/1.1/mhash/releases/0.9.1/1ok/current/ Modified: contrib/1.1/mhash/current/specs/mhash.spec contrib/1.1/mhash/releases/0.9.1/1ok/current/specs/mhash.spec Log: mhash: * integrate current (0.9.1-1ok) as releases/0.9.1/1ok Modified: contrib/1.1/mhash/current/specs/mhash.spec =================================================================== --- contrib/1.1/mhash/current/specs/mhash.spec 2004-09-13 10:50:24 UTC (rev 4449) +++ contrib/1.1/mhash/current/specs/mhash.spec 2004-09-13 10:50:36 UTC (rev 4450) @@ -59,6 +59,9 @@ %{_includedir}/mhash.h %changelog +* Mon Sep 13 2004 tsintegrate 0.9.1-1ok +- current (0.9.1-1ok) integrated as 0.9.1-1ok + * Mon May 03 2004 Omar Kilani 0.9.1-1ts - Rebuild - New upstream: 0.9.1. Copied: contrib/1.1/mhash/releases/0.9.1/1ok/current (from rev 4376, contrib/1.1/mhash/current) Modified: contrib/1.1/mhash/releases/0.9.1/1ok/current/specs/mhash.spec =================================================================== --- contrib/1.1/mhash/current/specs/mhash.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/mhash/releases/0.9.1/1ok/current/specs/mhash.spec 2004-09-13 10:50:36 UTC (rev 4450) @@ -59,6 +59,9 @@ %{_includedir}/mhash.h %changelog +* Mon Sep 13 2004 tsintegrate 0.9.1-1ok +- current (0.9.1-1ok) integrated as 0.9.1-1ok + * Mon May 03 2004 Omar Kilani 0.9.1-1ts - Rebuild - New upstream: 0.9.1. From svn at tinysofa.org Mon Sep 13 10:50:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:50:41 +1000 (EST) Subject: [tinysofa-svn] r4451 - contrib/1.1/mhash Message-ID: <20040913105041.6930A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:50:41 +1000 (Mon, 13 Sep 2004) New Revision: 4451 Removed: contrib/1.1/mhash/pristine/ Log: mhash: * removing pristine (0.9.1-1ok) From svn at tinysofa.org Mon Sep 13 10:50:46 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:50:46 +1000 (EST) Subject: [tinysofa-svn] r4452 - in contrib/1.1/mhash: . pristine Message-ID: <20040913105046.B4A384E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:50:46 +1000 (Mon, 13 Sep 2004) New Revision: 4452 Added: contrib/1.1/mhash/pristine/ contrib/1.1/mhash/pristine/current/ Log: mhash: * retarget pristine (0.9.1-1ok) to releases/0.9.1/1ok Copied: contrib/1.1/mhash/pristine (from rev 4376, contrib/1.1/mhash/releases/0.9.1/1ok) Copied: contrib/1.1/mhash/pristine/current (from rev 4450, contrib/1.1/mhash/releases/0.9.1/1ok/current) From svn at tinysofa.org Mon Sep 13 10:51:01 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:51:01 +1000 (EST) Subject: [tinysofa-svn] r4453 - in contrib/1.1/neon: current/specs releases/0.24.6/3bg releases/0.24.6/3bg/current/specs Message-ID: <20040913105101.0F3D24E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:51:00 +1000 (Mon, 13 Sep 2004) New Revision: 4453 Added: contrib/1.1/neon/releases/0.24.6/3bg/current/ Modified: contrib/1.1/neon/current/specs/neon.spec contrib/1.1/neon/releases/0.24.6/3bg/current/specs/neon.spec Log: neon: * integrate current (0.24.6-3bg) as releases/0.24.6/3bg Modified: contrib/1.1/neon/current/specs/neon.spec =================================================================== --- contrib/1.1/neon/current/specs/neon.spec 2004-09-13 10:50:46 UTC (rev 4452) +++ contrib/1.1/neon/current/specs/neon.spec 2004-09-13 10:51:00 UTC (rev 4453) @@ -78,6 +78,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.24.6-3bg +- current (0.24.6-3bg) integrated as 0.24.6-3bg + * Sun May 23 2004 Goetz Bock 0.24.6-3bg - imported into svn - small (coemstic) cleanup Copied: contrib/1.1/neon/releases/0.24.6/3bg/current (from rev 4376, contrib/1.1/neon/current) Modified: contrib/1.1/neon/releases/0.24.6/3bg/current/specs/neon.spec =================================================================== --- contrib/1.1/neon/current/specs/neon.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/neon/releases/0.24.6/3bg/current/specs/neon.spec 2004-09-13 10:51:00 UTC (rev 4453) @@ -78,6 +78,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.24.6-3bg +- current (0.24.6-3bg) integrated as 0.24.6-3bg + * Sun May 23 2004 Goetz Bock 0.24.6-3bg - imported into svn - small (coemstic) cleanup From svn at tinysofa.org Mon Sep 13 10:51:05 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:51:05 +1000 (EST) Subject: [tinysofa-svn] r4454 - contrib/1.1/neon Message-ID: <20040913105105.5CAAB4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:51:05 +1000 (Mon, 13 Sep 2004) New Revision: 4454 Removed: contrib/1.1/neon/pristine/ Log: neon: * removing pristine (0.24.6-3bg) From svn at tinysofa.org Mon Sep 13 10:51:10 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:51:10 +1000 (EST) Subject: [tinysofa-svn] r4455 - in contrib/1.1/neon: . pristine Message-ID: <20040913105110.EABE44E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:51:10 +1000 (Mon, 13 Sep 2004) New Revision: 4455 Added: contrib/1.1/neon/pristine/ contrib/1.1/neon/pristine/current/ Log: neon: * retarget pristine (0.24.6-3bg) to releases/0.24.6/3bg Copied: contrib/1.1/neon/pristine (from rev 4376, contrib/1.1/neon/releases/0.24.6/3bg) Copied: contrib/1.1/neon/pristine/current (from rev 4453, contrib/1.1/neon/releases/0.24.6/3bg/current) From svn at tinysofa.org Mon Sep 13 10:51:18 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:51:18 +1000 (EST) Subject: [tinysofa-svn] r4456 - in contrib/1.1/perl-archive-tar: current/specs releases releases/1.10 releases/1.10/2gd/specs Message-ID: <20040913105118.F27424E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:51:18 +1000 (Mon, 13 Sep 2004) New Revision: 4456 Added: contrib/1.1/perl-archive-tar/releases/1.10/ contrib/1.1/perl-archive-tar/releases/1.10/2gd/ Modified: contrib/1.1/perl-archive-tar/current/specs/perl-archive-tar.spec contrib/1.1/perl-archive-tar/releases/1.10/2gd/specs/perl-archive-tar.spec Log: perl-archive-tar: * integrate current (1.10-2gd) as releases/1.10/2gd Modified: contrib/1.1/perl-archive-tar/current/specs/perl-archive-tar.spec =================================================================== --- contrib/1.1/perl-archive-tar/current/specs/perl-archive-tar.spec 2004-09-13 10:51:10 UTC (rev 4455) +++ contrib/1.1/perl-archive-tar/current/specs/perl-archive-tar.spec 2004-09-13 10:51:18 UTC (rev 4456) @@ -46,6 +46,9 @@ %doc MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 1.10-2gd +- current (1.10-2gd) integrated as 1.10-2gd + * Tue Jul 27 2004 Gerald Dachs 1.10-2gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-archive-tar/releases/1.10/2gd (from rev 4376, contrib/1.1/perl-archive-tar/current) Modified: contrib/1.1/perl-archive-tar/releases/1.10/2gd/specs/perl-archive-tar.spec =================================================================== --- contrib/1.1/perl-archive-tar/current/specs/perl-archive-tar.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-archive-tar/releases/1.10/2gd/specs/perl-archive-tar.spec 2004-09-13 10:51:18 UTC (rev 4456) @@ -46,6 +46,9 @@ %doc MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 1.10-2gd +- current (1.10-2gd) integrated as 1.10-2gd + * Tue Jul 27 2004 Gerald Dachs 1.10-2gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:51:23 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:51:23 +1000 (EST) Subject: [tinysofa-svn] r4457 - contrib/1.1/perl-archive-tar Message-ID: <20040913105123.45CD74E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:51:23 +1000 (Mon, 13 Sep 2004) New Revision: 4457 Removed: contrib/1.1/perl-archive-tar/pristine/ Log: perl-archive-tar: * removing pristine (1.08-16gd) From svn at tinysofa.org Mon Sep 13 10:51:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:51:27 +1000 (EST) Subject: [tinysofa-svn] r4458 - contrib/1.1/perl-archive-tar Message-ID: <20040913105127.EC4624E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:51:27 +1000 (Mon, 13 Sep 2004) New Revision: 4458 Added: contrib/1.1/perl-archive-tar/pristine/ Log: perl-archive-tar: * retarget pristine (1.08-16gd) to releases/1.10/2gd Copied: contrib/1.1/perl-archive-tar/pristine (from rev 4456, contrib/1.1/perl-archive-tar/releases/1.10/2gd) From svn at tinysofa.org Mon Sep 13 10:51:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:51:35 +1000 (EST) Subject: [tinysofa-svn] r4459 - in contrib/1.1/perl-archive-zip: current/specs releases releases/1.12 releases/1.12/2gd/specs Message-ID: <20040913105135.DD4E94E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:51:35 +1000 (Mon, 13 Sep 2004) New Revision: 4459 Added: contrib/1.1/perl-archive-zip/releases/1.12/ contrib/1.1/perl-archive-zip/releases/1.12/2gd/ Modified: contrib/1.1/perl-archive-zip/current/specs/perl-archive-zip.spec contrib/1.1/perl-archive-zip/releases/1.12/2gd/specs/perl-archive-zip.spec Log: perl-archive-zip: * integrate current (1.12-2gd) as releases/1.12/2gd Modified: contrib/1.1/perl-archive-zip/current/specs/perl-archive-zip.spec =================================================================== --- contrib/1.1/perl-archive-zip/current/specs/perl-archive-zip.spec 2004-09-13 10:51:27 UTC (rev 4458) +++ contrib/1.1/perl-archive-zip/current/specs/perl-archive-zip.spec 2004-09-13 10:51:35 UTC (rev 4459) @@ -48,6 +48,9 @@ %doc Changes INSTALL README %changelog +* Mon Sep 13 2004 tsintegrate 1.12-2gd +- current (1.12-2gd) integrated as 1.12-2gd + * Fri Aug 20 2004 Gerald Dachs 1.12-2gd - fixed build requirements Copied: contrib/1.1/perl-archive-zip/releases/1.12/2gd (from rev 4376, contrib/1.1/perl-archive-zip/current) Modified: contrib/1.1/perl-archive-zip/releases/1.12/2gd/specs/perl-archive-zip.spec =================================================================== --- contrib/1.1/perl-archive-zip/current/specs/perl-archive-zip.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-archive-zip/releases/1.12/2gd/specs/perl-archive-zip.spec 2004-09-13 10:51:35 UTC (rev 4459) @@ -48,6 +48,9 @@ %doc Changes INSTALL README %changelog +* Mon Sep 13 2004 tsintegrate 1.12-2gd +- current (1.12-2gd) integrated as 1.12-2gd + * Fri Aug 20 2004 Gerald Dachs 1.12-2gd - fixed build requirements From svn at tinysofa.org Mon Sep 13 10:51:40 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:51:40 +1000 (EST) Subject: [tinysofa-svn] r4460 - contrib/1.1/perl-archive-zip Message-ID: <20040913105140.5C1024E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:51:40 +1000 (Mon, 13 Sep 2004) New Revision: 4460 Removed: contrib/1.1/perl-archive-zip/pristine/ Log: perl-archive-zip: * removing pristine (1.09-16gd) From svn at tinysofa.org Mon Sep 13 10:51:44 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:51:44 +1000 (EST) Subject: [tinysofa-svn] r4461 - contrib/1.1/perl-archive-zip Message-ID: <20040913105144.E03644E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:51:44 +1000 (Mon, 13 Sep 2004) New Revision: 4461 Added: contrib/1.1/perl-archive-zip/pristine/ Log: perl-archive-zip: * retarget pristine (1.09-16gd) to releases/1.12/2gd Copied: contrib/1.1/perl-archive-zip/pristine (from rev 4459, contrib/1.1/perl-archive-zip/releases/1.12/2gd) From svn at tinysofa.org Mon Sep 13 10:51:55 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:51:55 +1000 (EST) Subject: [tinysofa-svn] r4462 - in contrib/1.1/perl-berkeleydb: current/specs releases/0.25 releases/0.25/3gd/specs Message-ID: <20040913105155.DFB0B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:51:55 +1000 (Mon, 13 Sep 2004) New Revision: 4462 Added: contrib/1.1/perl-berkeleydb/releases/0.25/3gd/ Modified: contrib/1.1/perl-berkeleydb/current/specs/perl-berkeleydb.spec contrib/1.1/perl-berkeleydb/releases/0.25/3gd/specs/perl-berkeleydb.spec Log: perl-berkeleydb: * integrate current (0.25-3gd) as releases/0.25/3gd Modified: contrib/1.1/perl-berkeleydb/current/specs/perl-berkeleydb.spec =================================================================== --- contrib/1.1/perl-berkeleydb/current/specs/perl-berkeleydb.spec 2004-09-13 10:51:44 UTC (rev 4461) +++ contrib/1.1/perl-berkeleydb/current/specs/perl-berkeleydb.spec 2004-09-13 10:51:55 UTC (rev 4462) @@ -46,6 +46,9 @@ %doc Changes README %changelog +* Mon Sep 13 2004 tsintegrate 0.25-3gd +- current (0.25-3gd) integrated as 0.25-3gd + * Tue Jul 27 2004 Gerald Dachs 0.25-3gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-berkeleydb/releases/0.25/3gd (from rev 4376, contrib/1.1/perl-berkeleydb/current) Modified: contrib/1.1/perl-berkeleydb/releases/0.25/3gd/specs/perl-berkeleydb.spec =================================================================== --- contrib/1.1/perl-berkeleydb/current/specs/perl-berkeleydb.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-berkeleydb/releases/0.25/3gd/specs/perl-berkeleydb.spec 2004-09-13 10:51:55 UTC (rev 4462) @@ -46,6 +46,9 @@ %doc Changes README %changelog +* Mon Sep 13 2004 tsintegrate 0.25-3gd +- current (0.25-3gd) integrated as 0.25-3gd + * Tue Jul 27 2004 Gerald Dachs 0.25-3gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:52:00 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:52:00 +1000 (EST) Subject: [tinysofa-svn] r4463 - contrib/1.1/perl-berkeleydb Message-ID: <20040913105200.4F7B04E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:52:00 +1000 (Mon, 13 Sep 2004) New Revision: 4463 Removed: contrib/1.1/perl-berkeleydb/pristine/ Log: perl-berkeleydb: * removing pristine (0.25-1gd) From svn at tinysofa.org Mon Sep 13 10:52:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:52:07 +1000 (EST) Subject: [tinysofa-svn] r4464 - contrib/1.1/perl-berkeleydb Message-ID: <20040913105207.CEA534E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:52:07 +1000 (Mon, 13 Sep 2004) New Revision: 4464 Added: contrib/1.1/perl-berkeleydb/pristine/ Log: perl-berkeleydb: * retarget pristine (0.25-1gd) to releases/0.25/3gd Copied: contrib/1.1/perl-berkeleydb/pristine (from rev 4462, contrib/1.1/perl-berkeleydb/releases/0.25/3gd) From svn at tinysofa.org Mon Sep 13 10:52:19 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:52:19 +1000 (EST) Subject: [tinysofa-svn] r4465 - in contrib/1.1/perl-compress-zlib: current/specs releases/1.33 releases/1.33/18gd/specs Message-ID: <20040913105219.E9B134E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:52:19 +1000 (Mon, 13 Sep 2004) New Revision: 4465 Added: contrib/1.1/perl-compress-zlib/releases/1.33/18gd/ Modified: contrib/1.1/perl-compress-zlib/current/specs/perl-compress-zlib.spec contrib/1.1/perl-compress-zlib/releases/1.33/18gd/specs/perl-compress-zlib.spec Log: perl-compress-zlib: * integrate current (1.33-18gd) as releases/1.33/18gd Modified: contrib/1.1/perl-compress-zlib/current/specs/perl-compress-zlib.spec =================================================================== --- contrib/1.1/perl-compress-zlib/current/specs/perl-compress-zlib.spec 2004-09-13 10:52:07 UTC (rev 4464) +++ contrib/1.1/perl-compress-zlib/current/specs/perl-compress-zlib.spec 2004-09-13 10:52:19 UTC (rev 4465) @@ -46,6 +46,9 @@ %doc ANNOUNCE Changes MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 1.33-18gd +- current (1.33-18gd) integrated as 1.33-18gd + * Tue Jul 27 2004 Gerald Dachs 1.33-18gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-compress-zlib/releases/1.33/18gd (from rev 4376, contrib/1.1/perl-compress-zlib/current) Modified: contrib/1.1/perl-compress-zlib/releases/1.33/18gd/specs/perl-compress-zlib.spec =================================================================== --- contrib/1.1/perl-compress-zlib/current/specs/perl-compress-zlib.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-compress-zlib/releases/1.33/18gd/specs/perl-compress-zlib.spec 2004-09-13 10:52:19 UTC (rev 4465) @@ -46,6 +46,9 @@ %doc ANNOUNCE Changes MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 1.33-18gd +- current (1.33-18gd) integrated as 1.33-18gd + * Tue Jul 27 2004 Gerald Dachs 1.33-18gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:52:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:52:24 +1000 (EST) Subject: [tinysofa-svn] r4466 - contrib/1.1/perl-compress-zlib Message-ID: <20040913105224.421DE4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:52:24 +1000 (Mon, 13 Sep 2004) New Revision: 4466 Removed: contrib/1.1/perl-compress-zlib/pristine/ Log: perl-compress-zlib: * removing pristine (1.33-16gd) From svn at tinysofa.org Mon Sep 13 10:52:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:52:28 +1000 (EST) Subject: [tinysofa-svn] r4467 - contrib/1.1/perl-compress-zlib Message-ID: <20040913105228.EFA494E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:52:28 +1000 (Mon, 13 Sep 2004) New Revision: 4467 Added: contrib/1.1/perl-compress-zlib/pristine/ Log: perl-compress-zlib: * retarget pristine (1.33-16gd) to releases/1.33/18gd Copied: contrib/1.1/perl-compress-zlib/pristine (from rev 4465, contrib/1.1/perl-compress-zlib/releases/1.33/18gd) From svn at tinysofa.org Mon Sep 13 10:52:40 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:52:40 +1000 (EST) Subject: [tinysofa-svn] r4468 - in contrib/1.1/perl-convert-tnef: current/specs releases/0.17 releases/0.17/18gd/specs Message-ID: <20040913105240.354BA4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:52:40 +1000 (Mon, 13 Sep 2004) New Revision: 4468 Added: contrib/1.1/perl-convert-tnef/releases/0.17/18gd/ Modified: contrib/1.1/perl-convert-tnef/current/specs/perl-convert-tnef.spec contrib/1.1/perl-convert-tnef/releases/0.17/18gd/specs/perl-convert-tnef.spec Log: perl-convert-tnef: * integrate current (0.17-18gd) as releases/0.17/18gd Modified: contrib/1.1/perl-convert-tnef/current/specs/perl-convert-tnef.spec =================================================================== --- contrib/1.1/perl-convert-tnef/current/specs/perl-convert-tnef.spec 2004-09-13 10:52:28 UTC (rev 4467) +++ contrib/1.1/perl-convert-tnef/current/specs/perl-convert-tnef.spec 2004-09-13 10:52:40 UTC (rev 4468) @@ -47,6 +47,9 @@ %doc Changes MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 0.17-18gd +- current (0.17-18gd) integrated as 0.17-18gd + * Tue Jul 27 2004 Gerald Dachs 0.17-18gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-convert-tnef/releases/0.17/18gd (from rev 4376, contrib/1.1/perl-convert-tnef/current) Modified: contrib/1.1/perl-convert-tnef/releases/0.17/18gd/specs/perl-convert-tnef.spec =================================================================== --- contrib/1.1/perl-convert-tnef/current/specs/perl-convert-tnef.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-convert-tnef/releases/0.17/18gd/specs/perl-convert-tnef.spec 2004-09-13 10:52:40 UTC (rev 4468) @@ -47,6 +47,9 @@ %doc Changes MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 0.17-18gd +- current (0.17-18gd) integrated as 0.17-18gd + * Tue Jul 27 2004 Gerald Dachs 0.17-18gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:52:44 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:52:44 +1000 (EST) Subject: [tinysofa-svn] r4469 - contrib/1.1/perl-convert-tnef Message-ID: <20040913105244.4F0BD4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:52:44 +1000 (Mon, 13 Sep 2004) New Revision: 4469 Removed: contrib/1.1/perl-convert-tnef/pristine/ Log: perl-convert-tnef: * removing pristine (0.17-16gd) From svn at tinysofa.org Mon Sep 13 10:52:48 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:52:48 +1000 (EST) Subject: [tinysofa-svn] r4470 - contrib/1.1/perl-convert-tnef Message-ID: <20040913105248.ECBCE4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:52:48 +1000 (Mon, 13 Sep 2004) New Revision: 4470 Added: contrib/1.1/perl-convert-tnef/pristine/ Log: perl-convert-tnef: * retarget pristine (0.17-16gd) to releases/0.17/18gd Copied: contrib/1.1/perl-convert-tnef/pristine (from rev 4468, contrib/1.1/perl-convert-tnef/releases/0.17/18gd) From svn at tinysofa.org Mon Sep 13 10:52:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:52:57 +1000 (EST) Subject: [tinysofa-svn] r4471 - in contrib/1.1/perl-convert-uulib: current/specs releases releases/1.03 releases/1.03/2gd/specs Message-ID: <20040913105257.795114E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:52:57 +1000 (Mon, 13 Sep 2004) New Revision: 4471 Added: contrib/1.1/perl-convert-uulib/releases/1.03/ contrib/1.1/perl-convert-uulib/releases/1.03/2gd/ Modified: contrib/1.1/perl-convert-uulib/current/specs/perl-convert-uulib.spec contrib/1.1/perl-convert-uulib/releases/1.03/2gd/specs/perl-convert-uulib.spec Log: perl-convert-uulib: * integrate current (1.03-2gd) as releases/1.03/2gd Modified: contrib/1.1/perl-convert-uulib/current/specs/perl-convert-uulib.spec =================================================================== --- contrib/1.1/perl-convert-uulib/current/specs/perl-convert-uulib.spec 2004-09-13 10:52:48 UTC (rev 4470) +++ contrib/1.1/perl-convert-uulib/current/specs/perl-convert-uulib.spec 2004-09-13 10:52:57 UTC (rev 4471) @@ -48,6 +48,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.03-2gd +- current (1.03-2gd) integrated as 1.03-2gd + * Tue Jul 27 2004 Gerald Dachs 1.03-1gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-convert-uulib/releases/1.03/2gd (from rev 4376, contrib/1.1/perl-convert-uulib/current) Modified: contrib/1.1/perl-convert-uulib/releases/1.03/2gd/specs/perl-convert-uulib.spec =================================================================== --- contrib/1.1/perl-convert-uulib/current/specs/perl-convert-uulib.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-convert-uulib/releases/1.03/2gd/specs/perl-convert-uulib.spec 2004-09-13 10:52:57 UTC (rev 4471) @@ -48,6 +48,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.03-2gd +- current (1.03-2gd) integrated as 1.03-2gd + * Tue Jul 27 2004 Gerald Dachs 1.03-1gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:53:01 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:53:01 +1000 (EST) Subject: [tinysofa-svn] r4472 - contrib/1.1/perl-convert-uulib Message-ID: <20040913105301.4EBD84E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:53:01 +1000 (Mon, 13 Sep 2004) New Revision: 4472 Removed: contrib/1.1/perl-convert-uulib/pristine/ Log: perl-convert-uulib: * removing pristine (1.0-16gd) From svn at tinysofa.org Mon Sep 13 10:53:05 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:53:05 +1000 (EST) Subject: [tinysofa-svn] r4473 - contrib/1.1/perl-convert-uulib Message-ID: <20040913105305.DE84E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:53:05 +1000 (Mon, 13 Sep 2004) New Revision: 4473 Added: contrib/1.1/perl-convert-uulib/pristine/ Log: perl-convert-uulib: * retarget pristine (1.0-16gd) to releases/1.03/2gd Copied: contrib/1.1/perl-convert-uulib/pristine (from rev 4471, contrib/1.1/perl-convert-uulib/releases/1.03/2gd) From svn at tinysofa.org Mon Sep 13 10:53:14 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:53:14 +1000 (EST) Subject: [tinysofa-svn] r4474 - in contrib/1.1/perl-digest-perl-md5: current/specs releases releases/1.6 releases/1.6/3gd/specs Message-ID: <20040913105314.3101A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:53:13 +1000 (Mon, 13 Sep 2004) New Revision: 4474 Added: contrib/1.1/perl-digest-perl-md5/releases/1.6/ contrib/1.1/perl-digest-perl-md5/releases/1.6/3gd/ Modified: contrib/1.1/perl-digest-perl-md5/current/specs/perl-digest-perl-md5.spec contrib/1.1/perl-digest-perl-md5/releases/1.6/3gd/specs/perl-digest-perl-md5.spec Log: perl-digest-perl-md5: * integrate current (1.6-3gd) as releases/1.6/3gd Modified: contrib/1.1/perl-digest-perl-md5/current/specs/perl-digest-perl-md5.spec =================================================================== --- contrib/1.1/perl-digest-perl-md5/current/specs/perl-digest-perl-md5.spec 2004-09-13 10:53:05 UTC (rev 4473) +++ contrib/1.1/perl-digest-perl-md5/current/specs/perl-digest-perl-md5.spec 2004-09-13 10:53:13 UTC (rev 4474) @@ -47,6 +47,9 @@ %doc CHANGES INSTALL MANIFEST %changelog +* Mon Sep 13 2004 tsintegrate 1.6-3gd +- current (1.6-3gd) integrated as 1.6-3gd + * Sun Aug 1 2004 Gerald Dachs 1.6-3gd - fixed wrong path to false Copied: contrib/1.1/perl-digest-perl-md5/releases/1.6/3gd (from rev 4376, contrib/1.1/perl-digest-perl-md5/current) Modified: contrib/1.1/perl-digest-perl-md5/releases/1.6/3gd/specs/perl-digest-perl-md5.spec =================================================================== --- contrib/1.1/perl-digest-perl-md5/current/specs/perl-digest-perl-md5.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-digest-perl-md5/releases/1.6/3gd/specs/perl-digest-perl-md5.spec 2004-09-13 10:53:13 UTC (rev 4474) @@ -47,6 +47,9 @@ %doc CHANGES INSTALL MANIFEST %changelog +* Mon Sep 13 2004 tsintegrate 1.6-3gd +- current (1.6-3gd) integrated as 1.6-3gd + * Sun Aug 1 2004 Gerald Dachs 1.6-3gd - fixed wrong path to false From svn at tinysofa.org Mon Sep 13 10:53:18 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:53:18 +1000 (EST) Subject: [tinysofa-svn] r4475 - contrib/1.1/perl-digest-perl-md5 Message-ID: <20040913105318.4B6334E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:53:18 +1000 (Mon, 13 Sep 2004) New Revision: 4475 Removed: contrib/1.1/perl-digest-perl-md5/pristine/ Log: perl-digest-perl-md5: * removing pristine (1.5-16gd) From svn at tinysofa.org Mon Sep 13 10:53:22 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:53:22 +1000 (EST) Subject: [tinysofa-svn] r4476 - contrib/1.1/perl-digest-perl-md5 Message-ID: <20040913105322.BF1214E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:53:22 +1000 (Mon, 13 Sep 2004) New Revision: 4476 Added: contrib/1.1/perl-digest-perl-md5/pristine/ Log: perl-digest-perl-md5: * retarget pristine (1.5-16gd) to releases/1.6/3gd Copied: contrib/1.1/perl-digest-perl-md5/pristine (from rev 4474, contrib/1.1/perl-digest-perl-md5/releases/1.6/3gd) From svn at tinysofa.org Mon Sep 13 10:53:31 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:53:31 +1000 (EST) Subject: [tinysofa-svn] r4477 - in contrib/1.1/perl-html-parser: current/specs releases releases/3.36 releases/3.36/2gd/specs Message-ID: <20040913105331.748DC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:53:31 +1000 (Mon, 13 Sep 2004) New Revision: 4477 Added: contrib/1.1/perl-html-parser/releases/3.36/ contrib/1.1/perl-html-parser/releases/3.36/2gd/ Modified: contrib/1.1/perl-html-parser/current/specs/perl-html-parser.spec contrib/1.1/perl-html-parser/releases/3.36/2gd/specs/perl-html-parser.spec Log: perl-html-parser: * integrate current (3.36-2gd) as releases/3.36/2gd Modified: contrib/1.1/perl-html-parser/current/specs/perl-html-parser.spec =================================================================== --- contrib/1.1/perl-html-parser/current/specs/perl-html-parser.spec 2004-09-13 10:53:22 UTC (rev 4476) +++ contrib/1.1/perl-html-parser/current/specs/perl-html-parser.spec 2004-09-13 10:53:31 UTC (rev 4477) @@ -51,6 +51,9 @@ %doc Changes README %changelog +* Mon Sep 13 2004 tsintegrate 3.36-2gd +- current (3.36-2gd) integrated as 3.36-2gd + * Tue Jul 27 2004 Gerald Dachs 3.36-2gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-html-parser/releases/3.36/2gd (from rev 4376, contrib/1.1/perl-html-parser/current) Modified: contrib/1.1/perl-html-parser/releases/3.36/2gd/specs/perl-html-parser.spec =================================================================== --- contrib/1.1/perl-html-parser/current/specs/perl-html-parser.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-html-parser/releases/3.36/2gd/specs/perl-html-parser.spec 2004-09-13 10:53:31 UTC (rev 4477) @@ -51,6 +51,9 @@ %doc Changes README %changelog +* Mon Sep 13 2004 tsintegrate 3.36-2gd +- current (3.36-2gd) integrated as 3.36-2gd + * Tue Jul 27 2004 Gerald Dachs 3.36-2gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:53:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:53:35 +1000 (EST) Subject: [tinysofa-svn] r4478 - contrib/1.1/perl-html-parser Message-ID: <20040913105335.494C94E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:53:35 +1000 (Mon, 13 Sep 2004) New Revision: 4478 Removed: contrib/1.1/perl-html-parser/pristine/ Log: perl-html-parser: * removing pristine (3.35-16gd) From svn at tinysofa.org Mon Sep 13 10:53:39 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:53:39 +1000 (EST) Subject: [tinysofa-svn] r4479 - contrib/1.1/perl-html-parser Message-ID: <20040913105339.E3E304E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:53:39 +1000 (Mon, 13 Sep 2004) New Revision: 4479 Added: contrib/1.1/perl-html-parser/pristine/ Log: perl-html-parser: * retarget pristine (3.35-16gd) to releases/3.36/2gd Copied: contrib/1.1/perl-html-parser/pristine (from rev 4477, contrib/1.1/perl-html-parser/releases/3.36/2gd) From svn at tinysofa.org Mon Sep 13 10:53:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:53:50 +1000 (EST) Subject: [tinysofa-svn] r4480 - in contrib/1.1/perl-html-tagset: current/specs releases/3.03 releases/3.03/18gd/specs Message-ID: <20040913105350.7ED024E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:53:50 +1000 (Mon, 13 Sep 2004) New Revision: 4480 Added: contrib/1.1/perl-html-tagset/releases/3.03/18gd/ Modified: contrib/1.1/perl-html-tagset/current/specs/perl-html-tagset.spec contrib/1.1/perl-html-tagset/releases/3.03/18gd/specs/perl-html-tagset.spec Log: perl-html-tagset: * integrate current (3.03-18gd) as releases/3.03/18gd Modified: contrib/1.1/perl-html-tagset/current/specs/perl-html-tagset.spec =================================================================== --- contrib/1.1/perl-html-tagset/current/specs/perl-html-tagset.spec 2004-09-13 10:53:39 UTC (rev 4479) +++ contrib/1.1/perl-html-tagset/current/specs/perl-html-tagset.spec 2004-09-13 10:53:50 UTC (rev 4480) @@ -46,6 +46,9 @@ %doc ChangeLog README %changelog +* Mon Sep 13 2004 tsintegrate 3.03-18gd +- current (3.03-18gd) integrated as 3.03-18gd + * Tue Jul 27 2004 Gerald Dachs 3.03-18gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-html-tagset/releases/3.03/18gd (from rev 4376, contrib/1.1/perl-html-tagset/current) Modified: contrib/1.1/perl-html-tagset/releases/3.03/18gd/specs/perl-html-tagset.spec =================================================================== --- contrib/1.1/perl-html-tagset/current/specs/perl-html-tagset.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-html-tagset/releases/3.03/18gd/specs/perl-html-tagset.spec 2004-09-13 10:53:50 UTC (rev 4480) @@ -46,6 +46,9 @@ %doc ChangeLog README %changelog +* Mon Sep 13 2004 tsintegrate 3.03-18gd +- current (3.03-18gd) integrated as 3.03-18gd + * Tue Jul 27 2004 Gerald Dachs 3.03-18gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:53:56 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:53:56 +1000 (EST) Subject: [tinysofa-svn] r4481 - contrib/1.1/perl-html-tagset Message-ID: <20040913105356.7F30B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:53:56 +1000 (Mon, 13 Sep 2004) New Revision: 4481 Removed: contrib/1.1/perl-html-tagset/pristine/ Log: perl-html-tagset: * removing pristine (3.03-16gd) From svn at tinysofa.org Mon Sep 13 10:54:00 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:54:00 +1000 (EST) Subject: [tinysofa-svn] r4482 - contrib/1.1/perl-html-tagset Message-ID: <20040913105400.E34B04E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:54:00 +1000 (Mon, 13 Sep 2004) New Revision: 4482 Added: contrib/1.1/perl-html-tagset/pristine/ Log: perl-html-tagset: * retarget pristine (3.03-16gd) to releases/3.03/18gd Copied: contrib/1.1/perl-html-tagset/pristine (from rev 4480, contrib/1.1/perl-html-tagset/releases/3.03/18gd) From svn at tinysofa.org Mon Sep 13 10:54:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:54:12 +1000 (EST) Subject: [tinysofa-svn] r4483 - in contrib/1.1/perl-inline: current/specs releases/0.44 releases/0.44/3gd/specs Message-ID: <20040913105412.A8E454E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:54:12 +1000 (Mon, 13 Sep 2004) New Revision: 4483 Added: contrib/1.1/perl-inline/releases/0.44/3gd/ Modified: contrib/1.1/perl-inline/current/specs/perl-inline.spec contrib/1.1/perl-inline/releases/0.44/3gd/specs/perl-inline.spec Log: perl-inline: * integrate current (0.44-3gd) as releases/0.44/3gd Modified: contrib/1.1/perl-inline/current/specs/perl-inline.spec =================================================================== --- contrib/1.1/perl-inline/current/specs/perl-inline.spec 2004-09-13 10:54:00 UTC (rev 4482) +++ contrib/1.1/perl-inline/current/specs/perl-inline.spec 2004-09-13 10:54:12 UTC (rev 4483) @@ -47,6 +47,9 @@ %doc Changes README %changelog +* Mon Sep 13 2004 tsintegrate 0.44-3gd +- current (0.44-3gd) integrated as 0.44-3gd + * Sat Aug 21 2004 Gerald Dachs 0.44-3gd - cleaned up spec file Copied: contrib/1.1/perl-inline/releases/0.44/3gd (from rev 4376, contrib/1.1/perl-inline/current) Modified: contrib/1.1/perl-inline/releases/0.44/3gd/specs/perl-inline.spec =================================================================== --- contrib/1.1/perl-inline/current/specs/perl-inline.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-inline/releases/0.44/3gd/specs/perl-inline.spec 2004-09-13 10:54:12 UTC (rev 4483) @@ -47,6 +47,9 @@ %doc Changes README %changelog +* Mon Sep 13 2004 tsintegrate 0.44-3gd +- current (0.44-3gd) integrated as 0.44-3gd + * Sat Aug 21 2004 Gerald Dachs 0.44-3gd - cleaned up spec file From svn at tinysofa.org Mon Sep 13 10:54:17 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:54:17 +1000 (EST) Subject: [tinysofa-svn] r4484 - contrib/1.1/perl-inline Message-ID: <20040913105417.20F484E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:54:16 +1000 (Mon, 13 Sep 2004) New Revision: 4484 Removed: contrib/1.1/perl-inline/pristine/ Log: perl-inline: * removing pristine (0.44-1gd) From svn at tinysofa.org Mon Sep 13 10:54:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:54:21 +1000 (EST) Subject: [tinysofa-svn] r4485 - contrib/1.1/perl-inline Message-ID: <20040913105421.D9FA64E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:54:21 +1000 (Mon, 13 Sep 2004) New Revision: 4485 Added: contrib/1.1/perl-inline/pristine/ Log: perl-inline: * retarget pristine (0.44-1gd) to releases/0.44/3gd Copied: contrib/1.1/perl-inline/pristine (from rev 4483, contrib/1.1/perl-inline/releases/0.44/3gd) From svn at tinysofa.org Mon Sep 13 10:54:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:54:32 +1000 (EST) Subject: [tinysofa-svn] r4486 - in contrib/1.1/perl-io-multiplex: current/specs releases/1.08 releases/1.08/18gd/specs Message-ID: <20040913105432.E3E1F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:54:32 +1000 (Mon, 13 Sep 2004) New Revision: 4486 Added: contrib/1.1/perl-io-multiplex/releases/1.08/18gd/ Modified: contrib/1.1/perl-io-multiplex/current/specs/perl-io-multiplex.spec contrib/1.1/perl-io-multiplex/releases/1.08/18gd/specs/perl-io-multiplex.spec Log: perl-io-multiplex: * integrate current (1.08-18gd) as releases/1.08/18gd Modified: contrib/1.1/perl-io-multiplex/current/specs/perl-io-multiplex.spec =================================================================== --- contrib/1.1/perl-io-multiplex/current/specs/perl-io-multiplex.spec 2004-09-13 10:54:21 UTC (rev 4485) +++ contrib/1.1/perl-io-multiplex/current/specs/perl-io-multiplex.spec 2004-09-13 10:54:32 UTC (rev 4486) @@ -46,6 +46,9 @@ %doc Changes MANIFEST README TODO %changelog +* Mon Sep 13 2004 tsintegrate 1.08-18gd +- current (1.08-18gd) integrated as 1.08-18gd + * Tue Jul 27 2004 Gerald Dachs 1.08-18gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-io-multiplex/releases/1.08/18gd (from rev 4376, contrib/1.1/perl-io-multiplex/current) Modified: contrib/1.1/perl-io-multiplex/releases/1.08/18gd/specs/perl-io-multiplex.spec =================================================================== --- contrib/1.1/perl-io-multiplex/current/specs/perl-io-multiplex.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-io-multiplex/releases/1.08/18gd/specs/perl-io-multiplex.spec 2004-09-13 10:54:32 UTC (rev 4486) @@ -46,6 +46,9 @@ %doc Changes MANIFEST README TODO %changelog +* Mon Sep 13 2004 tsintegrate 1.08-18gd +- current (1.08-18gd) integrated as 1.08-18gd + * Tue Jul 27 2004 Gerald Dachs 1.08-18gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:54:37 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:54:37 +1000 (EST) Subject: [tinysofa-svn] r4487 - contrib/1.1/perl-io-multiplex Message-ID: <20040913105437.3FF164E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:54:37 +1000 (Mon, 13 Sep 2004) New Revision: 4487 Removed: contrib/1.1/perl-io-multiplex/pristine/ Log: perl-io-multiplex: * removing pristine (1.08-16gd) From svn at tinysofa.org Mon Sep 13 10:54:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:54:41 +1000 (EST) Subject: [tinysofa-svn] r4488 - contrib/1.1/perl-io-multiplex Message-ID: <20040913105441.E208C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:54:41 +1000 (Mon, 13 Sep 2004) New Revision: 4488 Added: contrib/1.1/perl-io-multiplex/pristine/ Log: perl-io-multiplex: * retarget pristine (1.08-16gd) to releases/1.08/18gd Copied: contrib/1.1/perl-io-multiplex/pristine (from rev 4486, contrib/1.1/perl-io-multiplex/releases/1.08/18gd) From svn at tinysofa.org Mon Sep 13 10:54:53 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:54:53 +1000 (EST) Subject: [tinysofa-svn] r4490 - contrib/1.1/perl-io-socket-ssl Message-ID: <20040913105453.4960F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:54:53 +1000 (Mon, 13 Sep 2004) New Revision: 4490 Removed: contrib/1.1/perl-io-socket-ssl/pristine/ Log: perl-io-socket-ssl: * removing pristine (0.95-16gd) From svn at tinysofa.org Mon Sep 13 10:54:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:54:49 +1000 (EST) Subject: [tinysofa-svn] r4489 - in contrib/1.1/perl-io-socket-ssl: current/specs releases releases/0.96 releases/0.96/2gd/specs Message-ID: <20040913105449.969454E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:54:49 +1000 (Mon, 13 Sep 2004) New Revision: 4489 Added: contrib/1.1/perl-io-socket-ssl/releases/0.96/ contrib/1.1/perl-io-socket-ssl/releases/0.96/2gd/ Modified: contrib/1.1/perl-io-socket-ssl/current/specs/perl-io-socket-ssl.spec contrib/1.1/perl-io-socket-ssl/releases/0.96/2gd/specs/perl-io-socket-ssl.spec Log: perl-io-socket-ssl: * integrate current (0.96-2gd) as releases/0.96/2gd Modified: contrib/1.1/perl-io-socket-ssl/current/specs/perl-io-socket-ssl.spec =================================================================== --- contrib/1.1/perl-io-socket-ssl/current/specs/perl-io-socket-ssl.spec 2004-09-13 10:54:41 UTC (rev 4488) +++ contrib/1.1/perl-io-socket-ssl/current/specs/perl-io-socket-ssl.spec 2004-09-13 10:54:49 UTC (rev 4489) @@ -47,6 +47,9 @@ %doc BUGS MANIFEST README docs Changes certs example %changelog +* Mon Sep 13 2004 tsintegrate 0.96-2gd +- current (0.96-2gd) integrated as 0.96-2gd + * Tue Jul 27 2004 Gerald Dachs 0.96-2gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-io-socket-ssl/releases/0.96/2gd (from rev 4376, contrib/1.1/perl-io-socket-ssl/current) Modified: contrib/1.1/perl-io-socket-ssl/releases/0.96/2gd/specs/perl-io-socket-ssl.spec =================================================================== --- contrib/1.1/perl-io-socket-ssl/current/specs/perl-io-socket-ssl.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-io-socket-ssl/releases/0.96/2gd/specs/perl-io-socket-ssl.spec 2004-09-13 10:54:49 UTC (rev 4489) @@ -47,6 +47,9 @@ %doc BUGS MANIFEST README docs Changes certs example %changelog +* Mon Sep 13 2004 tsintegrate 0.96-2gd +- current (0.96-2gd) integrated as 0.96-2gd + * Tue Jul 27 2004 Gerald Dachs 0.96-2gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:54:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:54:57 +1000 (EST) Subject: [tinysofa-svn] r4491 - contrib/1.1/perl-io-socket-ssl Message-ID: <20040913105457.DEF544E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:54:57 +1000 (Mon, 13 Sep 2004) New Revision: 4491 Added: contrib/1.1/perl-io-socket-ssl/pristine/ Log: perl-io-socket-ssl: * retarget pristine (0.95-16gd) to releases/0.96/2gd Copied: contrib/1.1/perl-io-socket-ssl/pristine (from rev 4489, contrib/1.1/perl-io-socket-ssl/releases/0.96/2gd) From svn at tinysofa.org Mon Sep 13 10:55:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:55:08 +1000 (EST) Subject: [tinysofa-svn] r4492 - in contrib/1.1/perl-io-stringy: current/specs releases/2.109 releases/2.109/18gd/specs Message-ID: <20040913105508.92C4C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:55:08 +1000 (Mon, 13 Sep 2004) New Revision: 4492 Added: contrib/1.1/perl-io-stringy/releases/2.109/18gd/ Modified: contrib/1.1/perl-io-stringy/current/specs/perl-io-stringy.spec contrib/1.1/perl-io-stringy/releases/2.109/18gd/specs/perl-io-stringy.spec Log: perl-io-stringy: * integrate current (2.109-18gd) as releases/2.109/18gd Modified: contrib/1.1/perl-io-stringy/current/specs/perl-io-stringy.spec =================================================================== --- contrib/1.1/perl-io-stringy/current/specs/perl-io-stringy.spec 2004-09-13 10:54:57 UTC (rev 4491) +++ contrib/1.1/perl-io-stringy/current/specs/perl-io-stringy.spec 2004-09-13 10:55:08 UTC (rev 4492) @@ -46,6 +46,9 @@ %doc COPYING README docs MANIFEST README.system examples %changelog +* Mon Sep 13 2004 tsintegrate 2.109-18gd +- current (2.109-18gd) integrated as 2.109-18gd + * Tue Jul 27 2004 Gerald Dachs 2.109-18gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-io-stringy/releases/2.109/18gd (from rev 4376, contrib/1.1/perl-io-stringy/current) Modified: contrib/1.1/perl-io-stringy/releases/2.109/18gd/specs/perl-io-stringy.spec =================================================================== --- contrib/1.1/perl-io-stringy/current/specs/perl-io-stringy.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-io-stringy/releases/2.109/18gd/specs/perl-io-stringy.spec 2004-09-13 10:55:08 UTC (rev 4492) @@ -46,6 +46,9 @@ %doc COPYING README docs MANIFEST README.system examples %changelog +* Mon Sep 13 2004 tsintegrate 2.109-18gd +- current (2.109-18gd) integrated as 2.109-18gd + * Tue Jul 27 2004 Gerald Dachs 2.109-18gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:55:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:55:13 +1000 (EST) Subject: [tinysofa-svn] r4493 - contrib/1.1/perl-io-stringy Message-ID: <20040913105513.35D044E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:55:13 +1000 (Mon, 13 Sep 2004) New Revision: 4493 Removed: contrib/1.1/perl-io-stringy/pristine/ Log: perl-io-stringy: * removing pristine (2.109-16gd) From svn at tinysofa.org Mon Sep 13 10:55:17 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:55:17 +1000 (EST) Subject: [tinysofa-svn] r4494 - contrib/1.1/perl-io-stringy Message-ID: <20040913105517.D66264E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:55:17 +1000 (Mon, 13 Sep 2004) New Revision: 4494 Added: contrib/1.1/perl-io-stringy/pristine/ Log: perl-io-stringy: * retarget pristine (2.109-16gd) to releases/2.109/18gd Copied: contrib/1.1/perl-io-stringy/pristine (from rev 4492, contrib/1.1/perl-io-stringy/releases/2.109/18gd) From svn at tinysofa.org Mon Sep 13 10:55:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:55:28 +1000 (EST) Subject: [tinysofa-svn] r4495 - in contrib/1.1/perl-io-zlib: current/specs releases/1.01 releases/1.01/18gd/specs Message-ID: <20040913105528.A849C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:55:28 +1000 (Mon, 13 Sep 2004) New Revision: 4495 Added: contrib/1.1/perl-io-zlib/releases/1.01/18gd/ Modified: contrib/1.1/perl-io-zlib/current/specs/perl-io-zlib.spec contrib/1.1/perl-io-zlib/releases/1.01/18gd/specs/perl-io-zlib.spec Log: perl-io-zlib: * integrate current (1.01-18gd) as releases/1.01/18gd Modified: contrib/1.1/perl-io-zlib/current/specs/perl-io-zlib.spec =================================================================== --- contrib/1.1/perl-io-zlib/current/specs/perl-io-zlib.spec 2004-09-13 10:55:17 UTC (rev 4494) +++ contrib/1.1/perl-io-zlib/current/specs/perl-io-zlib.spec 2004-09-13 10:55:28 UTC (rev 4495) @@ -47,6 +47,9 @@ %doc ChangeLog MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 1.01-18gd +- current (1.01-18gd) integrated as 1.01-18gd + * Tue Jul 27 2004 Gerald Dachs 1.01-18gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-io-zlib/releases/1.01/18gd (from rev 4376, contrib/1.1/perl-io-zlib/current) Modified: contrib/1.1/perl-io-zlib/releases/1.01/18gd/specs/perl-io-zlib.spec =================================================================== --- contrib/1.1/perl-io-zlib/current/specs/perl-io-zlib.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-io-zlib/releases/1.01/18gd/specs/perl-io-zlib.spec 2004-09-13 10:55:28 UTC (rev 4495) @@ -47,6 +47,9 @@ %doc ChangeLog MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 1.01-18gd +- current (1.01-18gd) integrated as 1.01-18gd + * Tue Jul 27 2004 Gerald Dachs 1.01-18gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:55:33 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:55:33 +1000 (EST) Subject: [tinysofa-svn] r4496 - contrib/1.1/perl-io-zlib Message-ID: <20040913105533.384394E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:55:33 +1000 (Mon, 13 Sep 2004) New Revision: 4496 Removed: contrib/1.1/perl-io-zlib/pristine/ Log: perl-io-zlib: * removing pristine (1.01-16gd) From svn at tinysofa.org Mon Sep 13 10:55:37 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:55:37 +1000 (EST) Subject: [tinysofa-svn] r4497 - contrib/1.1/perl-io-zlib Message-ID: <20040913105537.E852E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:55:37 +1000 (Mon, 13 Sep 2004) New Revision: 4497 Added: contrib/1.1/perl-io-zlib/pristine/ Log: perl-io-zlib: * retarget pristine (1.01-16gd) to releases/1.01/18gd Copied: contrib/1.1/perl-io-zlib/pristine (from rev 4495, contrib/1.1/perl-io-zlib/releases/1.01/18gd) From svn at tinysofa.org Mon Sep 13 10:55:46 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:55:46 +1000 (EST) Subject: [tinysofa-svn] r4498 - in contrib/1.1/perl-mail-clamav: current/specs releases releases/0.11 releases/0.11/3gd/specs Message-ID: <20040913105546.8428C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:55:46 +1000 (Mon, 13 Sep 2004) New Revision: 4498 Added: contrib/1.1/perl-mail-clamav/releases/0.11/ contrib/1.1/perl-mail-clamav/releases/0.11/3gd/ Modified: contrib/1.1/perl-mail-clamav/current/specs/perl-mail-clamav.spec contrib/1.1/perl-mail-clamav/releases/0.11/3gd/specs/perl-mail-clamav.spec Log: perl-mail-clamav: * integrate current (0.11-3gd) as releases/0.11/3gd Modified: contrib/1.1/perl-mail-clamav/current/specs/perl-mail-clamav.spec =================================================================== --- contrib/1.1/perl-mail-clamav/current/specs/perl-mail-clamav.spec 2004-09-13 10:55:37 UTC (rev 4497) +++ contrib/1.1/perl-mail-clamav/current/specs/perl-mail-clamav.spec 2004-09-13 10:55:46 UTC (rev 4498) @@ -47,6 +47,9 @@ %doc Changes INSTALL README %changelog +* Mon Sep 13 2004 tsintegrate 0.11-3gd +- current (0.11-3gd) integrated as 0.11-3gd + * Fri Aug 20 2004 Gerald Dachs 0.11-3gd - fixed build requirements Copied: contrib/1.1/perl-mail-clamav/releases/0.11/3gd (from rev 4376, contrib/1.1/perl-mail-clamav/current) Modified: contrib/1.1/perl-mail-clamav/releases/0.11/3gd/specs/perl-mail-clamav.spec =================================================================== --- contrib/1.1/perl-mail-clamav/current/specs/perl-mail-clamav.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-mail-clamav/releases/0.11/3gd/specs/perl-mail-clamav.spec 2004-09-13 10:55:46 UTC (rev 4498) @@ -47,6 +47,9 @@ %doc Changes INSTALL README %changelog +* Mon Sep 13 2004 tsintegrate 0.11-3gd +- current (0.11-3gd) integrated as 0.11-3gd + * Fri Aug 20 2004 Gerald Dachs 0.11-3gd - fixed build requirements From svn at tinysofa.org Mon Sep 13 10:55:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:55:50 +1000 (EST) Subject: [tinysofa-svn] r4499 - contrib/1.1/perl-mail-clamav Message-ID: <20040913105550.437ED4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:55:50 +1000 (Mon, 13 Sep 2004) New Revision: 4499 Removed: contrib/1.1/perl-mail-clamav/pristine/ Log: perl-mail-clamav: * removing pristine (0.10-1gd) From svn at tinysofa.org Mon Sep 13 10:55:54 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:55:54 +1000 (EST) Subject: [tinysofa-svn] r4500 - contrib/1.1/perl-mail-clamav Message-ID: <20040913105554.D29954E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:55:54 +1000 (Mon, 13 Sep 2004) New Revision: 4500 Added: contrib/1.1/perl-mail-clamav/pristine/ Log: perl-mail-clamav: * retarget pristine (0.10-1gd) to releases/0.11/3gd Copied: contrib/1.1/perl-mail-clamav/pristine (from rev 4498, contrib/1.1/perl-mail-clamav/releases/0.11/3gd) From svn at tinysofa.org Mon Sep 13 10:56:04 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:56:04 +1000 (EST) Subject: [tinysofa-svn] r4501 - in contrib/1.1/perl-mailtools: current/specs releases releases/1.62 releases/1.62/2gd/specs Message-ID: <20040913105604.03FFC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:56:03 +1000 (Mon, 13 Sep 2004) New Revision: 4501 Added: contrib/1.1/perl-mailtools/releases/1.62/ contrib/1.1/perl-mailtools/releases/1.62/2gd/ Modified: contrib/1.1/perl-mailtools/current/specs/perl-mailtools.spec contrib/1.1/perl-mailtools/releases/1.62/2gd/specs/perl-mailtools.spec Log: perl-mailtools: * integrate current (1.62-2gd) as releases/1.62/2gd Modified: contrib/1.1/perl-mailtools/current/specs/perl-mailtools.spec =================================================================== --- contrib/1.1/perl-mailtools/current/specs/perl-mailtools.spec 2004-09-13 10:55:54 UTC (rev 4500) +++ contrib/1.1/perl-mailtools/current/specs/perl-mailtools.spec 2004-09-13 10:56:03 UTC (rev 4501) @@ -47,6 +47,9 @@ %doc ChangeLog README MANIFEST README.demos examples %changelog +* Mon Sep 13 2004 tsintegrate 1.62-2gd +- current (1.62-2gd) integrated as 1.62-2gd + * Tue Jul 27 2004 Gerald Dachs 1.62-1gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-mailtools/releases/1.62/2gd (from rev 4376, contrib/1.1/perl-mailtools/current) Modified: contrib/1.1/perl-mailtools/releases/1.62/2gd/specs/perl-mailtools.spec =================================================================== --- contrib/1.1/perl-mailtools/current/specs/perl-mailtools.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-mailtools/releases/1.62/2gd/specs/perl-mailtools.spec 2004-09-13 10:56:03 UTC (rev 4501) @@ -47,6 +47,9 @@ %doc ChangeLog README MANIFEST README.demos examples %changelog +* Mon Sep 13 2004 tsintegrate 1.62-2gd +- current (1.62-2gd) integrated as 1.62-2gd + * Tue Jul 27 2004 Gerald Dachs 1.62-1gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:56:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:56:08 +1000 (EST) Subject: [tinysofa-svn] r4502 - contrib/1.1/perl-mailtools Message-ID: <20040913105608.475424E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:56:08 +1000 (Mon, 13 Sep 2004) New Revision: 4502 Removed: contrib/1.1/perl-mailtools/pristine/ Log: perl-mailtools: * removing pristine (1.60-16gd) From svn at tinysofa.org Mon Sep 13 10:56:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:56:12 +1000 (EST) Subject: [tinysofa-svn] r4503 - contrib/1.1/perl-mailtools Message-ID: <20040913105612.DDCDE4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:56:12 +1000 (Mon, 13 Sep 2004) New Revision: 4503 Added: contrib/1.1/perl-mailtools/pristine/ Log: perl-mailtools: * retarget pristine (1.60-16gd) to releases/1.62/2gd Copied: contrib/1.1/perl-mailtools/pristine (from rev 4501, contrib/1.1/perl-mailtools/releases/1.62/2gd) From svn at tinysofa.org Mon Sep 13 10:56:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:56:24 +1000 (EST) Subject: [tinysofa-svn] r4504 - in contrib/1.1/perl-mime-tools: current/specs releases/6.200_02 releases/6.200_02/19gd/specs Message-ID: <20040913105624.E03D54E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:56:24 +1000 (Mon, 13 Sep 2004) New Revision: 4504 Added: contrib/1.1/perl-mime-tools/releases/6.200_02/19gd/ Modified: contrib/1.1/perl-mime-tools/current/specs/perl-mime-tools.spec contrib/1.1/perl-mime-tools/releases/6.200_02/19gd/specs/perl-mime-tools.spec Log: perl-mime-tools: * integrate current (6.200_02-19gd) as releases/6.200_02/19gd Modified: contrib/1.1/perl-mime-tools/current/specs/perl-mime-tools.spec =================================================================== --- contrib/1.1/perl-mime-tools/current/specs/perl-mime-tools.spec 2004-09-13 10:56:12 UTC (rev 4503) +++ contrib/1.1/perl-mime-tools/current/specs/perl-mime-tools.spec 2004-09-13 10:56:24 UTC (rev 4504) @@ -50,6 +50,9 @@ %doc COPYING README-OR-DIE examples testmsgs INSTALLING MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 6.200_02-19gd +- current (6.200_02-19gd) integrated as 6.200_02-19gd + * Tue Jul 27 2004 Gerald Dachs 6.200_02-19gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-mime-tools/releases/6.200_02/19gd (from rev 4376, contrib/1.1/perl-mime-tools/current) Modified: contrib/1.1/perl-mime-tools/releases/6.200_02/19gd/specs/perl-mime-tools.spec =================================================================== --- contrib/1.1/perl-mime-tools/current/specs/perl-mime-tools.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-mime-tools/releases/6.200_02/19gd/specs/perl-mime-tools.spec 2004-09-13 10:56:24 UTC (rev 4504) @@ -50,6 +50,9 @@ %doc COPYING README-OR-DIE examples testmsgs INSTALLING MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 6.200_02-19gd +- current (6.200_02-19gd) integrated as 6.200_02-19gd + * Tue Jul 27 2004 Gerald Dachs 6.200_02-19gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:56:29 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:56:29 +1000 (EST) Subject: [tinysofa-svn] r4505 - contrib/1.1/perl-mime-tools Message-ID: <20040913105629.4B4824E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:56:29 +1000 (Mon, 13 Sep 2004) New Revision: 4505 Removed: contrib/1.1/perl-mime-tools/pristine/ Log: perl-mime-tools: * removing pristine (6.200_02-16gd) From svn at tinysofa.org Mon Sep 13 10:56:33 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:56:33 +1000 (EST) Subject: [tinysofa-svn] r4506 - contrib/1.1/perl-mime-tools Message-ID: <20040913105633.E92444E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:56:33 +1000 (Mon, 13 Sep 2004) New Revision: 4506 Added: contrib/1.1/perl-mime-tools/pristine/ Log: perl-mime-tools: * retarget pristine (6.200_02-16gd) to releases/6.200_02/19gd Copied: contrib/1.1/perl-mime-tools/pristine (from rev 4504, contrib/1.1/perl-mime-tools/releases/6.200_02/19gd) From svn at tinysofa.org Mon Sep 13 10:56:42 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:56:42 +1000 (EST) Subject: [tinysofa-svn] r4507 - in contrib/1.1/perl-net-server: current/specs releases releases/0.87 releases/0.87/1gd/specs Message-ID: <20040913105642.6ECB04E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:56:42 +1000 (Mon, 13 Sep 2004) New Revision: 4507 Added: contrib/1.1/perl-net-server/releases/0.87/ contrib/1.1/perl-net-server/releases/0.87/1gd/ Modified: contrib/1.1/perl-net-server/current/specs/perl-net-server.spec contrib/1.1/perl-net-server/releases/0.87/1gd/specs/perl-net-server.spec Log: perl-net-server: * integrate current (0.87-1gd) as releases/0.87/1gd Modified: contrib/1.1/perl-net-server/current/specs/perl-net-server.spec =================================================================== --- contrib/1.1/perl-net-server/current/specs/perl-net-server.spec 2004-09-13 10:56:33 UTC (rev 4506) +++ contrib/1.1/perl-net-server/current/specs/perl-net-server.spec 2004-09-13 10:56:42 UTC (rev 4507) @@ -46,6 +46,9 @@ %doc Changes MANIFEST.SKIP MANIFEST README examples %changelog +* Mon Sep 13 2004 tsintegrate 0.87-1gd +- current (0.87-1gd) integrated as 0.87-1gd + * Tue Jul 27 2004 Gerald Dachs 0.87-2gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-net-server/releases/0.87/1gd (from rev 4376, contrib/1.1/perl-net-server/current) Modified: contrib/1.1/perl-net-server/releases/0.87/1gd/specs/perl-net-server.spec =================================================================== --- contrib/1.1/perl-net-server/current/specs/perl-net-server.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-net-server/releases/0.87/1gd/specs/perl-net-server.spec 2004-09-13 10:56:42 UTC (rev 4507) @@ -46,6 +46,9 @@ %doc Changes MANIFEST.SKIP MANIFEST README examples %changelog +* Mon Sep 13 2004 tsintegrate 0.87-1gd +- current (0.87-1gd) integrated as 0.87-1gd + * Tue Jul 27 2004 Gerald Dachs 0.87-2gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:56:46 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:56:46 +1000 (EST) Subject: [tinysofa-svn] r4508 - contrib/1.1/perl-net-server Message-ID: <20040913105646.3215B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:56:46 +1000 (Mon, 13 Sep 2004) New Revision: 4508 Removed: contrib/1.1/perl-net-server/pristine/ Log: perl-net-server: * removing pristine (0.86-16gd) From svn at tinysofa.org Mon Sep 13 10:56:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:56:50 +1000 (EST) Subject: [tinysofa-svn] r4509 - contrib/1.1/perl-net-server Message-ID: <20040913105650.D9FFE4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:56:50 +1000 (Mon, 13 Sep 2004) New Revision: 4509 Added: contrib/1.1/perl-net-server/pristine/ Log: perl-net-server: * retarget pristine (0.86-16gd) to releases/0.87/1gd Copied: contrib/1.1/perl-net-server/pristine (from rev 4507, contrib/1.1/perl-net-server/releases/0.87/1gd) From svn at tinysofa.org Mon Sep 13 10:56:58 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:56:58 +1000 (EST) Subject: [tinysofa-svn] r4510 - in contrib/1.1/perl-net-ssleay: current/specs releases releases/1.26 releases/1.26/2gd/specs Message-ID: <20040913105658.CAD1B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:56:58 +1000 (Mon, 13 Sep 2004) New Revision: 4510 Added: contrib/1.1/perl-net-ssleay/releases/1.26/ contrib/1.1/perl-net-ssleay/releases/1.26/2gd/ Modified: contrib/1.1/perl-net-ssleay/current/specs/perl-net-ssleay.spec contrib/1.1/perl-net-ssleay/releases/1.26/2gd/specs/perl-net-ssleay.spec Log: perl-net-ssleay: * integrate current (1.26-2gd) as releases/1.26/2gd Modified: contrib/1.1/perl-net-ssleay/current/specs/perl-net-ssleay.spec =================================================================== --- contrib/1.1/perl-net-ssleay/current/specs/perl-net-ssleay.spec 2004-09-13 10:56:50 UTC (rev 4509) +++ contrib/1.1/perl-net-ssleay/current/specs/perl-net-ssleay.spec 2004-09-13 10:56:58 UTC (rev 4510) @@ -50,6 +50,9 @@ %doc QuickRef README typemap %changelog +* Mon Sep 13 2004 tsintegrate 1.26-2gd +- current (1.26-2gd) integrated as 1.26-2gd + * Fri Aug 20 2004 Gerald Dachs 1.26-2gd - fixed requirements Copied: contrib/1.1/perl-net-ssleay/releases/1.26/2gd (from rev 4376, contrib/1.1/perl-net-ssleay/current) Modified: contrib/1.1/perl-net-ssleay/releases/1.26/2gd/specs/perl-net-ssleay.spec =================================================================== --- contrib/1.1/perl-net-ssleay/current/specs/perl-net-ssleay.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-net-ssleay/releases/1.26/2gd/specs/perl-net-ssleay.spec 2004-09-13 10:56:58 UTC (rev 4510) @@ -50,6 +50,9 @@ %doc QuickRef README typemap %changelog +* Mon Sep 13 2004 tsintegrate 1.26-2gd +- current (1.26-2gd) integrated as 1.26-2gd + * Fri Aug 20 2004 Gerald Dachs 1.26-2gd - fixed requirements From svn at tinysofa.org Mon Sep 13 10:57:03 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:57:03 +1000 (EST) Subject: [tinysofa-svn] r4511 - contrib/1.1/perl-net-ssleay Message-ID: <20040913105703.3C61C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:57:03 +1000 (Mon, 13 Sep 2004) New Revision: 4511 Removed: contrib/1.1/perl-net-ssleay/pristine/ Log: perl-net-ssleay: * removing pristine (1.25-1bg) From svn at tinysofa.org Mon Sep 13 10:57:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:57:07 +1000 (EST) Subject: [tinysofa-svn] r4512 - contrib/1.1/perl-net-ssleay Message-ID: <20040913105707.D75F44E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:57:07 +1000 (Mon, 13 Sep 2004) New Revision: 4512 Added: contrib/1.1/perl-net-ssleay/pristine/ Log: perl-net-ssleay: * retarget pristine (1.25-1bg) to releases/1.26/2gd Copied: contrib/1.1/perl-net-ssleay/pristine (from rev 4510, contrib/1.1/perl-net-ssleay/releases/1.26/2gd) From svn at tinysofa.org Mon Sep 13 10:57:19 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:57:19 +1000 (EST) Subject: [tinysofa-svn] r4513 - in contrib/1.1/perl-parse-recdescent: current/specs releases/1.94 releases/1.94/3gd/specs Message-ID: <20040913105719.7EF034E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:57:19 +1000 (Mon, 13 Sep 2004) New Revision: 4513 Added: contrib/1.1/perl-parse-recdescent/releases/1.94/3gd/ Modified: contrib/1.1/perl-parse-recdescent/current/specs/perl-parse-recdescent.spec contrib/1.1/perl-parse-recdescent/releases/1.94/3gd/specs/perl-parse-recdescent.spec Log: perl-parse-recdescent: * integrate current (1.94-3gd) as releases/1.94/3gd Modified: contrib/1.1/perl-parse-recdescent/current/specs/perl-parse-recdescent.spec =================================================================== --- contrib/1.1/perl-parse-recdescent/current/specs/perl-parse-recdescent.spec 2004-09-13 10:57:07 UTC (rev 4512) +++ contrib/1.1/perl-parse-recdescent/current/specs/perl-parse-recdescent.spec 2004-09-13 10:57:19 UTC (rev 4513) @@ -46,6 +46,9 @@ %doc Changes README %changelog +* Mon Sep 13 2004 tsintegrate 1.94-3gd +- current (1.94-3gd) integrated as 1.94-3gd + * Tue Jul 27 2004 Gerald Dachs 1.94-3gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-parse-recdescent/releases/1.94/3gd (from rev 4376, contrib/1.1/perl-parse-recdescent/current) Modified: contrib/1.1/perl-parse-recdescent/releases/1.94/3gd/specs/perl-parse-recdescent.spec =================================================================== --- contrib/1.1/perl-parse-recdescent/current/specs/perl-parse-recdescent.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-parse-recdescent/releases/1.94/3gd/specs/perl-parse-recdescent.spec 2004-09-13 10:57:19 UTC (rev 4513) @@ -46,6 +46,9 @@ %doc Changes README %changelog +* Mon Sep 13 2004 tsintegrate 1.94-3gd +- current (1.94-3gd) integrated as 1.94-3gd + * Tue Jul 27 2004 Gerald Dachs 1.94-3gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:57:23 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:57:23 +1000 (EST) Subject: [tinysofa-svn] r4514 - contrib/1.1/perl-parse-recdescent Message-ID: <20040913105723.40A8C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:57:23 +1000 (Mon, 13 Sep 2004) New Revision: 4514 Removed: contrib/1.1/perl-parse-recdescent/pristine/ Log: perl-parse-recdescent: * removing pristine (1.94-1gd) From svn at tinysofa.org Mon Sep 13 10:57:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:57:27 +1000 (EST) Subject: [tinysofa-svn] r4515 - contrib/1.1/perl-parse-recdescent Message-ID: <20040913105727.EA79B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:57:27 +1000 (Mon, 13 Sep 2004) New Revision: 4515 Added: contrib/1.1/perl-parse-recdescent/pristine/ Log: perl-parse-recdescent: * retarget pristine (1.94-1gd) to releases/1.94/3gd Copied: contrib/1.1/perl-parse-recdescent/pristine (from rev 4513, contrib/1.1/perl-parse-recdescent/releases/1.94/3gd) From svn at tinysofa.org Mon Sep 13 10:57:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:57:41 +1000 (EST) Subject: [tinysofa-svn] r4516 - in contrib/1.1/perl-unicode-map: current/specs releases/0.112 releases/0.112/18gd/specs Message-ID: <20040913105741.1942B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:57:40 +1000 (Mon, 13 Sep 2004) New Revision: 4516 Added: contrib/1.1/perl-unicode-map/releases/0.112/18gd/ Modified: contrib/1.1/perl-unicode-map/current/specs/perl-unicode-map.spec contrib/1.1/perl-unicode-map/releases/0.112/18gd/specs/perl-unicode-map.spec Log: perl-unicode-map: * integrate current (0.112-18gd) as releases/0.112/18gd Modified: contrib/1.1/perl-unicode-map/current/specs/perl-unicode-map.spec =================================================================== --- contrib/1.1/perl-unicode-map/current/specs/perl-unicode-map.spec 2004-09-13 10:57:27 UTC (rev 4515) +++ contrib/1.1/perl-unicode-map/current/specs/perl-unicode-map.spec 2004-09-13 10:57:40 UTC (rev 4516) @@ -47,6 +47,9 @@ %doc COPYING MANIFEST README Changes INSTALL %changelog +* Mon Sep 13 2004 tsintegrate 0.112-18gd +- current (0.112-18gd) integrated as 0.112-18gd + * Fri Aug 20 2004 Gerald Dachs 0.112-18gd - more spec file cleanup Copied: contrib/1.1/perl-unicode-map/releases/0.112/18gd (from rev 4376, contrib/1.1/perl-unicode-map/current) Modified: contrib/1.1/perl-unicode-map/releases/0.112/18gd/specs/perl-unicode-map.spec =================================================================== --- contrib/1.1/perl-unicode-map/current/specs/perl-unicode-map.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-unicode-map/releases/0.112/18gd/specs/perl-unicode-map.spec 2004-09-13 10:57:40 UTC (rev 4516) @@ -47,6 +47,9 @@ %doc COPYING MANIFEST README Changes INSTALL %changelog +* Mon Sep 13 2004 tsintegrate 0.112-18gd +- current (0.112-18gd) integrated as 0.112-18gd + * Fri Aug 20 2004 Gerald Dachs 0.112-18gd - more spec file cleanup From svn at tinysofa.org Mon Sep 13 10:57:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:57:49 +1000 (EST) Subject: [tinysofa-svn] r4518 - contrib/1.1/perl-unicode-map Message-ID: <20040913105749.C2ECF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:57:49 +1000 (Mon, 13 Sep 2004) New Revision: 4518 Added: contrib/1.1/perl-unicode-map/pristine/ Log: perl-unicode-map: * retarget pristine (0.112-17gd) to releases/0.112/18gd Copied: contrib/1.1/perl-unicode-map/pristine (from rev 4516, contrib/1.1/perl-unicode-map/releases/0.112/18gd) From svn at tinysofa.org Mon Sep 13 10:58:01 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:58:01 +1000 (EST) Subject: [tinysofa-svn] r4519 - in contrib/1.1/perl-unicode-string: current/specs releases/2.07 releases/2.07/18gd/specs Message-ID: <20040913105801.B00404E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:58:01 +1000 (Mon, 13 Sep 2004) New Revision: 4519 Added: contrib/1.1/perl-unicode-string/releases/2.07/18gd/ Modified: contrib/1.1/perl-unicode-string/current/specs/perl-unicode-string.spec contrib/1.1/perl-unicode-string/releases/2.07/18gd/specs/perl-unicode-string.spec Log: perl-unicode-string: * integrate current (2.07-18gd) as releases/2.07/18gd Modified: contrib/1.1/perl-unicode-string/current/specs/perl-unicode-string.spec =================================================================== --- contrib/1.1/perl-unicode-string/current/specs/perl-unicode-string.spec 2004-09-13 10:57:49 UTC (rev 4518) +++ contrib/1.1/perl-unicode-string/current/specs/perl-unicode-string.spec 2004-09-13 10:58:01 UTC (rev 4519) @@ -46,6 +46,9 @@ %doc Changes MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 2.07-18gd +- current (2.07-18gd) integrated as 2.07-18gd + * Tue Jul 27 2004 Gerald Dachs 2.07-18gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-unicode-string/releases/2.07/18gd (from rev 4376, contrib/1.1/perl-unicode-string/current) Modified: contrib/1.1/perl-unicode-string/releases/2.07/18gd/specs/perl-unicode-string.spec =================================================================== --- contrib/1.1/perl-unicode-string/current/specs/perl-unicode-string.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-unicode-string/releases/2.07/18gd/specs/perl-unicode-string.spec 2004-09-13 10:58:01 UTC (rev 4519) @@ -46,6 +46,9 @@ %doc Changes MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 2.07-18gd +- current (2.07-18gd) integrated as 2.07-18gd + * Tue Jul 27 2004 Gerald Dachs 2.07-18gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:58:06 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:58:06 +1000 (EST) Subject: [tinysofa-svn] r4520 - contrib/1.1/perl-unicode-string Message-ID: <20040913105806.47C0E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:58:06 +1000 (Mon, 13 Sep 2004) New Revision: 4520 Removed: contrib/1.1/perl-unicode-string/pristine/ Log: perl-unicode-string: * removing pristine (2.07-17gd) From svn at tinysofa.org Mon Sep 13 10:57:45 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:57:45 +1000 (EST) Subject: [tinysofa-svn] r4517 - contrib/1.1/perl-unicode-map Message-ID: <20040913105745.401D54E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:57:45 +1000 (Mon, 13 Sep 2004) New Revision: 4517 Removed: contrib/1.1/perl-unicode-map/pristine/ Log: perl-unicode-map: * removing pristine (0.112-17gd) From svn at tinysofa.org Mon Sep 13 10:58:10 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:58:10 +1000 (EST) Subject: [tinysofa-svn] r4521 - contrib/1.1/perl-unicode-string Message-ID: <20040913105810.D7F564E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:58:10 +1000 (Mon, 13 Sep 2004) New Revision: 4521 Added: contrib/1.1/perl-unicode-string/pristine/ Log: perl-unicode-string: * retarget pristine (2.07-17gd) to releases/2.07/18gd Copied: contrib/1.1/perl-unicode-string/pristine (from rev 4519, contrib/1.1/perl-unicode-string/releases/2.07/18gd) From svn at tinysofa.org Mon Sep 13 10:58:23 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:58:23 +1000 (EST) Subject: [tinysofa-svn] r4522 - in contrib/1.1/perl-unix-syslog: current/specs releases/0.100 releases/0.100/18gd/specs Message-ID: <20040913105823.2DEDB4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:58:22 +1000 (Mon, 13 Sep 2004) New Revision: 4522 Added: contrib/1.1/perl-unix-syslog/releases/0.100/18gd/ Modified: contrib/1.1/perl-unix-syslog/current/specs/perl-unix-syslog.spec contrib/1.1/perl-unix-syslog/releases/0.100/18gd/specs/perl-unix-syslog.spec Log: perl-unix-syslog: * integrate current (0.100-18gd) as releases/0.100/18gd Modified: contrib/1.1/perl-unix-syslog/current/specs/perl-unix-syslog.spec =================================================================== --- contrib/1.1/perl-unix-syslog/current/specs/perl-unix-syslog.spec 2004-09-13 10:58:10 UTC (rev 4521) +++ contrib/1.1/perl-unix-syslog/current/specs/perl-unix-syslog.spec 2004-09-13 10:58:22 UTC (rev 4522) @@ -47,6 +47,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.100-18gd +- current (0.100-18gd) integrated as 0.100-18gd + * Tue Jul 27 2004 Gerald Dachs 0.100-18gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-unix-syslog/releases/0.100/18gd (from rev 4376, contrib/1.1/perl-unix-syslog/current) Modified: contrib/1.1/perl-unix-syslog/releases/0.100/18gd/specs/perl-unix-syslog.spec =================================================================== --- contrib/1.1/perl-unix-syslog/current/specs/perl-unix-syslog.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-unix-syslog/releases/0.100/18gd/specs/perl-unix-syslog.spec 2004-09-13 10:58:22 UTC (rev 4522) @@ -47,6 +47,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.100-18gd +- current (0.100-18gd) integrated as 0.100-18gd + * Tue Jul 27 2004 Gerald Dachs 0.100-18gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 10:58:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:58:28 +1000 (EST) Subject: [tinysofa-svn] r4523 - contrib/1.1/perl-unix-syslog Message-ID: <20040913105828.55C314E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:58:28 +1000 (Mon, 13 Sep 2004) New Revision: 4523 Removed: contrib/1.1/perl-unix-syslog/pristine/ Log: perl-unix-syslog: * removing pristine (0.100-17gd) From svn at tinysofa.org Mon Sep 13 10:58:33 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:58:33 +1000 (EST) Subject: [tinysofa-svn] r4524 - contrib/1.1/perl-unix-syslog Message-ID: <20040913105833.E4E384E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:58:33 +1000 (Mon, 13 Sep 2004) New Revision: 4524 Added: contrib/1.1/perl-unix-syslog/pristine/ Log: perl-unix-syslog: * retarget pristine (0.100-17gd) to releases/0.100/18gd Copied: contrib/1.1/perl-unix-syslog/pristine (from rev 4522, contrib/1.1/perl-unix-syslog/releases/0.100/18gd) From svn at tinysofa.org Mon Sep 13 10:58:45 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:58:45 +1000 (EST) Subject: [tinysofa-svn] r4525 - in contrib/1.1/perl-uri: current/specs releases/1.31 releases/1.31/4gd/specs Message-ID: <20040913105845.1A1014E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:58:44 +1000 (Mon, 13 Sep 2004) New Revision: 4525 Added: contrib/1.1/perl-uri/releases/1.31/4gd/ Modified: contrib/1.1/perl-uri/current/specs/perl-uri.spec contrib/1.1/perl-uri/releases/1.31/4gd/specs/perl-uri.spec Log: perl-uri: * integrate current (1.31-4gd) as releases/1.31/4gd Modified: contrib/1.1/perl-uri/current/specs/perl-uri.spec =================================================================== --- contrib/1.1/perl-uri/current/specs/perl-uri.spec 2004-09-13 10:58:33 UTC (rev 4524) +++ contrib/1.1/perl-uri/current/specs/perl-uri.spec 2004-09-13 10:58:44 UTC (rev 4525) @@ -47,6 +47,9 @@ %doc Changes README %changelog +* Mon Sep 13 2004 tsintegrate 1.31-4gd +- current (1.31-4gd) integrated as 1.31-4gd + * Sat Aug 21 2004 Gerald Dachs 1.31-4gd - commented make test, it hangs Copied: contrib/1.1/perl-uri/releases/1.31/4gd (from rev 4376, contrib/1.1/perl-uri/current) Modified: contrib/1.1/perl-uri/releases/1.31/4gd/specs/perl-uri.spec =================================================================== --- contrib/1.1/perl-uri/current/specs/perl-uri.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/perl-uri/releases/1.31/4gd/specs/perl-uri.spec 2004-09-13 10:58:44 UTC (rev 4525) @@ -47,6 +47,9 @@ %doc Changes README %changelog +* Mon Sep 13 2004 tsintegrate 1.31-4gd +- current (1.31-4gd) integrated as 1.31-4gd + * Sat Aug 21 2004 Gerald Dachs 1.31-4gd - commented make test, it hangs From svn at tinysofa.org Mon Sep 13 10:58:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:58:49 +1000 (EST) Subject: [tinysofa-svn] r4526 - contrib/1.1/perl-uri Message-ID: <20040913105849.4C8CF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:58:49 +1000 (Mon, 13 Sep 2004) New Revision: 4526 Removed: contrib/1.1/perl-uri/pristine/ Log: perl-uri: * removing pristine (1.31-1gd) From svn at tinysofa.org Mon Sep 13 10:58:53 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:58:53 +1000 (EST) Subject: [tinysofa-svn] r4527 - contrib/1.1/perl-uri Message-ID: <20040913105853.B7E684E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:58:53 +1000 (Mon, 13 Sep 2004) New Revision: 4527 Added: contrib/1.1/perl-uri/pristine/ Log: perl-uri: * retarget pristine (1.31-1gd) to releases/1.31/4gd Copied: contrib/1.1/perl-uri/pristine (from rev 4525, contrib/1.1/perl-uri/releases/1.31/4gd) From svn at tinysofa.org Mon Sep 13 10:59:04 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:59:04 +1000 (EST) Subject: [tinysofa-svn] r4528 - in contrib/1.1/pound: current/specs releases/1.7 releases/1.7/2gd/specs Message-ID: <20040913105904.321074E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:59:04 +1000 (Mon, 13 Sep 2004) New Revision: 4528 Added: contrib/1.1/pound/releases/1.7/2gd/ Modified: contrib/1.1/pound/current/specs/pound.spec contrib/1.1/pound/releases/1.7/2gd/specs/pound.spec Log: pound: * integrate current (1.7-2gd) as releases/1.7/2gd Modified: contrib/1.1/pound/current/specs/pound.spec =================================================================== --- contrib/1.1/pound/current/specs/pound.spec 2004-09-13 10:58:53 UTC (rev 4527) +++ contrib/1.1/pound/current/specs/pound.spec 2004-09-13 10:59:04 UTC (rev 4528) @@ -87,6 +87,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.7-2gd +- current (1.7-2gd) integrated as 1.7-2gd + * Sun Aug 22 2004 Gerald Dachs 1.7-2gd - _initdir -> _initrddir Copied: contrib/1.1/pound/releases/1.7/2gd (from rev 4376, contrib/1.1/pound/current) Modified: contrib/1.1/pound/releases/1.7/2gd/specs/pound.spec =================================================================== --- contrib/1.1/pound/current/specs/pound.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/pound/releases/1.7/2gd/specs/pound.spec 2004-09-13 10:59:04 UTC (rev 4528) @@ -87,6 +87,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.7-2gd +- current (1.7-2gd) integrated as 1.7-2gd + * Sun Aug 22 2004 Gerald Dachs 1.7-2gd - _initdir -> _initrddir From svn at tinysofa.org Mon Sep 13 10:59:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:59:08 +1000 (EST) Subject: [tinysofa-svn] r4529 - contrib/1.1/pound Message-ID: <20040913105908.4EB1E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:59:08 +1000 (Mon, 13 Sep 2004) New Revision: 4529 Removed: contrib/1.1/pound/pristine/ Log: pound: * removing pristine (1.7-1bg) From svn at tinysofa.org Mon Sep 13 10:59:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:59:13 +1000 (EST) Subject: [tinysofa-svn] r4530 - contrib/1.1/pound Message-ID: <20040913105913.ED4984E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:59:13 +1000 (Mon, 13 Sep 2004) New Revision: 4530 Added: contrib/1.1/pound/pristine/ Log: pound: * retarget pristine (1.7-1bg) to releases/1.7/2gd Copied: contrib/1.1/pound/pristine (from rev 4528, contrib/1.1/pound/releases/1.7/2gd) From svn at tinysofa.org Mon Sep 13 10:59:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:59:24 +1000 (EST) Subject: [tinysofa-svn] r4531 - in contrib/1.1/proftpd: current/specs releases/1.2.9 releases/1.2.9/10gd/specs Message-ID: <20040913105924.EDA3A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:59:24 +1000 (Mon, 13 Sep 2004) New Revision: 4531 Added: contrib/1.1/proftpd/releases/1.2.9/10gd/ Modified: contrib/1.1/proftpd/current/specs/proftpd.spec contrib/1.1/proftpd/releases/1.2.9/10gd/specs/proftpd.spec Log: proftpd: * integrate current (1.2.9-10gd) as releases/1.2.9/10gd Modified: contrib/1.1/proftpd/current/specs/proftpd.spec =================================================================== --- contrib/1.1/proftpd/current/specs/proftpd.spec 2004-09-13 10:59:13 UTC (rev 4530) +++ contrib/1.1/proftpd/current/specs/proftpd.spec 2004-09-13 10:59:24 UTC (rev 4531) @@ -95,6 +95,9 @@ %{_initrddir}/proftpd %changelog +* Mon Sep 13 2004 tsintegrate 1.2.9-10gd +- current (1.2.9-10gd) integrated as 1.2.9-10gd + * Mon Aug 23 2004 Gerald Dachs 1.2.9-10ts - fixed spec file Copied: contrib/1.1/proftpd/releases/1.2.9/10gd (from rev 4376, contrib/1.1/proftpd/current) Modified: contrib/1.1/proftpd/releases/1.2.9/10gd/specs/proftpd.spec =================================================================== --- contrib/1.1/proftpd/current/specs/proftpd.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/proftpd/releases/1.2.9/10gd/specs/proftpd.spec 2004-09-13 10:59:24 UTC (rev 4531) @@ -95,6 +95,9 @@ %{_initrddir}/proftpd %changelog +* Mon Sep 13 2004 tsintegrate 1.2.9-10gd +- current (1.2.9-10gd) integrated as 1.2.9-10gd + * Mon Aug 23 2004 Gerald Dachs 1.2.9-10ts - fixed spec file From svn at tinysofa.org Mon Sep 13 10:59:29 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:59:29 +1000 (EST) Subject: [tinysofa-svn] r4532 - contrib/1.1/proftpd Message-ID: <20040913105929.4F3344E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:59:29 +1000 (Mon, 13 Sep 2004) New Revision: 4532 Removed: contrib/1.1/proftpd/pristine/ Log: proftpd: * removing pristine (1.2.9-9ts) From svn at tinysofa.org Mon Sep 13 10:59:34 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:59:34 +1000 (EST) Subject: [tinysofa-svn] r4533 - contrib/1.1/proftpd Message-ID: <20040913105934.09A494E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:59:33 +1000 (Mon, 13 Sep 2004) New Revision: 4533 Added: contrib/1.1/proftpd/pristine/ Log: proftpd: * retarget pristine (1.2.9-9ts) to releases/1.2.9/10gd Copied: contrib/1.1/proftpd/pristine (from rev 4531, contrib/1.1/proftpd/releases/1.2.9/10gd) From svn at tinysofa.org Mon Sep 13 10:59:45 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:59:45 +1000 (EST) Subject: [tinysofa-svn] r4534 - in contrib/1.1/pwgen: current/specs releases/2.03/1bg releases/2.03/1bg/current/specs Message-ID: <20040913105945.305054E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:59:44 +1000 (Mon, 13 Sep 2004) New Revision: 4534 Added: contrib/1.1/pwgen/releases/2.03/1bg/current/ Modified: contrib/1.1/pwgen/current/specs/pwgen.spec contrib/1.1/pwgen/releases/2.03/1bg/current/specs/pwgen.spec Log: pwgen: * integrate current (2.03-1bg) as releases/2.03/1bg Modified: contrib/1.1/pwgen/current/specs/pwgen.spec =================================================================== --- contrib/1.1/pwgen/current/specs/pwgen.spec 2004-09-13 10:59:33 UTC (rev 4533) +++ contrib/1.1/pwgen/current/specs/pwgen.spec 2004-09-13 10:59:44 UTC (rev 4534) @@ -43,6 +43,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 2.03-1bg +- current (2.03-1bg) integrated as 2.03-1bg + * Mon Jun 21 2004 Goetz Bock 2.03-1bg - new upstream: 2.03 - build for tinysofa contrib Copied: contrib/1.1/pwgen/releases/2.03/1bg/current (from rev 4376, contrib/1.1/pwgen/current) Modified: contrib/1.1/pwgen/releases/2.03/1bg/current/specs/pwgen.spec =================================================================== --- contrib/1.1/pwgen/current/specs/pwgen.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/pwgen/releases/2.03/1bg/current/specs/pwgen.spec 2004-09-13 10:59:44 UTC (rev 4534) @@ -43,6 +43,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 2.03-1bg +- current (2.03-1bg) integrated as 2.03-1bg + * Mon Jun 21 2004 Goetz Bock 2.03-1bg - new upstream: 2.03 - build for tinysofa contrib From svn at tinysofa.org Mon Sep 13 10:59:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:59:49 +1000 (EST) Subject: [tinysofa-svn] r4535 - contrib/1.1/pwgen Message-ID: <20040913105949.4A6254E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:59:49 +1000 (Mon, 13 Sep 2004) New Revision: 4535 Removed: contrib/1.1/pwgen/pristine/ Log: pwgen: * removing pristine (2.03-1bg) From svn at tinysofa.org Mon Sep 13 10:59:54 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 20:59:54 +1000 (EST) Subject: [tinysofa-svn] r4536 - in contrib/1.1/pwgen: . pristine Message-ID: <20040913105954.A14A44E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 20:59:54 +1000 (Mon, 13 Sep 2004) New Revision: 4536 Added: contrib/1.1/pwgen/pristine/ contrib/1.1/pwgen/pristine/current/ Log: pwgen: * retarget pristine (2.03-1bg) to releases/2.03/1bg Copied: contrib/1.1/pwgen/pristine (from rev 4376, contrib/1.1/pwgen/releases/2.03/1bg) Copied: contrib/1.1/pwgen/pristine/current (from rev 4534, contrib/1.1/pwgen/releases/2.03/1bg/current) From svn at tinysofa.org Mon Sep 13 11:00:06 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:00:06 +1000 (EST) Subject: [tinysofa-svn] r4537 - in contrib/1.1/python-imaging: current/specs releases/1.1.4/1th releases/1.1.4/1th/current/specs Message-ID: <20040913110006.9FDA84E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:00:06 +1000 (Mon, 13 Sep 2004) New Revision: 4537 Added: contrib/1.1/python-imaging/releases/1.1.4/1th/current/ Modified: contrib/1.1/python-imaging/current/specs/python-imaging.spec contrib/1.1/python-imaging/releases/1.1.4/1th/current/specs/python-imaging.spec Log: python-imaging: * integrate current (1.1.4-1th) as releases/1.1.4/1th Modified: contrib/1.1/python-imaging/current/specs/python-imaging.spec =================================================================== --- contrib/1.1/python-imaging/current/specs/python-imaging.spec 2004-09-13 10:59:54 UTC (rev 4536) +++ contrib/1.1/python-imaging/current/specs/python-imaging.spec 2004-09-13 11:00:06 UTC (rev 4537) @@ -2,7 +2,7 @@ Summary: Python's own image processing library Name: python-imaging Version: 1.1.4 -Release: 1th +Release: 1th License: MIT style Group: contrib URL: http://www.pythonware.com/products/pil/ @@ -61,6 +61,9 @@ #%{_libdir}/python%{pyver}/lib-dynload/_imagingtk.so %changelog +* Mon Sep 13 2004 tsintegrate 1.1.4-1th +- current (1.1.4-1th) integrated as 1.1.4-1th + * Fri Jul 9 2004 Tor Hveem - Repackaged for tinysofa Copied: contrib/1.1/python-imaging/releases/1.1.4/1th/current (from rev 4376, contrib/1.1/python-imaging/current) Modified: contrib/1.1/python-imaging/releases/1.1.4/1th/current/specs/python-imaging.spec =================================================================== --- contrib/1.1/python-imaging/current/specs/python-imaging.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/python-imaging/releases/1.1.4/1th/current/specs/python-imaging.spec 2004-09-13 11:00:06 UTC (rev 4537) @@ -2,7 +2,7 @@ Summary: Python's own image processing library Name: python-imaging Version: 1.1.4 -Release: 1th +Release: 1th License: MIT style Group: contrib URL: http://www.pythonware.com/products/pil/ @@ -61,6 +61,9 @@ #%{_libdir}/python%{pyver}/lib-dynload/_imagingtk.so %changelog +* Mon Sep 13 2004 tsintegrate 1.1.4-1th +- current (1.1.4-1th) integrated as 1.1.4-1th + * Fri Jul 9 2004 Tor Hveem - Repackaged for tinysofa From svn at tinysofa.org Mon Sep 13 11:00:11 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:00:11 +1000 (EST) Subject: [tinysofa-svn] r4538 - contrib/1.1/python-imaging Message-ID: <20040913110011.2E11E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:00:11 +1000 (Mon, 13 Sep 2004) New Revision: 4538 Removed: contrib/1.1/python-imaging/pristine/ Log: python-imaging: * removing pristine (1.1.4-1th) From svn at tinysofa.org Mon Sep 13 11:00:17 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:00:17 +1000 (EST) Subject: [tinysofa-svn] r4539 - in contrib/1.1/python-imaging: . pristine Message-ID: <20040913110017.429BF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:00:17 +1000 (Mon, 13 Sep 2004) New Revision: 4539 Added: contrib/1.1/python-imaging/pristine/ contrib/1.1/python-imaging/pristine/current/ Log: python-imaging: * retarget pristine (1.1.4-1th) to releases/1.1.4/1th Copied: contrib/1.1/python-imaging/pristine (from rev 4376, contrib/1.1/python-imaging/releases/1.1.4/1th) Copied: contrib/1.1/python-imaging/pristine/current (from rev 4537, contrib/1.1/python-imaging/releases/1.1.4/1th/current) From svn at tinysofa.org Mon Sep 13 11:00:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:00:28 +1000 (EST) Subject: [tinysofa-svn] r4540 - in contrib/1.1/python-mysql: current/specs releases/1.0.0/2th releases/1.0.0/2th/current/specs Message-ID: <20040913110028.6B1AA4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:00:28 +1000 (Mon, 13 Sep 2004) New Revision: 4540 Added: contrib/1.1/python-mysql/releases/1.0.0/2th/current/ Modified: contrib/1.1/python-mysql/current/specs/python-mysql.spec contrib/1.1/python-mysql/releases/1.0.0/2th/current/specs/python-mysql.spec Log: python-mysql: * integrate current (1.0.0-2th) as releases/1.0.0/2th Modified: contrib/1.1/python-mysql/current/specs/python-mysql.spec =================================================================== --- contrib/1.1/python-mysql/current/specs/python-mysql.spec 2004-09-13 11:00:17 UTC (rev 4539) +++ contrib/1.1/python-mysql/current/specs/python-mysql.spec 2004-09-13 11:00:28 UTC (rev 4540) @@ -49,6 +49,9 @@ %doc README doc/* %changelog +* Mon Sep 13 2004 tsintegrate 1.0.0-2th +- current (1.0.0-2th) integrated as 1.0.0-2th + * Fri Jul 16 2004 Goetz Bock 1.0.0-2th - added python-devel as build requirement Copied: contrib/1.1/python-mysql/releases/1.0.0/2th/current (from rev 4376, contrib/1.1/python-mysql/current) Modified: contrib/1.1/python-mysql/releases/1.0.0/2th/current/specs/python-mysql.spec =================================================================== --- contrib/1.1/python-mysql/current/specs/python-mysql.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/python-mysql/releases/1.0.0/2th/current/specs/python-mysql.spec 2004-09-13 11:00:28 UTC (rev 4540) @@ -49,6 +49,9 @@ %doc README doc/* %changelog +* Mon Sep 13 2004 tsintegrate 1.0.0-2th +- current (1.0.0-2th) integrated as 1.0.0-2th + * Fri Jul 16 2004 Goetz Bock 1.0.0-2th - added python-devel as build requirement From svn at tinysofa.org Mon Sep 13 11:00:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:00:32 +1000 (EST) Subject: [tinysofa-svn] r4541 - contrib/1.1/python-mysql Message-ID: <20040913110032.59B154E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:00:32 +1000 (Mon, 13 Sep 2004) New Revision: 4541 Removed: contrib/1.1/python-mysql/pristine/ Log: python-mysql: * removing pristine (1.0.0-2th) From svn at tinysofa.org Mon Sep 13 11:00:37 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:00:37 +1000 (EST) Subject: [tinysofa-svn] r4542 - in contrib/1.1/python-mysql: . pristine Message-ID: <20040913110037.BBA064E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:00:37 +1000 (Mon, 13 Sep 2004) New Revision: 4542 Added: contrib/1.1/python-mysql/pristine/ contrib/1.1/python-mysql/pristine/current/ Log: python-mysql: * retarget pristine (1.0.0-2th) to releases/1.0.0/2th Copied: contrib/1.1/python-mysql/pristine (from rev 4376, contrib/1.1/python-mysql/releases/1.0.0/2th) Copied: contrib/1.1/python-mysql/pristine/current (from rev 4540, contrib/1.1/python-mysql/releases/1.0.0/2th/current) From svn at tinysofa.org Mon Sep 13 11:00:46 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:00:46 +1000 (EST) Subject: [tinysofa-svn] r4543 - in contrib/1.1/rdiff-backup: current/specs releases releases/0.12.7 releases/0.12.7/1jh/specs Message-ID: <20040913110046.5793B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:00:46 +1000 (Mon, 13 Sep 2004) New Revision: 4543 Added: contrib/1.1/rdiff-backup/releases/0.12.7/ contrib/1.1/rdiff-backup/releases/0.12.7/1jh/ Modified: contrib/1.1/rdiff-backup/current/specs/rdiff-backup.spec contrib/1.1/rdiff-backup/releases/0.12.7/1jh/specs/rdiff-backup.spec Log: rdiff-backup: * integrate current (0.12.7-1jh) as releases/0.12.7/1jh Modified: contrib/1.1/rdiff-backup/current/specs/rdiff-backup.spec =================================================================== --- contrib/1.1/rdiff-backup/current/specs/rdiff-backup.spec 2004-09-13 11:00:37 UTC (rev 4542) +++ contrib/1.1/rdiff-backup/current/specs/rdiff-backup.spec 2004-09-13 11:00:46 UTC (rev 4543) @@ -1,7 +1,7 @@ Version: 0.12.7 Summary: Convenient and transparent local/remote incremental mirror/backup Name: rdiff-backup -Release: 1jh +Release: 1jh URL: http://rdiff-backup.stanford.edu/ Source: http://rdiff-backup.stanford.edu/OLD/%{version}/%{name}-%{version}.tar.gz License: GPL @@ -48,6 +48,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.12.7-1jh +- current (0.12.7-1jh) integrated as 0.12.7-1jh + * Fri Feb 06 2004 Jaakko Heinonen 0.12.6-2jh - rebuilt Copied: contrib/1.1/rdiff-backup/releases/0.12.7/1jh (from rev 4376, contrib/1.1/rdiff-backup/current) Modified: contrib/1.1/rdiff-backup/releases/0.12.7/1jh/specs/rdiff-backup.spec =================================================================== --- contrib/1.1/rdiff-backup/current/specs/rdiff-backup.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/rdiff-backup/releases/0.12.7/1jh/specs/rdiff-backup.spec 2004-09-13 11:00:46 UTC (rev 4543) @@ -1,7 +1,7 @@ Version: 0.12.7 Summary: Convenient and transparent local/remote incremental mirror/backup Name: rdiff-backup -Release: 1jh +Release: 1jh URL: http://rdiff-backup.stanford.edu/ Source: http://rdiff-backup.stanford.edu/OLD/%{version}/%{name}-%{version}.tar.gz License: GPL @@ -48,6 +48,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.12.7-1jh +- current (0.12.7-1jh) integrated as 0.12.7-1jh + * Fri Feb 06 2004 Jaakko Heinonen 0.12.6-2jh - rebuilt From svn at tinysofa.org Mon Sep 13 11:00:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:00:50 +1000 (EST) Subject: [tinysofa-svn] r4544 - contrib/1.1/rdiff-backup Message-ID: <20040913110050.57FFC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:00:50 +1000 (Mon, 13 Sep 2004) New Revision: 4544 Removed: contrib/1.1/rdiff-backup/pristine/ Log: rdiff-backup: * removing pristine (0.12.6-2jh) From svn at tinysofa.org Mon Sep 13 11:00:55 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:00:55 +1000 (EST) Subject: [tinysofa-svn] r4545 - contrib/1.1/rdiff-backup Message-ID: <20040913110055.CCF874E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:00:55 +1000 (Mon, 13 Sep 2004) New Revision: 4545 Added: contrib/1.1/rdiff-backup/pristine/ Log: rdiff-backup: * retarget pristine (0.12.6-2jh) to releases/0.12.7/1jh Copied: contrib/1.1/rdiff-backup/pristine (from rev 4543, contrib/1.1/rdiff-backup/releases/0.12.7/1jh) From svn at tinysofa.org Mon Sep 13 11:01:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:01:08 +1000 (EST) Subject: [tinysofa-svn] r4546 - in contrib/1.1/rrdtool: current/specs releases/1.0.47 releases/1.0.47/4gd/specs Message-ID: <20040913110108.893E64E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:01:08 +1000 (Mon, 13 Sep 2004) New Revision: 4546 Added: contrib/1.1/rrdtool/releases/1.0.47/4gd/ Modified: contrib/1.1/rrdtool/current/specs/rrdtool.spec contrib/1.1/rrdtool/releases/1.0.47/4gd/specs/rrdtool.spec Log: rrdtool: * integrate current (1.0.47-4gd) as releases/1.0.47/4gd Modified: contrib/1.1/rrdtool/current/specs/rrdtool.spec =================================================================== --- contrib/1.1/rrdtool/current/specs/rrdtool.spec 2004-09-13 11:00:55 UTC (rev 4545) +++ contrib/1.1/rrdtool/current/specs/rrdtool.spec 2004-09-13 11:01:08 UTC (rev 4546) @@ -188,6 +188,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.0.47-4gd +- current (1.0.47-4gd) integrated as 1.0.47-4gd + * Sun Aug 22 2004 Gerald Dachs 1.0.47-4gd - fixed build requirement for perl-devel, don't know why it has to be like this - some spec cleanups Copied: contrib/1.1/rrdtool/releases/1.0.47/4gd (from rev 4376, contrib/1.1/rrdtool/current) Modified: contrib/1.1/rrdtool/releases/1.0.47/4gd/specs/rrdtool.spec =================================================================== --- contrib/1.1/rrdtool/current/specs/rrdtool.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/rrdtool/releases/1.0.47/4gd/specs/rrdtool.spec 2004-09-13 11:01:08 UTC (rev 4546) @@ -188,6 +188,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.0.47-4gd +- current (1.0.47-4gd) integrated as 1.0.47-4gd + * Sun Aug 22 2004 Gerald Dachs 1.0.47-4gd - fixed build requirement for perl-devel, don't know why it has to be like this - some spec cleanups From svn at tinysofa.org Mon Sep 13 11:01:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:01:12 +1000 (EST) Subject: [tinysofa-svn] r4547 - contrib/1.1/rrdtool Message-ID: <20040913110112.443014E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:01:12 +1000 (Mon, 13 Sep 2004) New Revision: 4547 Removed: contrib/1.1/rrdtool/pristine/ Log: rrdtool: * removing pristine (1.0.47-3bg) From svn at tinysofa.org Mon Sep 13 11:01:16 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:01:16 +1000 (EST) Subject: [tinysofa-svn] r4548 - contrib/1.1/rrdtool Message-ID: <20040913110116.E76A04E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:01:16 +1000 (Mon, 13 Sep 2004) New Revision: 4548 Added: contrib/1.1/rrdtool/pristine/ Log: rrdtool: * retarget pristine (1.0.47-3bg) to releases/1.0.47/4gd Copied: contrib/1.1/rrdtool/pristine (from rev 4546, contrib/1.1/rrdtool/releases/1.0.47/4gd) From svn at tinysofa.org Mon Sep 13 11:01:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:01:28 +1000 (EST) Subject: [tinysofa-svn] r4549 - in contrib/1.1/scponly: current/specs releases/3.11 releases/3.11/2jh/specs Message-ID: <20040913110128.34F394E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:01:28 +1000 (Mon, 13 Sep 2004) New Revision: 4549 Added: contrib/1.1/scponly/releases/3.11/2jh/ Modified: contrib/1.1/scponly/current/specs/scponly.spec contrib/1.1/scponly/releases/3.11/2jh/specs/scponly.spec Log: scponly: * integrate current (3.11-2jh) as releases/3.11/2jh Modified: contrib/1.1/scponly/current/specs/scponly.spec =================================================================== --- contrib/1.1/scponly/current/specs/scponly.spec 2004-09-13 11:01:16 UTC (rev 4548) +++ contrib/1.1/scponly/current/specs/scponly.spec 2004-09-13 11:01:28 UTC (rev 4549) @@ -87,6 +87,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 3.11-2jh +- current (3.11-2jh) integrated as 3.11-2jh + * Mon Sep 13 2004 Jaakko Heinonen 3.11-2jh - fix broken requirement Copied: contrib/1.1/scponly/releases/3.11/2jh (from rev 4376, contrib/1.1/scponly/current) Modified: contrib/1.1/scponly/releases/3.11/2jh/specs/scponly.spec =================================================================== --- contrib/1.1/scponly/current/specs/scponly.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/scponly/releases/3.11/2jh/specs/scponly.spec 2004-09-13 11:01:28 UTC (rev 4549) @@ -87,6 +87,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 3.11-2jh +- current (3.11-2jh) integrated as 3.11-2jh + * Mon Sep 13 2004 Jaakko Heinonen 3.11-2jh - fix broken requirement From svn at tinysofa.org Mon Sep 13 11:01:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:01:32 +1000 (EST) Subject: [tinysofa-svn] r4550 - contrib/1.1/scponly Message-ID: <20040913110132.594114E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:01:32 +1000 (Mon, 13 Sep 2004) New Revision: 4550 Removed: contrib/1.1/scponly/pristine/ Log: scponly: * removing pristine (3.11-1bg) From svn at tinysofa.org Mon Sep 13 11:01:36 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:01:36 +1000 (EST) Subject: [tinysofa-svn] r4551 - contrib/1.1/scponly Message-ID: <20040913110136.C45E14E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:01:36 +1000 (Mon, 13 Sep 2004) New Revision: 4551 Added: contrib/1.1/scponly/pristine/ Log: scponly: * retarget pristine (3.11-1bg) to releases/3.11/2jh Copied: contrib/1.1/scponly/pristine (from rev 4549, contrib/1.1/scponly/releases/3.11/2jh) From svn at tinysofa.org Mon Sep 13 11:01:48 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:01:48 +1000 (EST) Subject: [tinysofa-svn] r4552 - in contrib/1.1/smartmontools: current/specs releases/5.31 releases/5.31/2jh/specs Message-ID: <20040913110148.149E14E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:01:47 +1000 (Mon, 13 Sep 2004) New Revision: 4552 Added: contrib/1.1/smartmontools/releases/5.31/2jh/ Modified: contrib/1.1/smartmontools/current/specs/smartmontools.spec contrib/1.1/smartmontools/releases/5.31/2jh/specs/smartmontools.spec Log: smartmontools: * integrate current (5.31-2jh) as releases/5.31/2jh Modified: contrib/1.1/smartmontools/current/specs/smartmontools.spec =================================================================== --- contrib/1.1/smartmontools/current/specs/smartmontools.spec 2004-09-13 11:01:36 UTC (rev 4551) +++ contrib/1.1/smartmontools/current/specs/smartmontools.spec 2004-09-13 11:01:47 UTC (rev 4552) @@ -1,7 +1,7 @@ Name: smartmontools Summary: disks and devices S.M.A.R.T. monitor Version: 5.31 -Release: 2jh +Release: 2jh License: GPL Group: contrib Source: %{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 5.31-2jh +- current (5.31-2jh) integrated as 5.31-2jh + * Mon Aug 2 2004 Jaakko Heinonen 5.31-2jh - port to tinysofa 1.1 Copied: contrib/1.1/smartmontools/releases/5.31/2jh (from rev 4376, contrib/1.1/smartmontools/current) Modified: contrib/1.1/smartmontools/releases/5.31/2jh/specs/smartmontools.spec =================================================================== --- contrib/1.1/smartmontools/current/specs/smartmontools.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/smartmontools/releases/5.31/2jh/specs/smartmontools.spec 2004-09-13 11:01:47 UTC (rev 4552) @@ -1,7 +1,7 @@ Name: smartmontools Summary: disks and devices S.M.A.R.T. monitor Version: 5.31 -Release: 2jh +Release: 2jh License: GPL Group: contrib Source: %{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 5.31-2jh +- current (5.31-2jh) integrated as 5.31-2jh + * Mon Aug 2 2004 Jaakko Heinonen 5.31-2jh - port to tinysofa 1.1 From svn at tinysofa.org Mon Sep 13 11:01:52 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:01:52 +1000 (EST) Subject: [tinysofa-svn] r4553 - contrib/1.1/smartmontools Message-ID: <20040913110152.3F6814E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:01:52 +1000 (Mon, 13 Sep 2004) New Revision: 4553 Removed: contrib/1.1/smartmontools/pristine/ Log: smartmontools: * removing pristine (5.31-1jh) From svn at tinysofa.org Mon Sep 13 11:01:56 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:01:56 +1000 (EST) Subject: [tinysofa-svn] r4554 - contrib/1.1/smartmontools Message-ID: <20040913110156.EA62B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:01:56 +1000 (Mon, 13 Sep 2004) New Revision: 4554 Added: contrib/1.1/smartmontools/pristine/ Log: smartmontools: * retarget pristine (5.31-1jh) to releases/5.31/2jh Copied: contrib/1.1/smartmontools/pristine (from rev 4552, contrib/1.1/smartmontools/releases/5.31/2jh) From svn at tinysofa.org Mon Sep 13 11:02:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:02:08 +1000 (EST) Subject: [tinysofa-svn] r4555 - in contrib/1.1/socat: current/specs releases/1.3.2.2/1bg releases/1.3.2.2/1bg/current/specs Message-ID: <20040913110208.9B1CE4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:02:08 +1000 (Mon, 13 Sep 2004) New Revision: 4555 Added: contrib/1.1/socat/releases/1.3.2.2/1bg/current/ Modified: contrib/1.1/socat/current/specs/socat.spec contrib/1.1/socat/releases/1.3.2.2/1bg/current/specs/socat.spec Log: socat: * integrate current (1.3.2.2-1bg) as releases/1.3.2.2/1bg Modified: contrib/1.1/socat/current/specs/socat.spec =================================================================== --- contrib/1.1/socat/current/specs/socat.spec 2004-09-13 11:01:56 UTC (rev 4554) +++ contrib/1.1/socat/current/specs/socat.spec 2004-09-13 11:02:08 UTC (rev 4555) @@ -48,6 +48,9 @@ %{_mandir}/man1/socat.1* %changelog +* Mon Sep 13 2004 tsintegrate 1.3.2.2-1bg +- current (1.3.2.2-1bg) integrated as 1.3.2.2-1bg + * Mon Jun 21 2004 Goetz Bock 1.3.2.2-1bg - build for tinysofa contrib Copied: contrib/1.1/socat/releases/1.3.2.2/1bg/current (from rev 4376, contrib/1.1/socat/current) Modified: contrib/1.1/socat/releases/1.3.2.2/1bg/current/specs/socat.spec =================================================================== --- contrib/1.1/socat/current/specs/socat.spec 2004-09-13 10:20:37 UTC (rev 4376) +++ contrib/1.1/socat/releases/1.3.2.2/1bg/current/specs/socat.spec 2004-09-13 11:02:08 UTC (rev 4555) @@ -48,6 +48,9 @@ %{_mandir}/man1/socat.1* %changelog +* Mon Sep 13 2004 tsintegrate 1.3.2.2-1bg +- current (1.3.2.2-1bg) integrated as 1.3.2.2-1bg + * Mon Jun 21 2004 Goetz Bock 1.3.2.2-1bg - build for tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:02:16 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:02:16 +1000 (EST) Subject: [tinysofa-svn] r4556 - contrib/1.1/socat Message-ID: <20040913110216.BEE964E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:02:16 +1000 (Mon, 13 Sep 2004) New Revision: 4556 Removed: contrib/1.1/socat/pristine/ Log: socat: * retarget pristine (1.3.2.2-1bg) to releases/1.3.2.2/1bg From svn at tinysofa.org Mon Sep 13 11:33:34 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:33:34 +1000 (EST) Subject: [tinysofa-svn] r4557 - in contrib/1.1/alsa-lib: . current/specs releases releases/1.0.5 releases/1.0.5/1jh/specs Message-ID: <20040913113334.348384E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:33:33 +1000 (Mon, 13 Sep 2004) New Revision: 4557 Added: contrib/1.1/alsa-lib/pristine/ contrib/1.1/alsa-lib/releases/1.0.5/ contrib/1.1/alsa-lib/releases/1.0.5/1jh/ Modified: contrib/1.1/alsa-lib/current/specs/alsa-lib.spec contrib/1.1/alsa-lib/releases/1.0.5/1jh/specs/alsa-lib.spec Log: alsa-lib: * integrate current (1.0.5-1jh) as releases/1.0.5/1jh Modified: contrib/1.1/alsa-lib/current/specs/alsa-lib.spec =================================================================== --- contrib/1.1/alsa-lib/current/specs/alsa-lib.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/alsa-lib/current/specs/alsa-lib.spec 2004-09-13 11:33:33 UTC (rev 4557) @@ -73,6 +73,9 @@ %{_datadir}/aclocal/alsa.m4 %changelog +* Mon Sep 13 2004 tsintegrate 1.0.5-1jh +- current (1.0.5-1jh) integrated as 1.0.5-1jh + * Fri Jul 2 2004 Bill Nottingham 1.0.5-1 - update to 1.0.5 Copied: contrib/1.1/alsa-lib/releases/1.0.5/1jh (from rev 4556, contrib/1.1/alsa-lib/current) Modified: contrib/1.1/alsa-lib/releases/1.0.5/1jh/specs/alsa-lib.spec =================================================================== --- contrib/1.1/alsa-lib/current/specs/alsa-lib.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/alsa-lib/releases/1.0.5/1jh/specs/alsa-lib.spec 2004-09-13 11:33:33 UTC (rev 4557) @@ -73,6 +73,9 @@ %{_datadir}/aclocal/alsa.m4 %changelog +* Mon Sep 13 2004 tsintegrate 1.0.5-1jh +- current (1.0.5-1jh) integrated as 1.0.5-1jh + * Fri Jul 2 2004 Bill Nottingham 1.0.5-1 - update to 1.0.5 From svn at tinysofa.org Mon Sep 13 11:33:37 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:33:37 +1000 (EST) Subject: [tinysofa-svn] r4558 - contrib/1.1/alsa-lib Message-ID: <20040913113337.F24A64E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:33:37 +1000 (Mon, 13 Sep 2004) New Revision: 4558 Removed: contrib/1.1/alsa-lib/pristine/ Log: alsa-lib: * removing pristine (1.0.5-1jh) From svn at tinysofa.org Mon Sep 13 11:33:42 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:33:42 +1000 (EST) Subject: [tinysofa-svn] r4559 - contrib/1.1/alsa-lib Message-ID: <20040913113342.916C64E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:33:42 +1000 (Mon, 13 Sep 2004) New Revision: 4559 Added: contrib/1.1/alsa-lib/pristine/ Log: alsa-lib: * retarget pristine (1.0.5-1jh) to releases/1.0.5/1jh Copied: contrib/1.1/alsa-lib/pristine (from rev 4557, contrib/1.1/alsa-lib/releases/1.0.5/1jh) From svn at tinysofa.org Mon Sep 13 11:33:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:33:50 +1000 (EST) Subject: [tinysofa-svn] r4560 - in contrib/1.1/alsa-utils: . current/specs releases releases/1.0.5 releases/1.0.5/1jh/specs Message-ID: <20040913113350.0ECC94E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:33:49 +1000 (Mon, 13 Sep 2004) New Revision: 4560 Added: contrib/1.1/alsa-utils/pristine/ contrib/1.1/alsa-utils/releases/1.0.5/ contrib/1.1/alsa-utils/releases/1.0.5/1jh/ Modified: contrib/1.1/alsa-utils/current/specs/alsa-utils.spec contrib/1.1/alsa-utils/releases/1.0.5/1jh/specs/alsa-utils.spec Log: alsa-utils: * integrate current (1.0.5-1jh) as releases/1.0.5/1jh Modified: contrib/1.1/alsa-utils/current/specs/alsa-utils.spec =================================================================== --- contrib/1.1/alsa-utils/current/specs/alsa-utils.spec 2004-09-13 11:33:42 UTC (rev 4559) +++ contrib/1.1/alsa-utils/current/specs/alsa-utils.spec 2004-09-13 11:33:49 UTC (rev 4560) @@ -1,7 +1,7 @@ Summary: Advanced Linux Sound Architecture (ALSA) utilities Name: alsa-utils Version: 1.0.5 -Release: 1jh +Release: 1jh License: GPL Group: contrib URL: http://www.alsa-project.org/ @@ -40,6 +40,9 @@ %{_mandir}/man?/* %changelog +* Mon Sep 13 2004 tsintegrate 1.0.5-1jh +- current (1.0.5-1jh) integrated as 1.0.5-1jh + * Fri Jul 2 2004 Bill Nottingham 1.0.5-1 - update to 1.0.5 Copied: contrib/1.1/alsa-utils/releases/1.0.5/1jh (from rev 4556, contrib/1.1/alsa-utils/current) Modified: contrib/1.1/alsa-utils/releases/1.0.5/1jh/specs/alsa-utils.spec =================================================================== --- contrib/1.1/alsa-utils/current/specs/alsa-utils.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/alsa-utils/releases/1.0.5/1jh/specs/alsa-utils.spec 2004-09-13 11:33:49 UTC (rev 4560) @@ -1,7 +1,7 @@ Summary: Advanced Linux Sound Architecture (ALSA) utilities Name: alsa-utils Version: 1.0.5 -Release: 1jh +Release: 1jh License: GPL Group: contrib URL: http://www.alsa-project.org/ @@ -40,6 +40,9 @@ %{_mandir}/man?/* %changelog +* Mon Sep 13 2004 tsintegrate 1.0.5-1jh +- current (1.0.5-1jh) integrated as 1.0.5-1jh + * Fri Jul 2 2004 Bill Nottingham 1.0.5-1 - update to 1.0.5 From svn at tinysofa.org Mon Sep 13 11:33:53 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:33:53 +1000 (EST) Subject: [tinysofa-svn] r4561 - contrib/1.1/alsa-utils Message-ID: <20040913113353.E01114E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:33:53 +1000 (Mon, 13 Sep 2004) New Revision: 4561 Removed: contrib/1.1/alsa-utils/pristine/ Log: alsa-utils: * removing pristine (1.0.5-1jh) From svn at tinysofa.org Mon Sep 13 11:33:58 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:33:58 +1000 (EST) Subject: [tinysofa-svn] r4562 - contrib/1.1/alsa-utils Message-ID: <20040913113358.983024E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:33:58 +1000 (Mon, 13 Sep 2004) New Revision: 4562 Added: contrib/1.1/alsa-utils/pristine/ Log: alsa-utils: * retarget pristine (1.0.5-1jh) to releases/1.0.5/1jh Copied: contrib/1.1/alsa-utils/pristine (from rev 4560, contrib/1.1/alsa-utils/releases/1.0.5/1jh) From svn at tinysofa.org Mon Sep 13 11:34:05 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:34:05 +1000 (EST) Subject: [tinysofa-svn] r4563 - in contrib/1.1/chkfontpath: . current/specs releases releases/1.10.0 releases/1.10.0/1gd/specs Message-ID: <20040913113405.0203A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:34:05 +1000 (Mon, 13 Sep 2004) New Revision: 4563 Added: contrib/1.1/chkfontpath/pristine/ contrib/1.1/chkfontpath/releases/1.10.0/ contrib/1.1/chkfontpath/releases/1.10.0/1gd/ Modified: contrib/1.1/chkfontpath/current/specs/chkfontpath.spec contrib/1.1/chkfontpath/releases/1.10.0/1gd/specs/chkfontpath.spec Log: chkfontpath: * integrate current (1.10.0-1gd) as releases/1.10.0/1gd Modified: contrib/1.1/chkfontpath/current/specs/chkfontpath.spec =================================================================== --- contrib/1.1/chkfontpath/current/specs/chkfontpath.spec 2004-09-13 11:33:58 UTC (rev 4562) +++ contrib/1.1/chkfontpath/current/specs/chkfontpath.spec 2004-09-13 11:34:05 UTC (rev 4563) @@ -41,6 +41,9 @@ %{_mandir}/man8/* %changelog +* Mon Sep 13 2004 tsintegrate 1.10.0-1gd +- current (1.10.0-1gd) integrated as 1.10.0-1gd + * Sun Aug 22 2004 Gerald Dachs 1.10.0-1gd - new in tinysofa contrib Copied: contrib/1.1/chkfontpath/releases/1.10.0/1gd (from rev 4556, contrib/1.1/chkfontpath/current) Modified: contrib/1.1/chkfontpath/releases/1.10.0/1gd/specs/chkfontpath.spec =================================================================== --- contrib/1.1/chkfontpath/current/specs/chkfontpath.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/chkfontpath/releases/1.10.0/1gd/specs/chkfontpath.spec 2004-09-13 11:34:05 UTC (rev 4563) @@ -41,6 +41,9 @@ %{_mandir}/man8/* %changelog +* Mon Sep 13 2004 tsintegrate 1.10.0-1gd +- current (1.10.0-1gd) integrated as 1.10.0-1gd + * Sun Aug 22 2004 Gerald Dachs 1.10.0-1gd - new in tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:34:10 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:34:10 +1000 (EST) Subject: [tinysofa-svn] r4564 - contrib/1.1/chkfontpath Message-ID: <20040913113410.0484C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:34:09 +1000 (Mon, 13 Sep 2004) New Revision: 4564 Removed: contrib/1.1/chkfontpath/pristine/ Log: chkfontpath: * removing pristine (1.10.0-1gd) From svn at tinysofa.org Mon Sep 13 11:34:14 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:34:14 +1000 (EST) Subject: [tinysofa-svn] r4565 - contrib/1.1/chkfontpath Message-ID: <20040913113414.9FA8B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:34:14 +1000 (Mon, 13 Sep 2004) New Revision: 4565 Added: contrib/1.1/chkfontpath/pristine/ Log: chkfontpath: * retarget pristine (1.10.0-1gd) to releases/1.10.0/1gd Copied: contrib/1.1/chkfontpath/pristine (from rev 4563, contrib/1.1/chkfontpath/releases/1.10.0/1gd) From svn at tinysofa.org Mon Sep 13 11:34:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:34:21 +1000 (EST) Subject: [tinysofa-svn] r4566 - in contrib/1.1/clamassassin: . current/specs releases releases/1.2.1 releases/1.2.1/1gd/specs Message-ID: <20040913113421.A56DC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:34:21 +1000 (Mon, 13 Sep 2004) New Revision: 4566 Added: contrib/1.1/clamassassin/pristine/ contrib/1.1/clamassassin/releases/1.2.1/ contrib/1.1/clamassassin/releases/1.2.1/1gd/ Modified: contrib/1.1/clamassassin/current/specs/clamassassin.spec contrib/1.1/clamassassin/releases/1.2.1/1gd/specs/clamassassin.spec Log: clamassassin: * integrate current (1.2.1-1gd) as releases/1.2.1/1gd Modified: contrib/1.1/clamassassin/current/specs/clamassassin.spec =================================================================== --- contrib/1.1/clamassassin/current/specs/clamassassin.spec 2004-09-13 11:34:14 UTC (rev 4565) +++ contrib/1.1/clamassassin/current/specs/clamassassin.spec 2004-09-13 11:34:21 UTC (rev 4566) @@ -1,7 +1,7 @@ Summary: clamassassin e-mail virus filter Name: clamassassin Version: 1.2.1 -Release: 1gd +Release: 1gd Copyright: Based on the Berkeley License Group: contrib Source: %{name}-%{version}.tar.gz @@ -35,6 +35,9 @@ %{_bindir}/clamassassin %changelog +* Mon Sep 13 2004 tsintegrate 1.2.1-1gd +- current (1.2.1-1gd) integrated as 1.2.1-1gd + * Fri Sep 10 2004 Gerald Dachs 1.2.1-1gd - New in tinysofa contrib Copied: contrib/1.1/clamassassin/releases/1.2.1/1gd (from rev 4556, contrib/1.1/clamassassin/current) Modified: contrib/1.1/clamassassin/releases/1.2.1/1gd/specs/clamassassin.spec =================================================================== --- contrib/1.1/clamassassin/current/specs/clamassassin.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/clamassassin/releases/1.2.1/1gd/specs/clamassassin.spec 2004-09-13 11:34:21 UTC (rev 4566) @@ -1,7 +1,7 @@ Summary: clamassassin e-mail virus filter Name: clamassassin Version: 1.2.1 -Release: 1gd +Release: 1gd Copyright: Based on the Berkeley License Group: contrib Source: %{name}-%{version}.tar.gz @@ -35,6 +35,9 @@ %{_bindir}/clamassassin %changelog +* Mon Sep 13 2004 tsintegrate 1.2.1-1gd +- current (1.2.1-1gd) integrated as 1.2.1-1gd + * Fri Sep 10 2004 Gerald Dachs 1.2.1-1gd - New in tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:34:25 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:34:25 +1000 (EST) Subject: [tinysofa-svn] r4567 - contrib/1.1/clamassassin Message-ID: <20040913113425.EF6464E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:34:25 +1000 (Mon, 13 Sep 2004) New Revision: 4567 Removed: contrib/1.1/clamassassin/pristine/ Log: clamassassin: * removing pristine (1.2.1-1gd) From svn at tinysofa.org Mon Sep 13 11:34:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:34:30 +1000 (EST) Subject: [tinysofa-svn] r4568 - contrib/1.1/clamassassin Message-ID: <20040913113430.8D7AF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:34:30 +1000 (Mon, 13 Sep 2004) New Revision: 4568 Added: contrib/1.1/clamassassin/pristine/ Log: clamassassin: * retarget pristine (1.2.1-1gd) to releases/1.2.1/1gd Copied: contrib/1.1/clamassassin/pristine (from rev 4566, contrib/1.1/clamassassin/releases/1.2.1/1gd) From svn at tinysofa.org Mon Sep 13 11:34:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:34:41 +1000 (EST) Subject: [tinysofa-svn] r4570 - contrib/1.1/clearsilver Message-ID: <20040913113441.DE4AF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:34:41 +1000 (Mon, 13 Sep 2004) New Revision: 4570 Removed: contrib/1.1/clearsilver/pristine/ Log: clearsilver: * removing pristine (0.9.10-1gd) From svn at tinysofa.org Mon Sep 13 11:34:46 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:34:46 +1000 (EST) Subject: [tinysofa-svn] r4571 - contrib/1.1/clearsilver Message-ID: <20040913113446.A008A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:34:46 +1000 (Mon, 13 Sep 2004) New Revision: 4571 Added: contrib/1.1/clearsilver/pristine/ Log: clearsilver: * retarget pristine (0.9.10-1gd) to releases/0.9.10/1gd Copied: contrib/1.1/clearsilver/pristine (from rev 4569, contrib/1.1/clearsilver/releases/0.9.10/1gd) From svn at tinysofa.org Mon Sep 13 11:34:54 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:34:54 +1000 (EST) Subject: [tinysofa-svn] r4572 - in contrib/1.1/compface: . current/specs releases releases/1.4 releases/1.4/1gd/specs Message-ID: <20040913113454.1B4094E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:34:53 +1000 (Mon, 13 Sep 2004) New Revision: 4572 Added: contrib/1.1/compface/pristine/ contrib/1.1/compface/releases/1.4/ contrib/1.1/compface/releases/1.4/1gd/ Modified: contrib/1.1/compface/current/specs/compface.spec contrib/1.1/compface/releases/1.4/1gd/specs/compface.spec Log: compface: * integrate current (1.4-1gd) as releases/1.4/1gd Modified: contrib/1.1/compface/current/specs/compface.spec =================================================================== --- contrib/1.1/compface/current/specs/compface.spec 2004-09-13 11:34:46 UTC (rev 4571) +++ contrib/1.1/compface/current/specs/compface.spec 2004-09-13 11:34:53 UTC (rev 4572) @@ -61,6 +61,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.4-1gd +- current (1.4-1gd) integrated as 1.4-1gd + * Sun Aug 22 2004 Gerald Dachs 1.4-1gd - New in tinysofa contrib Copied: contrib/1.1/compface/releases/1.4/1gd (from rev 4556, contrib/1.1/compface/current) Modified: contrib/1.1/compface/releases/1.4/1gd/specs/compface.spec =================================================================== --- contrib/1.1/compface/current/specs/compface.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/compface/releases/1.4/1gd/specs/compface.spec 2004-09-13 11:34:53 UTC (rev 4572) @@ -61,6 +61,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.4-1gd +- current (1.4-1gd) integrated as 1.4-1gd + * Sun Aug 22 2004 Gerald Dachs 1.4-1gd - New in tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:34:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:34:57 +1000 (EST) Subject: [tinysofa-svn] r4573 - contrib/1.1/compface Message-ID: <20040913113457.E17274E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:34:57 +1000 (Mon, 13 Sep 2004) New Revision: 4573 Removed: contrib/1.1/compface/pristine/ Log: compface: * removing pristine (1.4-1gd) From svn at tinysofa.org Mon Sep 13 11:35:02 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:35:02 +1000 (EST) Subject: [tinysofa-svn] r4574 - contrib/1.1/compface Message-ID: <20040913113502.A33514E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:35:02 +1000 (Mon, 13 Sep 2004) New Revision: 4574 Added: contrib/1.1/compface/pristine/ Log: compface: * retarget pristine (1.4-1gd) to releases/1.4/1gd Copied: contrib/1.1/compface/pristine (from rev 4572, contrib/1.1/compface/releases/1.4/1gd) From svn at tinysofa.org Mon Sep 13 11:34:37 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:34:37 +1000 (EST) Subject: [tinysofa-svn] r4569 - in contrib/1.1/clearsilver: . releases releases/0.9.10 Message-ID: <20040913113437.C24764E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:34:37 +1000 (Mon, 13 Sep 2004) New Revision: 4569 Added: contrib/1.1/clearsilver/pristine/ contrib/1.1/clearsilver/releases/0.9.10/ contrib/1.1/clearsilver/releases/0.9.10/1gd/ Log: clearsilver: * integrate current (0.9.10-1gd) as releases/0.9.10/1gd Copied: contrib/1.1/clearsilver/releases/0.9.10/1gd (from rev 4556, contrib/1.1/clearsilver/current) From svn at tinysofa.org Mon Sep 13 11:35:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:35:13 +1000 (EST) Subject: [tinysofa-svn] r4575 - in contrib/1.1/cvs: . current/specs releases/1.11.17 releases/1.11.17/1bg/specs Message-ID: <20040913113513.561BE4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:35:13 +1000 (Mon, 13 Sep 2004) New Revision: 4575 Added: contrib/1.1/cvs/pristine/ contrib/1.1/cvs/releases/1.11.17/1bg/ Modified: contrib/1.1/cvs/current/specs/cvs.spec contrib/1.1/cvs/releases/1.11.17/1bg/specs/cvs.spec Log: cvs: * integrate current (1.11.17-1bg) as releases/1.11.17/1bg Modified: contrib/1.1/cvs/current/specs/cvs.spec =================================================================== --- contrib/1.1/cvs/current/specs/cvs.spec 2004-09-13 11:35:02 UTC (rev 4574) +++ contrib/1.1/cvs/current/specs/cvs.spec 2004-09-13 11:35:13 UTC (rev 4575) @@ -111,6 +111,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.11.17-1bg +- current (1.11.17-1bg) integrated as 1.11.17-1bg + * Fri Jul 16 2004 Goetz Bock 1.11.17-1bg - new upstream: 1.11.17 Copied: contrib/1.1/cvs/releases/1.11.17/1bg (from rev 4556, contrib/1.1/cvs/current) Modified: contrib/1.1/cvs/releases/1.11.17/1bg/specs/cvs.spec =================================================================== --- contrib/1.1/cvs/current/specs/cvs.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/cvs/releases/1.11.17/1bg/specs/cvs.spec 2004-09-13 11:35:13 UTC (rev 4575) @@ -111,6 +111,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.11.17-1bg +- current (1.11.17-1bg) integrated as 1.11.17-1bg + * Fri Jul 16 2004 Goetz Bock 1.11.17-1bg - new upstream: 1.11.17 From svn at tinysofa.org Mon Sep 13 11:35:18 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:35:18 +1000 (EST) Subject: [tinysofa-svn] r4576 - contrib/1.1/cvs Message-ID: <20040913113518.1B4414E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:35:17 +1000 (Mon, 13 Sep 2004) New Revision: 4576 Removed: contrib/1.1/cvs/pristine/ Log: cvs: * removing pristine (1.11.17-1bg) From svn at tinysofa.org Mon Sep 13 11:35:22 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:35:22 +1000 (EST) Subject: [tinysofa-svn] r4577 - contrib/1.1/cvs Message-ID: <20040913113522.9AB854E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:35:22 +1000 (Mon, 13 Sep 2004) New Revision: 4577 Added: contrib/1.1/cvs/pristine/ Log: cvs: * retarget pristine (1.11.17-1bg) to releases/1.11.17/1bg Copied: contrib/1.1/cvs/pristine (from rev 4575, contrib/1.1/cvs/releases/1.11.17/1bg) From svn at tinysofa.org Mon Sep 13 11:35:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:35:30 +1000 (EST) Subject: [tinysofa-svn] r4578 - in contrib/1.1/distcc: . current/specs releases releases/2.17 releases/2.17/1gd/specs Message-ID: <20040913113530.54EEF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:35:30 +1000 (Mon, 13 Sep 2004) New Revision: 4578 Added: contrib/1.1/distcc/pristine/ contrib/1.1/distcc/releases/2.17/ contrib/1.1/distcc/releases/2.17/1gd/ Modified: contrib/1.1/distcc/current/specs/distcc.spec contrib/1.1/distcc/releases/2.17/1gd/specs/distcc.spec Log: distcc: * integrate current (2.17-1gd) as releases/2.17/1gd Modified: contrib/1.1/distcc/current/specs/distcc.spec =================================================================== --- contrib/1.1/distcc/current/specs/distcc.spec 2004-09-13 11:35:22 UTC (rev 4577) +++ contrib/1.1/distcc/current/specs/distcc.spec 2004-09-13 11:35:30 UTC (rev 4578) @@ -1,7 +1,7 @@ Summary: A free distributed C/C++ compiler system Name: distcc Version: 2.17 -Release: 1gd +Release: 1gd Group: contrib License: GPL Source0: http://distcc.samba.org/ftp/distcc/%{name}-%{version}.tar.bz2 @@ -81,6 +81,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 2.17-1gd +- current (2.17-1gd) integrated as 2.17-1gd + * Tue Aug 10 2004 Gerald Dachs 2.17-1gd - new in contrib Copied: contrib/1.1/distcc/releases/2.17/1gd (from rev 4556, contrib/1.1/distcc/current) Modified: contrib/1.1/distcc/releases/2.17/1gd/specs/distcc.spec =================================================================== --- contrib/1.1/distcc/current/specs/distcc.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/distcc/releases/2.17/1gd/specs/distcc.spec 2004-09-13 11:35:30 UTC (rev 4578) @@ -1,7 +1,7 @@ Summary: A free distributed C/C++ compiler system Name: distcc Version: 2.17 -Release: 1gd +Release: 1gd Group: contrib License: GPL Source0: http://distcc.samba.org/ftp/distcc/%{name}-%{version}.tar.bz2 @@ -81,6 +81,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 2.17-1gd +- current (2.17-1gd) integrated as 2.17-1gd + * Tue Aug 10 2004 Gerald Dachs 2.17-1gd - new in contrib From svn at tinysofa.org Mon Sep 13 11:35:51 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:35:51 +1000 (EST) Subject: [tinysofa-svn] r4581 - in contrib/1.1/expect: . current/specs releases releases/5.39.0 releases/5.39.0/1jh/specs Message-ID: <20040913113551.661F14E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:35:51 +1000 (Mon, 13 Sep 2004) New Revision: 4581 Added: contrib/1.1/expect/pristine/ contrib/1.1/expect/releases/5.39.0/ contrib/1.1/expect/releases/5.39.0/1jh/ Modified: contrib/1.1/expect/current/specs/expect.spec contrib/1.1/expect/releases/5.39.0/1jh/specs/expect.spec Log: expect: * integrate current (5.39.0-1jh) as releases/5.39.0/1jh Modified: contrib/1.1/expect/current/specs/expect.spec =================================================================== --- contrib/1.1/expect/current/specs/expect.spec 2004-09-13 11:35:43 UTC (rev 4580) +++ contrib/1.1/expect/current/specs/expect.spec 2004-09-13 11:35:51 UTC (rev 4581) @@ -175,6 +175,9 @@ %endif %changelog +* Mon Sep 13 2004 tsintegrate 5.39.0-1jh +- current (5.39.0-1jh) integrated as 5.39.0-1jh + * Wed Aug 25 2004 Jaakko Heinonen - port to tinysofa Copied: contrib/1.1/expect/releases/5.39.0/1jh (from rev 4556, contrib/1.1/expect/current) Modified: contrib/1.1/expect/releases/5.39.0/1jh/specs/expect.spec =================================================================== --- contrib/1.1/expect/current/specs/expect.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/expect/releases/5.39.0/1jh/specs/expect.spec 2004-09-13 11:35:51 UTC (rev 4581) @@ -175,6 +175,9 @@ %endif %changelog +* Mon Sep 13 2004 tsintegrate 5.39.0-1jh +- current (5.39.0-1jh) integrated as 5.39.0-1jh + * Wed Aug 25 2004 Jaakko Heinonen - port to tinysofa From svn at tinysofa.org Mon Sep 13 11:35:55 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:35:55 +1000 (EST) Subject: [tinysofa-svn] r4582 - contrib/1.1/expect Message-ID: <20040913113555.CFE844E873C@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:35:55 +1000 (Mon, 13 Sep 2004) New Revision: 4582 Removed: contrib/1.1/expect/pristine/ Log: expect: * removing pristine (5.39.0-1jh) From svn at tinysofa.org Mon Sep 13 11:36:00 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:36:00 +1000 (EST) Subject: [tinysofa-svn] r4583 - contrib/1.1/expect Message-ID: <20040913113600.9B12E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:36:00 +1000 (Mon, 13 Sep 2004) New Revision: 4583 Added: contrib/1.1/expect/pristine/ Log: expect: * retarget pristine (5.39.0-1jh) to releases/5.39.0/1jh Copied: contrib/1.1/expect/pristine (from rev 4581, contrib/1.1/expect/releases/5.39.0/1jh) From svn at tinysofa.org Mon Sep 13 11:35:38 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:35:38 +1000 (EST) Subject: [tinysofa-svn] r4579 - contrib/1.1/distcc Message-ID: <20040913113538.E0D374E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:35:38 +1000 (Mon, 13 Sep 2004) New Revision: 4579 Removed: contrib/1.1/distcc/pristine/ Log: distcc: * removing pristine (2.17-1gd) From svn at tinysofa.org Mon Sep 13 11:35:43 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:35:43 +1000 (EST) Subject: [tinysofa-svn] r4580 - contrib/1.1/distcc Message-ID: <20040913113543.A69B74E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:35:43 +1000 (Mon, 13 Sep 2004) New Revision: 4580 Added: contrib/1.1/distcc/pristine/ Log: distcc: * retarget pristine (2.17-1gd) to releases/2.17/1gd Copied: contrib/1.1/distcc/pristine (from rev 4578, contrib/1.1/distcc/releases/2.17/1gd) From svn at tinysofa.org Mon Sep 13 11:36:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:36:07 +1000 (EST) Subject: [tinysofa-svn] r4584 - in contrib/1.1/fetchmail: . current/specs releases releases/6.2.5 releases/6.2.5/16gd/specs Message-ID: <20040913113607.F0FC74E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:36:07 +1000 (Mon, 13 Sep 2004) New Revision: 4584 Added: contrib/1.1/fetchmail/pristine/ contrib/1.1/fetchmail/releases/6.2.5/ contrib/1.1/fetchmail/releases/6.2.5/16gd/ Modified: contrib/1.1/fetchmail/current/specs/fetchmail.spec contrib/1.1/fetchmail/releases/6.2.5/16gd/specs/fetchmail.spec Log: fetchmail: * integrate current (6.2.5-16gd) as releases/6.2.5/16gd Modified: contrib/1.1/fetchmail/current/specs/fetchmail.spec =================================================================== --- contrib/1.1/fetchmail/current/specs/fetchmail.spec 2004-09-13 11:36:00 UTC (rev 4583) +++ contrib/1.1/fetchmail/current/specs/fetchmail.spec 2004-09-13 11:36:07 UTC (rev 4584) @@ -66,6 +66,9 @@ %{_bindir}/fetchmailconf %changelog +* Mon Sep 13 2004 tsintegrate 6.2.5-16gd +- current (6.2.5-16gd) integrated as 6.2.5-16gd + * Sun Apr 18 2004 Gerald Dachs 6.2.5-16gd - Rebuilt for tinysofa Copied: contrib/1.1/fetchmail/releases/6.2.5/16gd (from rev 4556, contrib/1.1/fetchmail/current) Modified: contrib/1.1/fetchmail/releases/6.2.5/16gd/specs/fetchmail.spec =================================================================== --- contrib/1.1/fetchmail/current/specs/fetchmail.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/fetchmail/releases/6.2.5/16gd/specs/fetchmail.spec 2004-09-13 11:36:07 UTC (rev 4584) @@ -66,6 +66,9 @@ %{_bindir}/fetchmailconf %changelog +* Mon Sep 13 2004 tsintegrate 6.2.5-16gd +- current (6.2.5-16gd) integrated as 6.2.5-16gd + * Sun Apr 18 2004 Gerald Dachs 6.2.5-16gd - Rebuilt for tinysofa From svn at tinysofa.org Mon Sep 13 11:36:11 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:36:11 +1000 (EST) Subject: [tinysofa-svn] r4585 - contrib/1.1/fetchmail Message-ID: <20040913113611.F035E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:36:11 +1000 (Mon, 13 Sep 2004) New Revision: 4585 Removed: contrib/1.1/fetchmail/pristine/ Log: fetchmail: * removing pristine (6.2.5-16gd) From svn at tinysofa.org Mon Sep 13 11:36:16 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:36:16 +1000 (EST) Subject: [tinysofa-svn] r4586 - contrib/1.1/fetchmail Message-ID: <20040913113616.AD2B04E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:36:16 +1000 (Mon, 13 Sep 2004) New Revision: 4586 Added: contrib/1.1/fetchmail/pristine/ Log: fetchmail: * retarget pristine (6.2.5-16gd) to releases/6.2.5/16gd Copied: contrib/1.1/fetchmail/pristine (from rev 4584, contrib/1.1/fetchmail/releases/6.2.5/16gd) From svn at tinysofa.org Mon Sep 13 11:36:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:36:28 +1000 (EST) Subject: [tinysofa-svn] r4587 - in contrib/1.1/firefox: . current/specs releases releases/0.9.3 releases/0.9.3/1jh/specs Message-ID: <20040913113628.C26DD4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:36:28 +1000 (Mon, 13 Sep 2004) New Revision: 4587 Added: contrib/1.1/firefox/pristine/ contrib/1.1/firefox/releases/0.9.3/ contrib/1.1/firefox/releases/0.9.3/1jh/ Modified: contrib/1.1/firefox/current/specs/firefox.spec contrib/1.1/firefox/releases/0.9.3/1jh/specs/firefox.spec Log: firefox: * integrate current (0.9.3-1jh) as releases/0.9.3/1jh Modified: contrib/1.1/firefox/current/specs/firefox.spec =================================================================== --- contrib/1.1/firefox/current/specs/firefox.spec 2004-09-13 11:36:16 UTC (rev 4586) +++ contrib/1.1/firefox/current/specs/firefox.spec 2004-09-13 11:36:28 UTC (rev 4587) @@ -208,6 +208,9 @@ %{_datadir}/pixmaps/firefox.png %changelog +* Mon Sep 13 2004 tsintegrate 0.9.3-1jh +- current (0.9.3-1jh) integrated as 0.9.3-1jh + * Sun Aug 08 2004 Dag Wieers - 0.9.3-1 - Added upstream psfonts patch from mozilla 1.7. - Added upstream file:// URI extensions patch. Copied: contrib/1.1/firefox/releases/0.9.3/1jh (from rev 4556, contrib/1.1/firefox/current) Modified: contrib/1.1/firefox/releases/0.9.3/1jh/specs/firefox.spec =================================================================== --- contrib/1.1/firefox/current/specs/firefox.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/firefox/releases/0.9.3/1jh/specs/firefox.spec 2004-09-13 11:36:28 UTC (rev 4587) @@ -208,6 +208,9 @@ %{_datadir}/pixmaps/firefox.png %changelog +* Mon Sep 13 2004 tsintegrate 0.9.3-1jh +- current (0.9.3-1jh) integrated as 0.9.3-1jh + * Sun Aug 08 2004 Dag Wieers - 0.9.3-1 - Added upstream psfonts patch from mozilla 1.7. - Added upstream file:// URI extensions patch. From svn at tinysofa.org Mon Sep 13 11:36:33 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:36:33 +1000 (EST) Subject: [tinysofa-svn] r4588 - contrib/1.1/firefox Message-ID: <20040913113633.DF4414E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:36:33 +1000 (Mon, 13 Sep 2004) New Revision: 4588 Removed: contrib/1.1/firefox/pristine/ Log: firefox: * removing pristine (0.9.3-1jh) From svn at tinysofa.org Mon Sep 13 11:36:39 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:36:39 +1000 (EST) Subject: [tinysofa-svn] r4589 - contrib/1.1/firefox Message-ID: <20040913113639.9AD384E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:36:39 +1000 (Mon, 13 Sep 2004) New Revision: 4589 Added: contrib/1.1/firefox/pristine/ Log: firefox: * retarget pristine (0.9.3-1jh) to releases/0.9.3/1jh Copied: contrib/1.1/firefox/pristine (from rev 4587, contrib/1.1/firefox/releases/0.9.3/1jh) From svn at tinysofa.org Mon Sep 13 11:36:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:36:49 +1000 (EST) Subject: [tinysofa-svn] r4590 - in contrib/1.1/gdk-pixbuf: . current/specs releases releases/0.22.0 releases/0.22.0/1jh/specs Message-ID: <20040913113649.2D2E74E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:36:48 +1000 (Mon, 13 Sep 2004) New Revision: 4590 Added: contrib/1.1/gdk-pixbuf/pristine/ contrib/1.1/gdk-pixbuf/releases/0.22.0/ contrib/1.1/gdk-pixbuf/releases/0.22.0/1jh/ Modified: contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec contrib/1.1/gdk-pixbuf/releases/0.22.0/1jh/specs/gdk-pixbuf.spec Log: gdk-pixbuf: * integrate current (0.22.0-1jh) as releases/0.22.0/1jh Modified: contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec =================================================================== --- contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec 2004-09-13 11:36:39 UTC (rev 4589) +++ contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec 2004-09-13 11:36:48 UTC (rev 4590) @@ -75,6 +75,9 @@ %{_datadir}/gnome/html/* %changelog +* Mon Sep 13 2004 tsintegrate 0.22.0-1jh +- current (0.22.0-1jh) integrated as 0.22.0-1jh + * Sat Jan 22 2000 Ross Golder - Borrowed from gnome-libs to integrate into gdk-pixbuf source tree Copied: contrib/1.1/gdk-pixbuf/releases/0.22.0/1jh (from rev 4556, contrib/1.1/gdk-pixbuf/current) Modified: contrib/1.1/gdk-pixbuf/releases/0.22.0/1jh/specs/gdk-pixbuf.spec =================================================================== --- contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/gdk-pixbuf/releases/0.22.0/1jh/specs/gdk-pixbuf.spec 2004-09-13 11:36:48 UTC (rev 4590) @@ -75,6 +75,9 @@ %{_datadir}/gnome/html/* %changelog +* Mon Sep 13 2004 tsintegrate 0.22.0-1jh +- current (0.22.0-1jh) integrated as 0.22.0-1jh + * Sat Jan 22 2000 Ross Golder - Borrowed from gnome-libs to integrate into gdk-pixbuf source tree From svn at tinysofa.org Mon Sep 13 11:36:55 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:36:55 +1000 (EST) Subject: [tinysofa-svn] r4591 - contrib/1.1/gdk-pixbuf Message-ID: <20040913113655.642DA4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:36:55 +1000 (Mon, 13 Sep 2004) New Revision: 4591 Removed: contrib/1.1/gdk-pixbuf/pristine/ Log: gdk-pixbuf: * removing pristine (0.22.0-1jh) From svn at tinysofa.org Mon Sep 13 11:37:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:37:27 +1000 (EST) Subject: [tinysofa-svn] r4597 - contrib/1.1/glib12 Message-ID: <20040913113727.EA31D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:37:27 +1000 (Mon, 13 Sep 2004) New Revision: 4597 Removed: contrib/1.1/glib12/pristine/ Log: glib12: * removing pristine (1.2.10-2jh) From svn at tinysofa.org Mon Sep 13 11:37:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:37:32 +1000 (EST) Subject: [tinysofa-svn] r4598 - contrib/1.1/glib12 Message-ID: <20040913113732.8D6114E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:37:32 +1000 (Mon, 13 Sep 2004) New Revision: 4598 Added: contrib/1.1/glib12/pristine/ Log: glib12: * retarget pristine (1.2.10-2jh) to releases/1.2.10/2jh Copied: contrib/1.1/glib12/pristine (from rev 4596, contrib/1.1/glib12/releases/1.2.10/2jh) From svn at tinysofa.org Mon Sep 13 11:37:40 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:37:40 +1000 (EST) Subject: [tinysofa-svn] r4599 - in contrib/1.1/gpgme: . current/specs releases releases/0.3.16 releases/0.3.16/1gd/specs Message-ID: <20040913113740.EA6934E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:37:40 +1000 (Mon, 13 Sep 2004) New Revision: 4599 Added: contrib/1.1/gpgme/pristine/ contrib/1.1/gpgme/releases/0.3.16/ contrib/1.1/gpgme/releases/0.3.16/1gd/ Modified: contrib/1.1/gpgme/current/specs/gpgme.spec contrib/1.1/gpgme/releases/0.3.16/1gd/specs/gpgme.spec Log: gpgme: * integrate current (0.3.16-1gd) as releases/0.3.16/1gd Modified: contrib/1.1/gpgme/current/specs/gpgme.spec =================================================================== --- contrib/1.1/gpgme/current/specs/gpgme.spec 2004-09-13 11:37:32 UTC (rev 4598) +++ contrib/1.1/gpgme/current/specs/gpgme.spec 2004-09-13 11:37:40 UTC (rev 4599) @@ -48,6 +48,9 @@ %{_infodir}/gpgme.info* %changelog +* Mon Sep 13 2004 tsintegrate 0.3.16-1gd +- current (0.3.16-1gd) integrated as 0.3.16-1gd + * Sun Aug 22 2004 Gerald Dachs 0.3.16-1gd - New in tinysofa contrib Copied: contrib/1.1/gpgme/releases/0.3.16/1gd (from rev 4556, contrib/1.1/gpgme/current) Modified: contrib/1.1/gpgme/releases/0.3.16/1gd/specs/gpgme.spec =================================================================== --- contrib/1.1/gpgme/current/specs/gpgme.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/gpgme/releases/0.3.16/1gd/specs/gpgme.spec 2004-09-13 11:37:40 UTC (rev 4599) @@ -48,6 +48,9 @@ %{_infodir}/gpgme.info* %changelog +* Mon Sep 13 2004 tsintegrate 0.3.16-1gd +- current (0.3.16-1gd) integrated as 0.3.16-1gd + * Sun Aug 22 2004 Gerald Dachs 0.3.16-1gd - New in tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:37:44 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:37:44 +1000 (EST) Subject: [tinysofa-svn] r4600 - contrib/1.1/gpgme Message-ID: <20040913113744.F20724E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:37:44 +1000 (Mon, 13 Sep 2004) New Revision: 4600 Removed: contrib/1.1/gpgme/pristine/ Log: gpgme: * removing pristine (0.3.16-1gd) From svn at tinysofa.org Mon Sep 13 11:37:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:37:49 +1000 (EST) Subject: [tinysofa-svn] r4601 - contrib/1.1/gpgme Message-ID: <20040913113749.936894E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:37:49 +1000 (Mon, 13 Sep 2004) New Revision: 4601 Added: contrib/1.1/gpgme/pristine/ Log: gpgme: * retarget pristine (0.3.16-1gd) to releases/0.3.16/1gd Copied: contrib/1.1/gpgme/pristine (from rev 4599, contrib/1.1/gpgme/releases/0.3.16/1gd) From svn at tinysofa.org Mon Sep 13 11:37:55 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:37:55 +1000 (EST) Subject: [tinysofa-svn] r4602 - in contrib/1.1/gqview: . releases releases/1.2.2 Message-ID: <20040913113755.E82214E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:37:55 +1000 (Mon, 13 Sep 2004) New Revision: 4602 Added: contrib/1.1/gqview/pristine/ contrib/1.1/gqview/releases/1.2.2/ contrib/1.1/gqview/releases/1.2.2/1jh/ Log: gqview: * integrate current (1.2.2-1jh) as releases/1.2.2/1jh Copied: contrib/1.1/gqview/releases/1.2.2/1jh (from rev 4556, contrib/1.1/gqview/current) From svn at tinysofa.org Mon Sep 13 11:37:59 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:37:59 +1000 (EST) Subject: [tinysofa-svn] r4603 - contrib/1.1/gqview Message-ID: <20040913113759.F31004E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:37:59 +1000 (Mon, 13 Sep 2004) New Revision: 4603 Removed: contrib/1.1/gqview/pristine/ Log: gqview: * removing pristine (1.2.2-1jh) From svn at tinysofa.org Mon Sep 13 11:36:59 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:36:59 +1000 (EST) Subject: [tinysofa-svn] r4592 - contrib/1.1/gdk-pixbuf Message-ID: <20040913113659.A7AB84E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:36:59 +1000 (Mon, 13 Sep 2004) New Revision: 4592 Added: contrib/1.1/gdk-pixbuf/pristine/ Log: gdk-pixbuf: * retarget pristine (0.22.0-1jh) to releases/0.22.0/1jh Copied: contrib/1.1/gdk-pixbuf/pristine (from rev 4590, contrib/1.1/gdk-pixbuf/releases/0.22.0/1jh) From svn at tinysofa.org Mon Sep 13 11:37:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:37:07 +1000 (EST) Subject: [tinysofa-svn] r4593 - in contrib/1.1/getmail: . current/specs releases releases/4.1.4 releases/4.1.4/2gd/specs Message-ID: <20040913113707.0B9764E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:37:06 +1000 (Mon, 13 Sep 2004) New Revision: 4593 Added: contrib/1.1/getmail/pristine/ contrib/1.1/getmail/releases/4.1.4/ contrib/1.1/getmail/releases/4.1.4/2gd/ Modified: contrib/1.1/getmail/current/specs/getmail.spec contrib/1.1/getmail/releases/4.1.4/2gd/specs/getmail.spec Log: getmail: * integrate current (4.1.4-2gd) as releases/4.1.4/2gd Modified: contrib/1.1/getmail/current/specs/getmail.spec =================================================================== --- contrib/1.1/getmail/current/specs/getmail.spec 2004-09-13 11:36:59 UTC (rev 4592) +++ contrib/1.1/getmail/current/specs/getmail.spec 2004-09-13 11:37:06 UTC (rev 4593) @@ -39,6 +39,9 @@ %doc README docs/* %changelog +* Mon Sep 13 2004 tsintegrate 4.1.4-2gd +- current (4.1.4-2gd) integrated as 4.1.4-2gd + * Mon Sep 6 2004 Gerald Dachs 4.1.4-2gd - allowed 'receive for' as envelope_recipient header (patch0) Copied: contrib/1.1/getmail/releases/4.1.4/2gd (from rev 4556, contrib/1.1/getmail/current) Modified: contrib/1.1/getmail/releases/4.1.4/2gd/specs/getmail.spec =================================================================== --- contrib/1.1/getmail/current/specs/getmail.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/getmail/releases/4.1.4/2gd/specs/getmail.spec 2004-09-13 11:37:06 UTC (rev 4593) @@ -39,6 +39,9 @@ %doc README docs/* %changelog +* Mon Sep 13 2004 tsintegrate 4.1.4-2gd +- current (4.1.4-2gd) integrated as 4.1.4-2gd + * Mon Sep 6 2004 Gerald Dachs 4.1.4-2gd - allowed 'receive for' as envelope_recipient header (patch0) From svn at tinysofa.org Mon Sep 13 11:37:10 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:37:10 +1000 (EST) Subject: [tinysofa-svn] r4594 - contrib/1.1/getmail Message-ID: <20040913113710.F0EBE4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:37:10 +1000 (Mon, 13 Sep 2004) New Revision: 4594 Removed: contrib/1.1/getmail/pristine/ Log: getmail: * removing pristine (4.1.4-2gd) From svn at tinysofa.org Mon Sep 13 11:37:15 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:37:15 +1000 (EST) Subject: [tinysofa-svn] r4595 - contrib/1.1/getmail Message-ID: <20040913113715.771A04E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:37:15 +1000 (Mon, 13 Sep 2004) New Revision: 4595 Added: contrib/1.1/getmail/pristine/ Log: getmail: * retarget pristine (4.1.4-2gd) to releases/4.1.4/2gd Copied: contrib/1.1/getmail/pristine (from rev 4593, contrib/1.1/getmail/releases/4.1.4/2gd) From svn at tinysofa.org Mon Sep 13 11:37:23 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:37:23 +1000 (EST) Subject: [tinysofa-svn] r4596 - in contrib/1.1/glib12: . current/specs releases releases/1.2.10 releases/1.2.10/2jh/specs Message-ID: <20040913113723.A1E864E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:37:23 +1000 (Mon, 13 Sep 2004) New Revision: 4596 Added: contrib/1.1/glib12/pristine/ contrib/1.1/glib12/releases/1.2.10/ contrib/1.1/glib12/releases/1.2.10/2jh/ Modified: contrib/1.1/glib12/current/specs/glib12.spec contrib/1.1/glib12/releases/1.2.10/2jh/specs/glib12.spec Log: glib12: * integrate current (1.2.10-2jh) as releases/1.2.10/2jh Modified: contrib/1.1/glib12/current/specs/glib12.spec =================================================================== --- contrib/1.1/glib12/current/specs/glib12.spec 2004-09-13 11:37:15 UTC (rev 4595) +++ contrib/1.1/glib12/current/specs/glib12.spec 2004-09-13 11:37:23 UTC (rev 4596) @@ -64,6 +64,9 @@ %{_prefix}/bin/* %changelog +* Mon Sep 13 2004 tsintegrate 1.2.10-2jh +- current (1.2.10-2jh) integrated as 1.2.10-2jh + * Fri Aug 27 2004 Jaakko Heinonen 1.2.10-2jh - make -devel require base package - use %_libdir insted of hardcoded /usr/lib Copied: contrib/1.1/glib12/releases/1.2.10/2jh (from rev 4556, contrib/1.1/glib12/current) Modified: contrib/1.1/glib12/releases/1.2.10/2jh/specs/glib12.spec =================================================================== --- contrib/1.1/glib12/current/specs/glib12.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/glib12/releases/1.2.10/2jh/specs/glib12.spec 2004-09-13 11:37:23 UTC (rev 4596) @@ -64,6 +64,9 @@ %{_prefix}/bin/* %changelog +* Mon Sep 13 2004 tsintegrate 1.2.10-2jh +- current (1.2.10-2jh) integrated as 1.2.10-2jh + * Fri Aug 27 2004 Jaakko Heinonen 1.2.10-2jh - make -devel require base package - use %_libdir insted of hardcoded /usr/lib From svn at tinysofa.org Mon Sep 13 11:38:04 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:38:04 +1000 (EST) Subject: [tinysofa-svn] r4604 - contrib/1.1/gqview Message-ID: <20040913113804.AAEFD4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:38:04 +1000 (Mon, 13 Sep 2004) New Revision: 4604 Added: contrib/1.1/gqview/pristine/ Log: gqview: * retarget pristine (1.2.2-1jh) to releases/1.2.2/1jh Copied: contrib/1.1/gqview/pristine (from rev 4602, contrib/1.1/gqview/releases/1.2.2/1jh) From svn at tinysofa.org Mon Sep 13 11:38:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:38:12 +1000 (EST) Subject: [tinysofa-svn] r4605 - in contrib/1.1/gtk12+: . contrib/1.1/gtk12+/current/specs contrib/1.1/gtk12+/releases contrib/1.1/gtk12+/releases/1.2.10 contrib/1.1/gtk12+/releases/1.2.10/2jh/specs Message-ID: <20040913113812.986904E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:38:12 +1000 (Mon, 13 Sep 2004) New Revision: 4605 Added: contrib/1.1/gtk12+/pristine/ contrib/1.1/gtk12+/releases/1.2.10/ contrib/1.1/gtk12+/releases/1.2.10/2jh/ Modified: contrib/1.1/gtk12+/current/specs/gtk12+.spec contrib/1.1/gtk12+/releases/1.2.10/2jh/specs/gtk12+.spec Log: gtk12+: * integrate current (1.2.10-2jh) as releases/1.2.10/2jh Modified: contrib/1.1/gtk12+/current/specs/gtk12+.spec =================================================================== --- contrib/1.1/gtk12+/current/specs/gtk12+.spec 2004-09-13 11:38:04 UTC (rev 4604) +++ contrib/1.1/gtk12+/current/specs/gtk12+.spec 2004-09-13 11:38:12 UTC (rev 4605) @@ -75,6 +75,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.2.10-2jh +- current (1.2.10-2jh) integrated as 1.2.10-2jh + * Sat Aug 28 2004 Jaakko Heinonen 1.2.10-2jh - make -devel require base package - add BuildRequires: gettext-devel Copied: contrib/1.1/gtk12+/releases/1.2.10/2jh (from rev 4556, contrib/1.1/gtk12+/current) Modified: contrib/1.1/gtk12+/releases/1.2.10/2jh/specs/gtk12+.spec =================================================================== --- contrib/1.1/gtk12+/current/specs/gtk12+.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/gtk12+/releases/1.2.10/2jh/specs/gtk12+.spec 2004-09-13 11:38:12 UTC (rev 4605) @@ -75,6 +75,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.2.10-2jh +- current (1.2.10-2jh) integrated as 1.2.10-2jh + * Sat Aug 28 2004 Jaakko Heinonen 1.2.10-2jh - make -devel require base package - add BuildRequires: gettext-devel From svn at tinysofa.org Mon Sep 13 11:38:16 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:38:16 +1000 (EST) Subject: [tinysofa-svn] r4606 - contrib/1.1/gtk12+ Message-ID: <20040913113816.E61FA4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:38:16 +1000 (Mon, 13 Sep 2004) New Revision: 4606 Removed: contrib/1.1/gtk12+/pristine/ Log: gtk12+: * removing pristine (1.2.10-2jh) From svn at tinysofa.org Mon Sep 13 11:38:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:38:21 +1000 (EST) Subject: [tinysofa-svn] r4607 - contrib/1.1/gtk12+ Message-ID: <20040913113821.B09B34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:38:21 +1000 (Mon, 13 Sep 2004) New Revision: 4607 Added: contrib/1.1/gtk12+/pristine/ Log: gtk12+: * retarget pristine (1.2.10-2jh) to releases/1.2.10/2jh Copied: contrib/1.1/gtk12+/pristine (from rev 4605, contrib/1.1/gtk12+/releases/1.2.10/2jh) From svn at tinysofa.org Mon Sep 13 11:38:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:38:30 +1000 (EST) Subject: [tinysofa-svn] r4608 - in contrib/1.1/icewm: . current/specs releases releases/1.2.16 releases/1.2.16/2jh/specs Message-ID: <20040913113830.4E69B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:38:30 +1000 (Mon, 13 Sep 2004) New Revision: 4608 Added: contrib/1.1/icewm/pristine/ contrib/1.1/icewm/releases/1.2.16/ contrib/1.1/icewm/releases/1.2.16/2jh/ Modified: contrib/1.1/icewm/current/specs/icewm.spec contrib/1.1/icewm/releases/1.2.16/2jh/specs/icewm.spec Log: icewm: * integrate current (1.2.16-2jh) as releases/1.2.16/2jh Modified: contrib/1.1/icewm/current/specs/icewm.spec =================================================================== --- contrib/1.1/icewm/current/specs/icewm.spec 2004-09-13 11:38:21 UTC (rev 4607) +++ contrib/1.1/icewm/current/specs/icewm.spec 2004-09-13 11:38:30 UTC (rev 4608) @@ -70,6 +70,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.2.16-2jh +- current (1.2.16-2jh) integrated as 1.2.16-2jh + * Sun Sep 12 2004 Jaakko Heinonen 1.2.16-2jh - add default configuration Copied: contrib/1.1/icewm/releases/1.2.16/2jh (from rev 4556, contrib/1.1/icewm/current) Modified: contrib/1.1/icewm/releases/1.2.16/2jh/specs/icewm.spec =================================================================== --- contrib/1.1/icewm/current/specs/icewm.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/icewm/releases/1.2.16/2jh/specs/icewm.spec 2004-09-13 11:38:30 UTC (rev 4608) @@ -70,6 +70,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.2.16-2jh +- current (1.2.16-2jh) integrated as 1.2.16-2jh + * Sun Sep 12 2004 Jaakko Heinonen 1.2.16-2jh - add default configuration From svn at tinysofa.org Mon Sep 13 11:38:34 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:38:34 +1000 (EST) Subject: [tinysofa-svn] r4609 - contrib/1.1/icewm Message-ID: <20040913113834.E69A04E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:38:34 +1000 (Mon, 13 Sep 2004) New Revision: 4609 Removed: contrib/1.1/icewm/pristine/ Log: icewm: * removing pristine (1.2.16-2jh) From svn at tinysofa.org Mon Sep 13 11:38:39 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:38:39 +1000 (EST) Subject: [tinysofa-svn] r4610 - contrib/1.1/icewm Message-ID: <20040913113839.C4D694E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:38:39 +1000 (Mon, 13 Sep 2004) New Revision: 4610 Added: contrib/1.1/icewm/pristine/ Log: icewm: * retarget pristine (1.2.16-2jh) to releases/1.2.16/2jh Copied: contrib/1.1/icewm/pristine (from rev 4608, contrib/1.1/icewm/releases/1.2.16/2jh) From svn at tinysofa.org Mon Sep 13 11:38:47 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:38:47 +1000 (EST) Subject: [tinysofa-svn] r4611 - in contrib/1.1/imlib: . current/specs releases releases/1.9.14 releases/1.9.14/1gd/specs Message-ID: <20040913113847.800E94E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:38:47 +1000 (Mon, 13 Sep 2004) New Revision: 4611 Added: contrib/1.1/imlib/pristine/ contrib/1.1/imlib/releases/1.9.14/ contrib/1.1/imlib/releases/1.9.14/1gd/ Modified: contrib/1.1/imlib/current/specs/imlib.spec contrib/1.1/imlib/releases/1.9.14/1gd/specs/imlib.spec Log: imlib: * integrate current (1.9.14-1gd) as releases/1.9.14/1gd Modified: contrib/1.1/imlib/current/specs/imlib.spec =================================================================== --- contrib/1.1/imlib/current/specs/imlib.spec 2004-09-13 11:38:39 UTC (rev 4610) +++ contrib/1.1/imlib/current/specs/imlib.spec 2004-09-13 11:38:47 UTC (rev 4611) @@ -64,5 +64,8 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.9.14-1gd +- current (1.9.14-1gd) integrated as 1.9.14-1gd + * Sun Aug 22 2004 Gerald Dachs 1.9.14-1gd - New in tinysofa contrib Copied: contrib/1.1/imlib/releases/1.9.14/1gd (from rev 4556, contrib/1.1/imlib/current) Modified: contrib/1.1/imlib/releases/1.9.14/1gd/specs/imlib.spec =================================================================== --- contrib/1.1/imlib/current/specs/imlib.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/imlib/releases/1.9.14/1gd/specs/imlib.spec 2004-09-13 11:38:47 UTC (rev 4611) @@ -64,5 +64,8 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.9.14-1gd +- current (1.9.14-1gd) integrated as 1.9.14-1gd + * Sun Aug 22 2004 Gerald Dachs 1.9.14-1gd - New in tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:38:51 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:38:51 +1000 (EST) Subject: [tinysofa-svn] r4612 - contrib/1.1/imlib Message-ID: <20040913113851.F33E54E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:38:51 +1000 (Mon, 13 Sep 2004) New Revision: 4612 Removed: contrib/1.1/imlib/pristine/ Log: imlib: * removing pristine (1.9.14-1gd) From svn at tinysofa.org Mon Sep 13 11:38:56 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:38:56 +1000 (EST) Subject: [tinysofa-svn] r4613 - contrib/1.1/imlib Message-ID: <20040913113856.96EE74E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:38:56 +1000 (Mon, 13 Sep 2004) New Revision: 4613 Added: contrib/1.1/imlib/pristine/ Log: imlib: * retarget pristine (1.9.14-1gd) to releases/1.9.14/1gd Copied: contrib/1.1/imlib/pristine (from rev 4611, contrib/1.1/imlib/releases/1.9.14/1gd) From svn at tinysofa.org Mon Sep 13 11:39:04 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:39:04 +1000 (EST) Subject: [tinysofa-svn] r4614 - in contrib/1.1/jigdo: . current/specs releases releases/0.7.1 releases/0.7.1/2gd/specs Message-ID: <20040913113904.B2B1A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:39:04 +1000 (Mon, 13 Sep 2004) New Revision: 4614 Added: contrib/1.1/jigdo/pristine/ contrib/1.1/jigdo/releases/0.7.1/ contrib/1.1/jigdo/releases/0.7.1/2gd/ Modified: contrib/1.1/jigdo/current/specs/jigdo.spec contrib/1.1/jigdo/releases/0.7.1/2gd/specs/jigdo.spec Log: jigdo: * integrate current (0.7.1-2gd) as releases/0.7.1/2gd Modified: contrib/1.1/jigdo/current/specs/jigdo.spec =================================================================== --- contrib/1.1/jigdo/current/specs/jigdo.spec 2004-09-13 11:38:56 UTC (rev 4613) +++ contrib/1.1/jigdo/current/specs/jigdo.spec 2004-09-13 11:39:04 UTC (rev 4614) @@ -1,7 +1,7 @@ Summary: Jigsaw Download Name: jigdo Version: 0.7.1 -Release: 2gd +Release: 2gd Group: contrib URL: http://atterer.net/jigdo/ Source: http://atterer.net/jigdo/%{name}-%{version}.tar.bz2 @@ -55,6 +55,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.7.1-2gd +- current (0.7.1-2gd) integrated as 0.7.1-2gd + * Sat Aug 21 2004 Gerald Dachs 0.7.1-2gd - some fixes * Tue Jul 20 2004 Gerald Dachs 0.7.1-1gd Copied: contrib/1.1/jigdo/releases/0.7.1/2gd (from rev 4556, contrib/1.1/jigdo/current) Modified: contrib/1.1/jigdo/releases/0.7.1/2gd/specs/jigdo.spec =================================================================== --- contrib/1.1/jigdo/current/specs/jigdo.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/jigdo/releases/0.7.1/2gd/specs/jigdo.spec 2004-09-13 11:39:04 UTC (rev 4614) @@ -1,7 +1,7 @@ Summary: Jigsaw Download Name: jigdo Version: 0.7.1 -Release: 2gd +Release: 2gd Group: contrib URL: http://atterer.net/jigdo/ Source: http://atterer.net/jigdo/%{name}-%{version}.tar.bz2 @@ -55,6 +55,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.7.1-2gd +- current (0.7.1-2gd) integrated as 0.7.1-2gd + * Sat Aug 21 2004 Gerald Dachs 0.7.1-2gd - some fixes * Tue Jul 20 2004 Gerald Dachs 0.7.1-1gd From svn at tinysofa.org Mon Sep 13 11:39:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:39:08 +1000 (EST) Subject: [tinysofa-svn] r4615 - contrib/1.1/jigdo Message-ID: <20040913113908.EC9E04E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:39:08 +1000 (Mon, 13 Sep 2004) New Revision: 4615 Removed: contrib/1.1/jigdo/pristine/ Log: jigdo: * removing pristine (0.7.1-2gd) From svn at tinysofa.org Mon Sep 13 11:39:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:39:13 +1000 (EST) Subject: [tinysofa-svn] r4616 - contrib/1.1/jigdo Message-ID: <20040913113913.9196D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:39:13 +1000 (Mon, 13 Sep 2004) New Revision: 4616 Added: contrib/1.1/jigdo/pristine/ Log: jigdo: * retarget pristine (0.7.1-2gd) to releases/0.7.1/2gd Copied: contrib/1.1/jigdo/pristine (from rev 4614, contrib/1.1/jigdo/releases/0.7.1/2gd) From svn at tinysofa.org Mon Sep 13 11:39:29 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:39:29 +1000 (EST) Subject: [tinysofa-svn] r4617 - in contrib/1.1/kernel: . current/specs releases releases/2.6.8.1 releases/2.6.8.1/2gd/specs Message-ID: <20040913113929.630484E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:39:29 +1000 (Mon, 13 Sep 2004) New Revision: 4617 Added: contrib/1.1/kernel/pristine/ contrib/1.1/kernel/releases/2.6.8.1/ contrib/1.1/kernel/releases/2.6.8.1/2gd/ Modified: contrib/1.1/kernel/current/specs/kernel.spec contrib/1.1/kernel/releases/2.6.8.1/2gd/specs/kernel.spec Log: kernel: * integrate current (2.6.8.1-2gd) as releases/2.6.8.1/2gd Modified: contrib/1.1/kernel/current/specs/kernel.spec =================================================================== --- contrib/1.1/kernel/current/specs/kernel.spec 2004-09-13 11:39:13 UTC (rev 4616) +++ contrib/1.1/kernel/current/specs/kernel.spec 2004-09-13 11:39:29 UTC (rev 4617) @@ -945,6 +945,9 @@ %endif %changelog +* Mon Sep 13 2004 tsintegrate 2.6.8.1-2gd +- current (2.6.8.1-2gd) integrated as 2.6.8.1-2gd + * Fri Aug 13 2004 Gerald Dachs 2.6.8.1-1gd - first build for tinysofa classic server - BuildPreReq kernel-utils -> kernel-utils26 Copied: contrib/1.1/kernel/releases/2.6.8.1/2gd (from rev 4556, contrib/1.1/kernel/current) Modified: contrib/1.1/kernel/releases/2.6.8.1/2gd/specs/kernel.spec =================================================================== --- contrib/1.1/kernel/current/specs/kernel.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/kernel/releases/2.6.8.1/2gd/specs/kernel.spec 2004-09-13 11:39:29 UTC (rev 4617) @@ -945,6 +945,9 @@ %endif %changelog +* Mon Sep 13 2004 tsintegrate 2.6.8.1-2gd +- current (2.6.8.1-2gd) integrated as 2.6.8.1-2gd + * Fri Aug 13 2004 Gerald Dachs 2.6.8.1-1gd - first build for tinysofa classic server - BuildPreReq kernel-utils -> kernel-utils26 From svn at tinysofa.org Mon Sep 13 11:39:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:39:35 +1000 (EST) Subject: [tinysofa-svn] r4618 - contrib/1.1/kernel Message-ID: <20040913113935.08C414E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:39:34 +1000 (Mon, 13 Sep 2004) New Revision: 4618 Removed: contrib/1.1/kernel/pristine/ Log: kernel: * removing pristine (2.6.8.1-2gd) From svn at tinysofa.org Mon Sep 13 11:39:42 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:39:42 +1000 (EST) Subject: [tinysofa-svn] r4619 - contrib/1.1/kernel Message-ID: <20040913113942.3A4124E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:39:42 +1000 (Mon, 13 Sep 2004) New Revision: 4619 Added: contrib/1.1/kernel/pristine/ Log: kernel: * retarget pristine (2.6.8.1-2gd) to releases/2.6.8.1/2gd Copied: contrib/1.1/kernel/pristine (from rev 4617, contrib/1.1/kernel/releases/2.6.8.1/2gd) From svn at tinysofa.org Mon Sep 13 11:39:52 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:39:52 +1000 (EST) Subject: [tinysofa-svn] r4620 - in contrib/1.1/kernel-utils26: . current/specs releases releases/2.4 releases/2.4/1gd/specs Message-ID: <20040913113952.94A1E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:39:52 +1000 (Mon, 13 Sep 2004) New Revision: 4620 Added: contrib/1.1/kernel-utils26/pristine/ contrib/1.1/kernel-utils26/releases/2.4/ contrib/1.1/kernel-utils26/releases/2.4/1gd/ Modified: contrib/1.1/kernel-utils26/current/specs/kernel-utils26.spec contrib/1.1/kernel-utils26/releases/2.4/1gd/specs/kernel-utils26.spec Log: kernel-utils26: * integrate current (2.4-1gd) as releases/2.4/1gd Modified: contrib/1.1/kernel-utils26/current/specs/kernel-utils26.spec =================================================================== --- contrib/1.1/kernel-utils26/current/specs/kernel-utils26.spec 2004-09-13 11:39:42 UTC (rev 4619) +++ contrib/1.1/kernel-utils26/current/specs/kernel-utils26.spec 2004-09-13 11:39:52 UTC (rev 4620) @@ -1,7 +1,7 @@ Summary: Kernel and Hardware related utilities Name: kernel-utils26 Version: 2.4 -Release: 1gd +Release: 1gd Group: System Environment/Base License: GPL/OSL Source0: microcode_ctl-1.06.tar.gz @@ -196,6 +196,9 @@ %endif %changelog +* Mon Sep 13 2004 tsintegrate 2.4-1gd +- current (2.4-1gd) integrated as 2.4-1gd + * Wed Aug 18 2004 Gerald Dachs 2.4-1gd - taken from ts 2.0, changed to ts 1.1 - renamed to from kernel-utils to kernel-utils26, because Copied: contrib/1.1/kernel-utils26/releases/2.4/1gd (from rev 4556, contrib/1.1/kernel-utils26/current) Modified: contrib/1.1/kernel-utils26/releases/2.4/1gd/specs/kernel-utils26.spec =================================================================== --- contrib/1.1/kernel-utils26/current/specs/kernel-utils26.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/kernel-utils26/releases/2.4/1gd/specs/kernel-utils26.spec 2004-09-13 11:39:52 UTC (rev 4620) @@ -1,7 +1,7 @@ Summary: Kernel and Hardware related utilities Name: kernel-utils26 Version: 2.4 -Release: 1gd +Release: 1gd Group: System Environment/Base License: GPL/OSL Source0: microcode_ctl-1.06.tar.gz @@ -196,6 +196,9 @@ %endif %changelog +* Mon Sep 13 2004 tsintegrate 2.4-1gd +- current (2.4-1gd) integrated as 2.4-1gd + * Wed Aug 18 2004 Gerald Dachs 2.4-1gd - taken from ts 2.0, changed to ts 1.1 - renamed to from kernel-utils to kernel-utils26, because From svn at tinysofa.org Mon Sep 13 11:39:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:39:57 +1000 (EST) Subject: [tinysofa-svn] r4621 - contrib/1.1/kernel-utils26 Message-ID: <20040913113957.05DBD4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:39:56 +1000 (Mon, 13 Sep 2004) New Revision: 4621 Removed: contrib/1.1/kernel-utils26/pristine/ Log: kernel-utils26: * removing pristine (2.4-1gd) From svn at tinysofa.org Mon Sep 13 11:40:01 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:40:01 +1000 (EST) Subject: [tinysofa-svn] r4622 - contrib/1.1/kernel-utils26 Message-ID: <20040913114001.A3C704E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:40:01 +1000 (Mon, 13 Sep 2004) New Revision: 4622 Added: contrib/1.1/kernel-utils26/pristine/ Log: kernel-utils26: * retarget pristine (2.4-1gd) to releases/2.4/1gd Copied: contrib/1.1/kernel-utils26/pristine (from rev 4620, contrib/1.1/kernel-utils26/releases/2.4/1gd) From svn at tinysofa.org Mon Sep 13 11:40:09 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:40:09 +1000 (EST) Subject: [tinysofa-svn] r4623 - in contrib/1.1/libidl: . current/specs releases releases/0.6.8 releases/0.6.8/16gd/specs Message-ID: <20040913114009.7EFC64E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:40:09 +1000 (Mon, 13 Sep 2004) New Revision: 4623 Added: contrib/1.1/libidl/pristine/ contrib/1.1/libidl/releases/0.6.8/ contrib/1.1/libidl/releases/0.6.8/16gd/ Modified: contrib/1.1/libidl/current/specs/libidl.spec contrib/1.1/libidl/releases/0.6.8/16gd/specs/libidl.spec Log: libidl: * integrate current (0.6.8-16gd) as releases/0.6.8/16gd Modified: contrib/1.1/libidl/current/specs/libidl.spec =================================================================== --- contrib/1.1/libidl/current/specs/libidl.spec 2004-09-13 11:40:01 UTC (rev 4622) +++ contrib/1.1/libidl/current/specs/libidl.spec 2004-09-13 11:40:09 UTC (rev 4623) @@ -59,6 +59,9 @@ %{_prefix}/share/aclocal/* %changelog +* Mon Sep 13 2004 tsintegrate 0.6.8-16gd +- current (0.6.8-16gd) integrated as 0.6.8-16gd + * Tue Aug 24 2004 Gerald Dachs 0.6.8-16gd - rebuilt for tinysofa contrib Copied: contrib/1.1/libidl/releases/0.6.8/16gd (from rev 4556, contrib/1.1/libidl/current) Modified: contrib/1.1/libidl/releases/0.6.8/16gd/specs/libidl.spec =================================================================== --- contrib/1.1/libidl/current/specs/libidl.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/libidl/releases/0.6.8/16gd/specs/libidl.spec 2004-09-13 11:40:09 UTC (rev 4623) @@ -59,6 +59,9 @@ %{_prefix}/share/aclocal/* %changelog +* Mon Sep 13 2004 tsintegrate 0.6.8-16gd +- current (0.6.8-16gd) integrated as 0.6.8-16gd + * Tue Aug 24 2004 Gerald Dachs 0.6.8-16gd - rebuilt for tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:40:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:40:13 +1000 (EST) Subject: [tinysofa-svn] r4624 - contrib/1.1/libidl Message-ID: <20040913114013.F05BF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:40:13 +1000 (Mon, 13 Sep 2004) New Revision: 4624 Removed: contrib/1.1/libidl/pristine/ Log: libidl: * removing pristine (0.6.8-16gd) From svn at tinysofa.org Mon Sep 13 11:40:18 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:40:18 +1000 (EST) Subject: [tinysofa-svn] r4625 - contrib/1.1/libidl Message-ID: <20040913114018.803854E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:40:18 +1000 (Mon, 13 Sep 2004) New Revision: 4625 Added: contrib/1.1/libidl/pristine/ Log: libidl: * retarget pristine (0.6.8-16gd) to releases/0.6.8/16gd Copied: contrib/1.1/libidl/pristine (from rev 4623, contrib/1.1/libidl/releases/0.6.8/16gd) From svn at tinysofa.org Mon Sep 13 11:40:26 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:40:26 +1000 (EST) Subject: [tinysofa-svn] r4626 - in contrib/1.1/libogg: . current/specs releases releases/1.1 releases/1.1/1jh/specs Message-ID: <20040913114026.A7E6A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:40:26 +1000 (Mon, 13 Sep 2004) New Revision: 4626 Added: contrib/1.1/libogg/pristine/ contrib/1.1/libogg/releases/1.1/ contrib/1.1/libogg/releases/1.1/1jh/ Modified: contrib/1.1/libogg/current/specs/libogg.spec contrib/1.1/libogg/releases/1.1/1jh/specs/libogg.spec Log: libogg: * integrate current (1.1-1jh) as releases/1.1/1jh Modified: contrib/1.1/libogg/current/specs/libogg.spec =================================================================== --- contrib/1.1/libogg/current/specs/libogg.spec 2004-09-13 11:40:18 UTC (rev 4625) +++ contrib/1.1/libogg/current/specs/libogg.spec 2004-09-13 11:40:26 UTC (rev 4626) @@ -74,6 +74,9 @@ %postun -p /sbin/ldconfig %changelog +* Mon Sep 13 2004 tsintegrate 1.1-1jh +- current (1.1-1jh) integrated as 1.1-1jh + * Thu Jul 15 2004 Tim Waugh 2:1.1-4 - Fixed warnings in shipped m4 file. Copied: contrib/1.1/libogg/releases/1.1/1jh (from rev 4556, contrib/1.1/libogg/current) Modified: contrib/1.1/libogg/releases/1.1/1jh/specs/libogg.spec =================================================================== --- contrib/1.1/libogg/current/specs/libogg.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/libogg/releases/1.1/1jh/specs/libogg.spec 2004-09-13 11:40:26 UTC (rev 4626) @@ -74,6 +74,9 @@ %postun -p /sbin/ldconfig %changelog +* Mon Sep 13 2004 tsintegrate 1.1-1jh +- current (1.1-1jh) integrated as 1.1-1jh + * Thu Jul 15 2004 Tim Waugh 2:1.1-4 - Fixed warnings in shipped m4 file. From svn at tinysofa.org Mon Sep 13 11:40:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:40:30 +1000 (EST) Subject: [tinysofa-svn] r4627 - contrib/1.1/libogg Message-ID: <20040913114030.E72E34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:40:30 +1000 (Mon, 13 Sep 2004) New Revision: 4627 Removed: contrib/1.1/libogg/pristine/ Log: libogg: * removing pristine (1.1-1jh) From svn at tinysofa.org Mon Sep 13 11:40:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:40:35 +1000 (EST) Subject: [tinysofa-svn] r4628 - contrib/1.1/libogg Message-ID: <20040913114035.CD40F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:40:35 +1000 (Mon, 13 Sep 2004) New Revision: 4628 Added: contrib/1.1/libogg/pristine/ Log: libogg: * retarget pristine (1.1-1jh) to releases/1.1/1jh Copied: contrib/1.1/libogg/pristine (from rev 4626, contrib/1.1/libogg/releases/1.1/1jh) From svn at tinysofa.org Mon Sep 13 11:40:44 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:40:44 +1000 (EST) Subject: [tinysofa-svn] r4629 - in contrib/1.1/libungif: . current/specs releases releases/4.1.0 releases/4.1.0/1gd/specs Message-ID: <20040913114044.104304E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:40:43 +1000 (Mon, 13 Sep 2004) New Revision: 4629 Added: contrib/1.1/libungif/pristine/ contrib/1.1/libungif/releases/4.1.0/ contrib/1.1/libungif/releases/4.1.0/1gd/ Modified: contrib/1.1/libungif/current/specs/libungif.spec contrib/1.1/libungif/releases/4.1.0/1gd/specs/libungif.spec Log: libungif: * integrate current (4.1.0-1gd) as releases/4.1.0/1gd Modified: contrib/1.1/libungif/current/specs/libungif.spec =================================================================== --- contrib/1.1/libungif/current/specs/libungif.spec 2004-09-13 11:40:35 UTC (rev 4628) +++ contrib/1.1/libungif/current/specs/libungif.spec 2004-09-13 11:40:43 UTC (rev 4629) @@ -173,5 +173,8 @@ %{_bindir}/* %changelog +* Mon Sep 13 2004 tsintegrate 4.1.0-1gd +- current (4.1.0-1gd) integrated as 4.1.0-1gd + * Sun Aug 22 2004 Gerald Dachs 4.1.0-1gd - New in tinysofa contrib Copied: contrib/1.1/libungif/releases/4.1.0/1gd (from rev 4556, contrib/1.1/libungif/current) Modified: contrib/1.1/libungif/releases/4.1.0/1gd/specs/libungif.spec =================================================================== --- contrib/1.1/libungif/current/specs/libungif.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/libungif/releases/4.1.0/1gd/specs/libungif.spec 2004-09-13 11:40:43 UTC (rev 4629) @@ -173,5 +173,8 @@ %{_bindir}/* %changelog +* Mon Sep 13 2004 tsintegrate 4.1.0-1gd +- current (4.1.0-1gd) integrated as 4.1.0-1gd + * Sun Aug 22 2004 Gerald Dachs 4.1.0-1gd - New in tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:40:52 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:40:52 +1000 (EST) Subject: [tinysofa-svn] r4631 - contrib/1.1/libungif Message-ID: <20040913114052.991224E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:40:52 +1000 (Mon, 13 Sep 2004) New Revision: 4631 Added: contrib/1.1/libungif/pristine/ Log: libungif: * retarget pristine (4.1.0-1gd) to releases/4.1.0/1gd Copied: contrib/1.1/libungif/pristine (from rev 4629, contrib/1.1/libungif/releases/4.1.0/1gd) From svn at tinysofa.org Mon Sep 13 11:41:01 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:41:01 +1000 (EST) Subject: [tinysofa-svn] r4632 - in contrib/1.1/libvorbis: . current/specs releases releases/1.0.1 releases/1.0.1/1jh/specs Message-ID: <20040913114101.15B3D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:41:00 +1000 (Mon, 13 Sep 2004) New Revision: 4632 Added: contrib/1.1/libvorbis/pristine/ contrib/1.1/libvorbis/releases/1.0.1/ contrib/1.1/libvorbis/releases/1.0.1/1jh/ Modified: contrib/1.1/libvorbis/current/specs/libvorbis.spec contrib/1.1/libvorbis/releases/1.0.1/1jh/specs/libvorbis.spec Log: libvorbis: * integrate current (1.0.1-1jh) as releases/1.0.1/1jh Modified: contrib/1.1/libvorbis/current/specs/libvorbis.spec =================================================================== --- contrib/1.1/libvorbis/current/specs/libvorbis.spec 2004-09-13 11:40:52 UTC (rev 4631) +++ contrib/1.1/libvorbis/current/specs/libvorbis.spec 2004-09-13 11:41:00 UTC (rev 4632) @@ -79,6 +79,9 @@ %postun -p /sbin/ldconfig %changelog +* Mon Sep 13 2004 tsintegrate 1.0.1-1jh +- current (1.0.1-1jh) integrated as 1.0.1-1jh + * Thu Jul 15 2004 Tim Waugh 1:1.0.1-4 - Fixed warnings in shipped m4 file. Copied: contrib/1.1/libvorbis/releases/1.0.1/1jh (from rev 4556, contrib/1.1/libvorbis/current) Modified: contrib/1.1/libvorbis/releases/1.0.1/1jh/specs/libvorbis.spec =================================================================== --- contrib/1.1/libvorbis/current/specs/libvorbis.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/libvorbis/releases/1.0.1/1jh/specs/libvorbis.spec 2004-09-13 11:41:00 UTC (rev 4632) @@ -79,6 +79,9 @@ %postun -p /sbin/ldconfig %changelog +* Mon Sep 13 2004 tsintegrate 1.0.1-1jh +- current (1.0.1-1jh) integrated as 1.0.1-1jh + * Thu Jul 15 2004 Tim Waugh 1:1.0.1-4 - Fixed warnings in shipped m4 file. From svn at tinysofa.org Mon Sep 13 11:41:04 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:41:04 +1000 (EST) Subject: [tinysofa-svn] r4633 - contrib/1.1/libvorbis Message-ID: <20040913114104.EE37C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:41:04 +1000 (Mon, 13 Sep 2004) New Revision: 4633 Removed: contrib/1.1/libvorbis/pristine/ Log: libvorbis: * removing pristine (1.0.1-1jh) From svn at tinysofa.org Mon Sep 13 11:41:09 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:41:09 +1000 (EST) Subject: [tinysofa-svn] r4634 - contrib/1.1/libvorbis Message-ID: <20040913114109.62CC24E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:41:09 +1000 (Mon, 13 Sep 2004) New Revision: 4634 Added: contrib/1.1/libvorbis/pristine/ Log: libvorbis: * retarget pristine (1.0.1-1jh) to releases/1.0.1/1jh Copied: contrib/1.1/libvorbis/pristine (from rev 4632, contrib/1.1/libvorbis/releases/1.0.1/1jh) From svn at tinysofa.org Mon Sep 13 11:41:18 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:41:18 +1000 (EST) Subject: [tinysofa-svn] r4635 - in contrib/1.1/mach: . current/specs releases releases/0.4.6 releases/0.4.6/4jh/specs Message-ID: <20040913114118.88C754E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:41:18 +1000 (Mon, 13 Sep 2004) New Revision: 4635 Added: contrib/1.1/mach/pristine/ contrib/1.1/mach/releases/0.4.6/ contrib/1.1/mach/releases/0.4.6/4jh/ Modified: contrib/1.1/mach/current/specs/mach.spec contrib/1.1/mach/releases/0.4.6/4jh/specs/mach.spec Log: mach: * integrate current (0.4.6-4jh) as releases/0.4.6/4jh Modified: contrib/1.1/mach/current/specs/mach.spec =================================================================== --- contrib/1.1/mach/current/specs/mach.spec 2004-09-13 11:41:09 UTC (rev 4634) +++ contrib/1.1/mach/current/specs/mach.spec 2004-09-13 11:41:18 UTC (rev 4635) @@ -111,6 +111,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.4.6-4jh +- current (0.4.6-4jh) integrated as 0.4.6-4jh + * Fri Aug 20 2004 Jaakko Heinonen - update tinysofa-1.1 configuration Copied: contrib/1.1/mach/releases/0.4.6/4jh (from rev 4556, contrib/1.1/mach/current) Modified: contrib/1.1/mach/releases/0.4.6/4jh/specs/mach.spec =================================================================== --- contrib/1.1/mach/current/specs/mach.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/mach/releases/0.4.6/4jh/specs/mach.spec 2004-09-13 11:41:18 UTC (rev 4635) @@ -111,6 +111,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.4.6-4jh +- current (0.4.6-4jh) integrated as 0.4.6-4jh + * Fri Aug 20 2004 Jaakko Heinonen - update tinysofa-1.1 configuration From svn at tinysofa.org Mon Sep 13 11:41:22 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:41:22 +1000 (EST) Subject: [tinysofa-svn] r4636 - contrib/1.1/mach Message-ID: <20040913114122.E1EEC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:41:22 +1000 (Mon, 13 Sep 2004) New Revision: 4636 Removed: contrib/1.1/mach/pristine/ Log: mach: * removing pristine (0.4.6-4jh) From svn at tinysofa.org Mon Sep 13 11:41:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:41:27 +1000 (EST) Subject: [tinysofa-svn] r4637 - contrib/1.1/mach Message-ID: <20040913114127.B4CBC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:41:27 +1000 (Mon, 13 Sep 2004) New Revision: 4637 Added: contrib/1.1/mach/pristine/ Log: mach: * retarget pristine (0.4.6-4jh) to releases/0.4.6/4jh Copied: contrib/1.1/mach/pristine (from rev 4635, contrib/1.1/mach/releases/0.4.6/4jh) From svn at tinysofa.org Mon Sep 13 11:41:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:41:35 +1000 (EST) Subject: [tinysofa-svn] r4638 - in contrib/1.1/maildrop: . current/specs releases releases/1.7.0 releases/1.7.0/1gd/specs Message-ID: <20040913114135.2DE0C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:41:34 +1000 (Mon, 13 Sep 2004) New Revision: 4638 Added: contrib/1.1/maildrop/pristine/ contrib/1.1/maildrop/releases/1.7.0/ contrib/1.1/maildrop/releases/1.7.0/1gd/ Modified: contrib/1.1/maildrop/current/specs/maildrop.spec contrib/1.1/maildrop/releases/1.7.0/1gd/specs/maildrop.spec Log: maildrop: * integrate current (1.7.0-1gd) as releases/1.7.0/1gd Modified: contrib/1.1/maildrop/current/specs/maildrop.spec =================================================================== --- contrib/1.1/maildrop/current/specs/maildrop.spec 2004-09-13 11:41:27 UTC (rev 4637) +++ contrib/1.1/maildrop/current/specs/maildrop.spec 2004-09-13 11:41:34 UTC (rev 4638) @@ -98,6 +98,9 @@ %{_libdir}/* %changelog +* Mon Sep 13 2004 tsintegrate 1.7.0-1gd +- current (1.7.0-1gd) integrated as 1.7.0-1gd + * Tue Sep 7 2004 Gerald Dachs 1.7.0-1gd - New in tinysofa contrib Copied: contrib/1.1/maildrop/releases/1.7.0/1gd (from rev 4556, contrib/1.1/maildrop/current) Modified: contrib/1.1/maildrop/releases/1.7.0/1gd/specs/maildrop.spec =================================================================== --- contrib/1.1/maildrop/current/specs/maildrop.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/maildrop/releases/1.7.0/1gd/specs/maildrop.spec 2004-09-13 11:41:34 UTC (rev 4638) @@ -98,6 +98,9 @@ %{_libdir}/* %changelog +* Mon Sep 13 2004 tsintegrate 1.7.0-1gd +- current (1.7.0-1gd) integrated as 1.7.0-1gd + * Tue Sep 7 2004 Gerald Dachs 1.7.0-1gd - New in tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:41:39 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:41:39 +1000 (EST) Subject: [tinysofa-svn] r4639 - contrib/1.1/maildrop Message-ID: <20040913114139.051084E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:41:38 +1000 (Mon, 13 Sep 2004) New Revision: 4639 Removed: contrib/1.1/maildrop/pristine/ Log: maildrop: * removing pristine (1.7.0-1gd) From svn at tinysofa.org Mon Sep 13 11:41:43 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:41:43 +1000 (EST) Subject: [tinysofa-svn] r4640 - contrib/1.1/maildrop Message-ID: <20040913114143.B4ED94E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:41:43 +1000 (Mon, 13 Sep 2004) New Revision: 4640 Added: contrib/1.1/maildrop/pristine/ Log: maildrop: * retarget pristine (1.7.0-1gd) to releases/1.7.0/1gd Copied: contrib/1.1/maildrop/pristine (from rev 4638, contrib/1.1/maildrop/releases/1.7.0/1gd) From svn at tinysofa.org Mon Sep 13 11:41:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:41:50 +1000 (EST) Subject: [tinysofa-svn] r4641 - in contrib/1.1/masqmail: . current/specs releases releases/0.2.20 releases/0.2.20/1gd/specs Message-ID: <20040913114150.DFC434E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:41:50 +1000 (Mon, 13 Sep 2004) New Revision: 4641 Added: contrib/1.1/masqmail/pristine/ contrib/1.1/masqmail/releases/0.2.20/ contrib/1.1/masqmail/releases/0.2.20/1gd/ Modified: contrib/1.1/masqmail/current/specs/masqmail.spec contrib/1.1/masqmail/releases/0.2.20/1gd/specs/masqmail.spec Log: masqmail: * integrate current (0.2.20-1gd) as releases/0.2.20/1gd Modified: contrib/1.1/masqmail/current/specs/masqmail.spec =================================================================== --- contrib/1.1/masqmail/current/specs/masqmail.spec 2004-09-13 11:41:43 UTC (rev 4640) +++ contrib/1.1/masqmail/current/specs/masqmail.spec 2004-09-13 11:41:50 UTC (rev 4641) @@ -1,7 +1,7 @@ Summary: An offline mail server with pop3 client support Name: masqmail Version: 0.2.20 -Release: 1gd +Release: 1gd Copyright: GPL Group: contrib Source: %{name}-%{version}.tar.gz @@ -109,6 +109,9 @@ %dir /var/log/masqmail %changelog +* Mon Sep 13 2004 tsintegrate 0.2.20-1gd +- current (0.2.20-1gd) integrated as 0.2.20-1gd + * Sun Sep 5 2004 Gerald Dachs 0.2.20-1gd - New in tinysofa contrib Copied: contrib/1.1/masqmail/releases/0.2.20/1gd (from rev 4556, contrib/1.1/masqmail/current) Modified: contrib/1.1/masqmail/releases/0.2.20/1gd/specs/masqmail.spec =================================================================== --- contrib/1.1/masqmail/current/specs/masqmail.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/masqmail/releases/0.2.20/1gd/specs/masqmail.spec 2004-09-13 11:41:50 UTC (rev 4641) @@ -1,7 +1,7 @@ Summary: An offline mail server with pop3 client support Name: masqmail Version: 0.2.20 -Release: 1gd +Release: 1gd Copyright: GPL Group: contrib Source: %{name}-%{version}.tar.gz @@ -109,6 +109,9 @@ %dir /var/log/masqmail %changelog +* Mon Sep 13 2004 tsintegrate 0.2.20-1gd +- current (0.2.20-1gd) integrated as 0.2.20-1gd + * Sun Sep 5 2004 Gerald Dachs 0.2.20-1gd - New in tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:41:54 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:41:54 +1000 (EST) Subject: [tinysofa-svn] r4642 - contrib/1.1/masqmail Message-ID: <20040913114154.014A14E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:41:54 +1000 (Mon, 13 Sep 2004) New Revision: 4642 Removed: contrib/1.1/masqmail/pristine/ Log: masqmail: * removing pristine (0.2.20-1gd) From svn at tinysofa.org Mon Sep 13 11:41:59 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:41:59 +1000 (EST) Subject: [tinysofa-svn] r4643 - contrib/1.1/masqmail Message-ID: <20040913114159.AA9B34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:41:59 +1000 (Mon, 13 Sep 2004) New Revision: 4643 Added: contrib/1.1/masqmail/pristine/ Log: masqmail: * retarget pristine (0.2.20-1gd) to releases/0.2.20/1gd Copied: contrib/1.1/masqmail/pristine (from rev 4641, contrib/1.1/masqmail/releases/0.2.20/1gd) From svn at tinysofa.org Mon Sep 13 11:42:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:42:07 +1000 (EST) Subject: [tinysofa-svn] r4644 - in contrib/1.1/mod_auth_external: . current/specs releases releases/2.2.8 releases/2.2.8/2gd/specs Message-ID: <20040913114207.AA7204E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:42:07 +1000 (Mon, 13 Sep 2004) New Revision: 4644 Added: contrib/1.1/mod_auth_external/pristine/ contrib/1.1/mod_auth_external/releases/2.2.8/ contrib/1.1/mod_auth_external/releases/2.2.8/2gd/ Modified: contrib/1.1/mod_auth_external/current/specs/mod_auth_external.spec contrib/1.1/mod_auth_external/releases/2.2.8/2gd/specs/mod_auth_external.spec Log: mod_auth_external: * integrate current (2.2.8-2gd) as releases/2.2.8/2gd Modified: contrib/1.1/mod_auth_external/current/specs/mod_auth_external.spec =================================================================== --- contrib/1.1/mod_auth_external/current/specs/mod_auth_external.spec 2004-09-13 11:41:59 UTC (rev 4643) +++ contrib/1.1/mod_auth_external/current/specs/mod_auth_external.spec 2004-09-13 11:42:07 UTC (rev 4644) @@ -52,6 +52,9 @@ %attr(0644,root,root) %config(noreplace) /etc/pam.d/pwauth %changelog +* Mon Sep 13 2004 tsintegrate 2.2.8-2gd +- current (2.2.8-2gd) integrated as 2.2.8-2gd + * Fri Aug 20 2004 Gerald Dachs 2.2.8-2gd - fixed requirements Copied: contrib/1.1/mod_auth_external/releases/2.2.8/2gd (from rev 4556, contrib/1.1/mod_auth_external/current) Modified: contrib/1.1/mod_auth_external/releases/2.2.8/2gd/specs/mod_auth_external.spec =================================================================== --- contrib/1.1/mod_auth_external/current/specs/mod_auth_external.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/mod_auth_external/releases/2.2.8/2gd/specs/mod_auth_external.spec 2004-09-13 11:42:07 UTC (rev 4644) @@ -52,6 +52,9 @@ %attr(0644,root,root) %config(noreplace) /etc/pam.d/pwauth %changelog +* Mon Sep 13 2004 tsintegrate 2.2.8-2gd +- current (2.2.8-2gd) integrated as 2.2.8-2gd + * Fri Aug 20 2004 Gerald Dachs 2.2.8-2gd - fixed requirements From svn at tinysofa.org Mon Sep 13 11:43:15 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:43:15 +1000 (EST) Subject: [tinysofa-svn] r4656 - in contrib/1.1/perl-libwww-perl: . current/specs releases releases/5.800 releases/5.800/2gd/specs Message-ID: <20040913114315.A7C454E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:43:15 +1000 (Mon, 13 Sep 2004) New Revision: 4656 Added: contrib/1.1/perl-libwww-perl/pristine/ contrib/1.1/perl-libwww-perl/releases/5.800/ contrib/1.1/perl-libwww-perl/releases/5.800/2gd/ Modified: contrib/1.1/perl-libwww-perl/current/specs/perl-libwww-perl.spec contrib/1.1/perl-libwww-perl/releases/5.800/2gd/specs/perl-libwww-perl.spec Log: perl-libwww-perl: * integrate current (5.800-2gd) as releases/5.800/2gd Modified: contrib/1.1/perl-libwww-perl/current/specs/perl-libwww-perl.spec =================================================================== --- contrib/1.1/perl-libwww-perl/current/specs/perl-libwww-perl.spec 2004-09-13 11:43:07 UTC (rev 4655) +++ contrib/1.1/perl-libwww-perl/current/specs/perl-libwww-perl.spec 2004-09-13 11:43:15 UTC (rev 4656) @@ -60,6 +60,9 @@ %doc Changes MANIFEST README README.SSL %changelog +* Mon Sep 13 2004 tsintegrate 5.800-2gd +- current (5.800-2gd) integrated as 5.800-2gd + * Tue Jul 27 2004 Gerald Dachs 5.800-2gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-libwww-perl/releases/5.800/2gd (from rev 4556, contrib/1.1/perl-libwww-perl/current) Modified: contrib/1.1/perl-libwww-perl/releases/5.800/2gd/specs/perl-libwww-perl.spec =================================================================== --- contrib/1.1/perl-libwww-perl/current/specs/perl-libwww-perl.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/perl-libwww-perl/releases/5.800/2gd/specs/perl-libwww-perl.spec 2004-09-13 11:43:15 UTC (rev 4656) @@ -60,6 +60,9 @@ %doc Changes MANIFEST README README.SSL %changelog +* Mon Sep 13 2004 tsintegrate 5.800-2gd +- current (5.800-2gd) integrated as 5.800-2gd + * Tue Jul 27 2004 Gerald Dachs 5.800-2gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 11:43:19 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:43:19 +1000 (EST) Subject: [tinysofa-svn] r4657 - contrib/1.1/perl-libwww-perl Message-ID: <20040913114319.DAFEB4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:43:19 +1000 (Mon, 13 Sep 2004) New Revision: 4657 Removed: contrib/1.1/perl-libwww-perl/pristine/ Log: perl-libwww-perl: * removing pristine (5.800-2gd) From svn at tinysofa.org Mon Sep 13 11:43:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:43:24 +1000 (EST) Subject: [tinysofa-svn] r4658 - contrib/1.1/perl-libwww-perl Message-ID: <20040913114324.99C284E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:43:24 +1000 (Mon, 13 Sep 2004) New Revision: 4658 Added: contrib/1.1/perl-libwww-perl/pristine/ Log: perl-libwww-perl: * retarget pristine (5.800-2gd) to releases/5.800/2gd Copied: contrib/1.1/perl-libwww-perl/pristine (from rev 4656, contrib/1.1/perl-libwww-perl/releases/5.800/2gd) From svn at tinysofa.org Mon Sep 13 11:43:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:43:32 +1000 (EST) Subject: [tinysofa-svn] r4659 - in contrib/1.1/perl-net-cidr: . current/specs releases releases/0.09 releases/0.09/3gd/specs Message-ID: <20040913114332.58FCF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:43:32 +1000 (Mon, 13 Sep 2004) New Revision: 4659 Added: contrib/1.1/perl-net-cidr/pristine/ contrib/1.1/perl-net-cidr/releases/0.09/ contrib/1.1/perl-net-cidr/releases/0.09/3gd/ Modified: contrib/1.1/perl-net-cidr/current/specs/perl-net-cidr.spec contrib/1.1/perl-net-cidr/releases/0.09/3gd/specs/perl-net-cidr.spec Log: perl-net-cidr: * integrate current (0.09-3gd) as releases/0.09/3gd Modified: contrib/1.1/perl-net-cidr/current/specs/perl-net-cidr.spec =================================================================== --- contrib/1.1/perl-net-cidr/current/specs/perl-net-cidr.spec 2004-09-13 11:43:24 UTC (rev 4658) +++ contrib/1.1/perl-net-cidr/current/specs/perl-net-cidr.spec 2004-09-13 11:43:32 UTC (rev 4659) @@ -46,6 +46,9 @@ %doc Changes README %changelog +* Mon Sep 13 2004 tsintegrate 0.09-3gd +- current (0.09-3gd) integrated as 0.09-3gd + * Tue Jul 27 2004 Gerald Dachs 0.09-3gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-net-cidr/releases/0.09/3gd (from rev 4556, contrib/1.1/perl-net-cidr/current) Modified: contrib/1.1/perl-net-cidr/releases/0.09/3gd/specs/perl-net-cidr.spec =================================================================== --- contrib/1.1/perl-net-cidr/current/specs/perl-net-cidr.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/perl-net-cidr/releases/0.09/3gd/specs/perl-net-cidr.spec 2004-09-13 11:43:32 UTC (rev 4659) @@ -46,6 +46,9 @@ %doc Changes README %changelog +* Mon Sep 13 2004 tsintegrate 0.09-3gd +- current (0.09-3gd) integrated as 0.09-3gd + * Tue Jul 27 2004 Gerald Dachs 0.09-3gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 11:43:36 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:43:36 +1000 (EST) Subject: [tinysofa-svn] r4660 - contrib/1.1/perl-net-cidr Message-ID: <20040913114336.D4F474E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:43:36 +1000 (Mon, 13 Sep 2004) New Revision: 4660 Removed: contrib/1.1/perl-net-cidr/pristine/ Log: perl-net-cidr: * removing pristine (0.09-3gd) From svn at tinysofa.org Mon Sep 13 11:43:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:43:41 +1000 (EST) Subject: [tinysofa-svn] r4661 - contrib/1.1/perl-net-cidr Message-ID: <20040913114341.82B924E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:43:41 +1000 (Mon, 13 Sep 2004) New Revision: 4661 Added: contrib/1.1/perl-net-cidr/pristine/ Log: perl-net-cidr: * retarget pristine (0.09-3gd) to releases/0.09/3gd Copied: contrib/1.1/perl-net-cidr/pristine (from rev 4659, contrib/1.1/perl-net-cidr/releases/0.09/3gd) From svn at tinysofa.org Mon Sep 13 11:43:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:43:49 +1000 (EST) Subject: [tinysofa-svn] r4662 - in contrib/1.1/perl-test-manifest: . current/specs releases releases/0.93 releases/0.93/1gd/specs Message-ID: <20040913114349.7CF6C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:43:49 +1000 (Mon, 13 Sep 2004) New Revision: 4662 Added: contrib/1.1/perl-test-manifest/pristine/ contrib/1.1/perl-test-manifest/releases/0.93/ contrib/1.1/perl-test-manifest/releases/0.93/1gd/ Modified: contrib/1.1/perl-test-manifest/current/specs/perl-test-manifest.spec contrib/1.1/perl-test-manifest/releases/0.93/1gd/specs/perl-test-manifest.spec Log: perl-test-manifest: * integrate current (0.93-1gd) as releases/0.93/1gd Modified: contrib/1.1/perl-test-manifest/current/specs/perl-test-manifest.spec =================================================================== --- contrib/1.1/perl-test-manifest/current/specs/perl-test-manifest.spec 2004-09-13 11:43:41 UTC (rev 4661) +++ contrib/1.1/perl-test-manifest/current/specs/perl-test-manifest.spec 2004-09-13 11:43:49 UTC (rev 4662) @@ -47,6 +47,9 @@ %doc Changes %changelog +* Mon Sep 13 2004 tsintegrate 0.93-1gd +- current (0.93-1gd) integrated as 0.93-1gd + * Tue Jul 27 2004 Gerald Dachs 0.93-1gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-test-manifest/releases/0.93/1gd (from rev 4556, contrib/1.1/perl-test-manifest/current) Modified: contrib/1.1/perl-test-manifest/releases/0.93/1gd/specs/perl-test-manifest.spec =================================================================== --- contrib/1.1/perl-test-manifest/current/specs/perl-test-manifest.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/perl-test-manifest/releases/0.93/1gd/specs/perl-test-manifest.spec 2004-09-13 11:43:49 UTC (rev 4662) @@ -47,6 +47,9 @@ %doc Changes %changelog +* Mon Sep 13 2004 tsintegrate 0.93-1gd +- current (0.93-1gd) integrated as 0.93-1gd + * Tue Jul 27 2004 Gerald Dachs 0.93-1gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 11:43:53 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:43:53 +1000 (EST) Subject: [tinysofa-svn] r4663 - contrib/1.1/perl-test-manifest Message-ID: <20040913114353.EC8224E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:43:53 +1000 (Mon, 13 Sep 2004) New Revision: 4663 Removed: contrib/1.1/perl-test-manifest/pristine/ Log: perl-test-manifest: * removing pristine (0.93-1gd) From svn at tinysofa.org Mon Sep 13 11:43:58 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:43:58 +1000 (EST) Subject: [tinysofa-svn] r4664 - contrib/1.1/perl-test-manifest Message-ID: <20040913114358.8B9D84E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:43:58 +1000 (Mon, 13 Sep 2004) New Revision: 4664 Added: contrib/1.1/perl-test-manifest/pristine/ Log: perl-test-manifest: * retarget pristine (0.93-1gd) to releases/0.93/1gd Copied: contrib/1.1/perl-test-manifest/pristine (from rev 4662, contrib/1.1/perl-test-manifest/releases/0.93/1gd) From svn at tinysofa.org Mon Sep 13 11:44:06 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:44:06 +1000 (EST) Subject: [tinysofa-svn] r4665 - in contrib/1.1/perl-timedate: . current/specs releases releases/1.16 releases/1.16/2gd/specs Message-ID: <20040913114406.6C31C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:44:06 +1000 (Mon, 13 Sep 2004) New Revision: 4665 Added: contrib/1.1/perl-timedate/pristine/ contrib/1.1/perl-timedate/releases/1.16/ contrib/1.1/perl-timedate/releases/1.16/2gd/ Modified: contrib/1.1/perl-timedate/current/specs/perl-timedate.spec contrib/1.1/perl-timedate/releases/1.16/2gd/specs/perl-timedate.spec Log: perl-timedate: * integrate current (1.16-2gd) as releases/1.16/2gd Modified: contrib/1.1/perl-timedate/current/specs/perl-timedate.spec =================================================================== --- contrib/1.1/perl-timedate/current/specs/perl-timedate.spec 2004-09-13 11:43:58 UTC (rev 4664) +++ contrib/1.1/perl-timedate/current/specs/perl-timedate.spec 2004-09-13 11:44:06 UTC (rev 4665) @@ -46,6 +46,9 @@ %doc ChangeLog MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 1.16-2gd +- current (1.16-2gd) integrated as 1.16-2gd + * Tue Jul 27 2004 Gerald Dachs 1.16-2gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-timedate/releases/1.16/2gd (from rev 4556, contrib/1.1/perl-timedate/current) Modified: contrib/1.1/perl-timedate/releases/1.16/2gd/specs/perl-timedate.spec =================================================================== --- contrib/1.1/perl-timedate/current/specs/perl-timedate.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/perl-timedate/releases/1.16/2gd/specs/perl-timedate.spec 2004-09-13 11:44:06 UTC (rev 4665) @@ -46,6 +46,9 @@ %doc ChangeLog MANIFEST README %changelog +* Mon Sep 13 2004 tsintegrate 1.16-2gd +- current (1.16-2gd) integrated as 1.16-2gd + * Tue Jul 27 2004 Gerald Dachs 1.16-2gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 11:44:10 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:44:10 +1000 (EST) Subject: [tinysofa-svn] r4666 - contrib/1.1/perl-timedate Message-ID: <20040913114410.E7E674E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:44:10 +1000 (Mon, 13 Sep 2004) New Revision: 4666 Removed: contrib/1.1/perl-timedate/pristine/ Log: perl-timedate: * removing pristine (1.16-2gd) From svn at tinysofa.org Mon Sep 13 11:44:15 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:44:15 +1000 (EST) Subject: [tinysofa-svn] r4667 - contrib/1.1/perl-timedate Message-ID: <20040913114415.910B44E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:44:15 +1000 (Mon, 13 Sep 2004) New Revision: 4667 Added: contrib/1.1/perl-timedate/pristine/ Log: perl-timedate: * retarget pristine (1.16-2gd) to releases/1.16/2gd Copied: contrib/1.1/perl-timedate/pristine (from rev 4665, contrib/1.1/perl-timedate/releases/1.16/2gd) From svn at tinysofa.org Mon Sep 13 11:44:23 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:44:23 +1000 (EST) Subject: [tinysofa-svn] r4668 - in contrib/1.1/python-openssl: . current/specs releases releases/0.5.1 releases/0.5.1/3th/specs Message-ID: <20040913114423.8B8A74E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:44:23 +1000 (Mon, 13 Sep 2004) New Revision: 4668 Added: contrib/1.1/python-openssl/pristine/ contrib/1.1/python-openssl/releases/0.5.1/ contrib/1.1/python-openssl/releases/0.5.1/3th/ Modified: contrib/1.1/python-openssl/current/specs/python-openssl.spec contrib/1.1/python-openssl/releases/0.5.1/3th/specs/python-openssl.spec Log: python-openssl: * integrate current (0.5.1-3th) as releases/0.5.1/3th Modified: contrib/1.1/python-openssl/current/specs/python-openssl.spec =================================================================== --- contrib/1.1/python-openssl/current/specs/python-openssl.spec 2004-09-13 11:44:15 UTC (rev 4667) +++ contrib/1.1/python-openssl/current/specs/python-openssl.spec 2004-09-13 11:44:23 UTC (rev 4668) @@ -47,6 +47,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.5.1-3th +- current (0.5.1-3th) integrated as 0.5.1-3th + * Fri Jul 16 2004 Goetz Bock 0.5.1-3th - more cleanups Copied: contrib/1.1/python-openssl/releases/0.5.1/3th (from rev 4556, contrib/1.1/python-openssl/current) Modified: contrib/1.1/python-openssl/releases/0.5.1/3th/specs/python-openssl.spec =================================================================== --- contrib/1.1/python-openssl/current/specs/python-openssl.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/python-openssl/releases/0.5.1/3th/specs/python-openssl.spec 2004-09-13 11:44:23 UTC (rev 4668) @@ -47,6 +47,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.5.1-3th +- current (0.5.1-3th) integrated as 0.5.1-3th + * Fri Jul 16 2004 Goetz Bock 0.5.1-3th - more cleanups From svn at tinysofa.org Mon Sep 13 11:44:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:44:27 +1000 (EST) Subject: [tinysofa-svn] r4669 - contrib/1.1/python-openssl Message-ID: <20040913114427.E956A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:44:27 +1000 (Mon, 13 Sep 2004) New Revision: 4669 Removed: contrib/1.1/python-openssl/pristine/ Log: python-openssl: * removing pristine (0.5.1-3th) From svn at tinysofa.org Mon Sep 13 11:40:47 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:40:47 +1000 (EST) Subject: [tinysofa-svn] r4630 - contrib/1.1/libungif Message-ID: <20040913114047.E581F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:40:47 +1000 (Mon, 13 Sep 2004) New Revision: 4630 Removed: contrib/1.1/libungif/pristine/ Log: libungif: * removing pristine (4.1.0-1gd) From svn at tinysofa.org Mon Sep 13 11:42:11 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:42:11 +1000 (EST) Subject: [tinysofa-svn] r4645 - contrib/1.1/mod_auth_external Message-ID: <20040913114211.D44794E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:42:11 +1000 (Mon, 13 Sep 2004) New Revision: 4645 Removed: contrib/1.1/mod_auth_external/pristine/ Log: mod_auth_external: * removing pristine (2.2.8-2gd) From svn at tinysofa.org Mon Sep 13 11:42:16 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:42:16 +1000 (EST) Subject: [tinysofa-svn] r4646 - contrib/1.1/mod_auth_external Message-ID: <20040913114216.8AC084E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:42:16 +1000 (Mon, 13 Sep 2004) New Revision: 4646 Added: contrib/1.1/mod_auth_external/pristine/ Log: mod_auth_external: * retarget pristine (2.2.8-2gd) to releases/2.2.8/2gd Copied: contrib/1.1/mod_auth_external/pristine (from rev 4644, contrib/1.1/mod_auth_external/releases/2.2.8/2gd) From svn at tinysofa.org Mon Sep 13 11:42:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:42:24 +1000 (EST) Subject: [tinysofa-svn] r4647 - in contrib/1.1/pam_sqlite: . current/specs releases releases/0.3 releases/0.3/2gd/specs Message-ID: <20040913114224.BE9644E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:42:24 +1000 (Mon, 13 Sep 2004) New Revision: 4647 Added: contrib/1.1/pam_sqlite/pristine/ contrib/1.1/pam_sqlite/releases/0.3/ contrib/1.1/pam_sqlite/releases/0.3/2gd/ Modified: contrib/1.1/pam_sqlite/current/specs/pam_sqlite.spec contrib/1.1/pam_sqlite/releases/0.3/2gd/specs/pam_sqlite.spec Log: pam_sqlite: * integrate current (0.3-2gd) as releases/0.3/2gd Modified: contrib/1.1/pam_sqlite/current/specs/pam_sqlite.spec =================================================================== --- contrib/1.1/pam_sqlite/current/specs/pam_sqlite.spec 2004-09-13 11:42:16 UTC (rev 4646) +++ contrib/1.1/pam_sqlite/current/specs/pam_sqlite.spec 2004-09-13 11:42:24 UTC (rev 4647) @@ -36,6 +36,9 @@ /lib/security/pam_sqlite.so %changelog +* Mon Sep 13 2004 tsintegrate 0.3-2gd +- current (0.3-2gd) integrated as 0.3-2gd + * Sat Aug 21 2004 Gerald Dachs 0.3-2gd - fixed build requirements - don't use makeinstall anymore Copied: contrib/1.1/pam_sqlite/releases/0.3/2gd (from rev 4556, contrib/1.1/pam_sqlite/current) Modified: contrib/1.1/pam_sqlite/releases/0.3/2gd/specs/pam_sqlite.spec =================================================================== --- contrib/1.1/pam_sqlite/current/specs/pam_sqlite.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/pam_sqlite/releases/0.3/2gd/specs/pam_sqlite.spec 2004-09-13 11:42:24 UTC (rev 4647) @@ -36,6 +36,9 @@ /lib/security/pam_sqlite.so %changelog +* Mon Sep 13 2004 tsintegrate 0.3-2gd +- current (0.3-2gd) integrated as 0.3-2gd + * Sat Aug 21 2004 Gerald Dachs 0.3-2gd - fixed build requirements - don't use makeinstall anymore From svn at tinysofa.org Mon Sep 13 11:42:33 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:42:33 +1000 (EST) Subject: [tinysofa-svn] r4649 - contrib/1.1/pam_sqlite Message-ID: <20040913114233.8C7354E873C@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:42:33 +1000 (Mon, 13 Sep 2004) New Revision: 4649 Added: contrib/1.1/pam_sqlite/pristine/ Log: pam_sqlite: * retarget pristine (0.3-2gd) to releases/0.3/2gd Copied: contrib/1.1/pam_sqlite/pristine (from rev 4647, contrib/1.1/pam_sqlite/releases/0.3/2gd) From svn at tinysofa.org Mon Sep 13 11:42:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:42:28 +1000 (EST) Subject: [tinysofa-svn] r4648 - contrib/1.1/pam_sqlite Message-ID: <20040913114228.E941E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:42:28 +1000 (Mon, 13 Sep 2004) New Revision: 4648 Removed: contrib/1.1/pam_sqlite/pristine/ Log: pam_sqlite: * removing pristine (0.3-2gd) From svn at tinysofa.org Mon Sep 13 11:44:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:44:32 +1000 (EST) Subject: [tinysofa-svn] r4670 - contrib/1.1/python-openssl Message-ID: <20040913114432.74E164E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:44:32 +1000 (Mon, 13 Sep 2004) New Revision: 4670 Added: contrib/1.1/python-openssl/pristine/ Log: python-openssl: * retarget pristine (0.5.1-3th) to releases/0.5.1/3th Copied: contrib/1.1/python-openssl/pristine (from rev 4668, contrib/1.1/python-openssl/releases/0.5.1/3th) From svn at tinysofa.org Mon Sep 13 11:45:36 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:45:36 +1000 (EST) Subject: [tinysofa-svn] r4681 - contrib/1.1/tnef Message-ID: <20040913114536.CE2FC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:45:36 +1000 (Mon, 13 Sep 2004) New Revision: 4681 Removed: contrib/1.1/tnef/pristine/ Log: tnef: * removing pristine (1.2.3.1-2gd) From svn at tinysofa.org Mon Sep 13 11:45:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:45:41 +1000 (EST) Subject: [tinysofa-svn] r4682 - contrib/1.1/tnef Message-ID: <20040913114541.9901C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:45:41 +1000 (Mon, 13 Sep 2004) New Revision: 4682 Added: contrib/1.1/tnef/pristine/ Log: tnef: * retarget pristine (1.2.3.1-2gd) to releases/1.2.3.1/2gd Copied: contrib/1.1/tnef/pristine (from rev 4680, contrib/1.1/tnef/releases/1.2.3.1/2gd) From svn at tinysofa.org Mon Sep 13 11:45:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:45:49 +1000 (EST) Subject: [tinysofa-svn] r4683 - in contrib/1.1/xawtv: . current/specs releases releases/3.94 releases/3.94/1jh/specs Message-ID: <20040913114549.297904E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:45:48 +1000 (Mon, 13 Sep 2004) New Revision: 4683 Added: contrib/1.1/xawtv/pristine/ contrib/1.1/xawtv/releases/3.94/ contrib/1.1/xawtv/releases/3.94/1jh/ Modified: contrib/1.1/xawtv/current/specs/xawtv.spec contrib/1.1/xawtv/releases/3.94/1jh/specs/xawtv.spec Log: xawtv: * integrate current (3.94-1jh) as releases/3.94/1jh Modified: contrib/1.1/xawtv/current/specs/xawtv.spec =================================================================== --- contrib/1.1/xawtv/current/specs/xawtv.spec 2004-09-13 11:45:41 UTC (rev 4682) +++ contrib/1.1/xawtv/current/specs/xawtv.spec 2004-09-13 11:45:48 UTC (rev 4683) @@ -156,6 +156,9 @@ %{_datadir}/fonts/tv-fonts %changelog +* Mon Sep 13 2004 tsintegrate 3.94-1jh +- current (3.94-1jh) integrated as 3.94-1jh + * Tue Oct 21 2003 Florian La Roche - add BuildReq for fontconfig-devel and freetype-devel, these seem to get picked up Copied: contrib/1.1/xawtv/releases/3.94/1jh (from rev 4556, contrib/1.1/xawtv/current) Modified: contrib/1.1/xawtv/releases/3.94/1jh/specs/xawtv.spec =================================================================== --- contrib/1.1/xawtv/current/specs/xawtv.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/xawtv/releases/3.94/1jh/specs/xawtv.spec 2004-09-13 11:45:48 UTC (rev 4683) @@ -156,6 +156,9 @@ %{_datadir}/fonts/tv-fonts %changelog +* Mon Sep 13 2004 tsintegrate 3.94-1jh +- current (3.94-1jh) integrated as 3.94-1jh + * Tue Oct 21 2003 Florian La Roche - add BuildReq for fontconfig-devel and freetype-devel, these seem to get picked up From svn at tinysofa.org Mon Sep 13 11:45:52 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:45:52 +1000 (EST) Subject: [tinysofa-svn] r4684 - contrib/1.1/xawtv Message-ID: <20040913114552.E41374E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:45:52 +1000 (Mon, 13 Sep 2004) New Revision: 4684 Removed: contrib/1.1/xawtv/pristine/ Log: xawtv: * removing pristine (3.94-1jh) From svn at tinysofa.org Mon Sep 13 11:45:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:45:57 +1000 (EST) Subject: [tinysofa-svn] r4685 - contrib/1.1/xawtv Message-ID: <20040913114557.915E84E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:45:57 +1000 (Mon, 13 Sep 2004) New Revision: 4685 Added: contrib/1.1/xawtv/pristine/ Log: xawtv: * retarget pristine (3.94-1jh) to releases/3.94/1jh Copied: contrib/1.1/xawtv/pristine (from rev 4683, contrib/1.1/xawtv/releases/3.94/1jh) From svn at tinysofa.org Mon Sep 13 11:46:05 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:46:05 +1000 (EST) Subject: [tinysofa-svn] r4686 - in contrib/1.1/xinitrc: . current/specs releases releases/4.0.1 releases/4.0.1/3jh/specs Message-ID: <20040913114605.A7FB44E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:46:05 +1000 (Mon, 13 Sep 2004) New Revision: 4686 Added: contrib/1.1/xinitrc/pristine/ contrib/1.1/xinitrc/releases/4.0.1/ contrib/1.1/xinitrc/releases/4.0.1/3jh/ Modified: contrib/1.1/xinitrc/current/specs/xinitrc.spec contrib/1.1/xinitrc/releases/4.0.1/3jh/specs/xinitrc.spec Log: xinitrc: * integrate current (4.0.1-3jh) as releases/4.0.1/3jh Modified: contrib/1.1/xinitrc/current/specs/xinitrc.spec =================================================================== --- contrib/1.1/xinitrc/current/specs/xinitrc.spec 2004-09-13 11:45:57 UTC (rev 4685) +++ contrib/1.1/xinitrc/current/specs/xinitrc.spec 2004-09-13 11:46:05 UTC (rev 4686) @@ -62,6 +62,9 @@ /usr/X11R6/bin/RunWM %changelog +* Mon Sep 13 2004 tsintegrate 4.0.1-3jh +- current (4.0.1-3jh) integrated as 4.0.1-3jh + * Sun Sep 12 2004 Jaakko Heinonen 4.0.1-3jh - add support for icewm Copied: contrib/1.1/xinitrc/releases/4.0.1/3jh (from rev 4556, contrib/1.1/xinitrc/current) Modified: contrib/1.1/xinitrc/releases/4.0.1/3jh/specs/xinitrc.spec =================================================================== --- contrib/1.1/xinitrc/current/specs/xinitrc.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/xinitrc/releases/4.0.1/3jh/specs/xinitrc.spec 2004-09-13 11:46:05 UTC (rev 4686) @@ -62,6 +62,9 @@ /usr/X11R6/bin/RunWM %changelog +* Mon Sep 13 2004 tsintegrate 4.0.1-3jh +- current (4.0.1-3jh) integrated as 4.0.1-3jh + * Sun Sep 12 2004 Jaakko Heinonen 4.0.1-3jh - add support for icewm From svn at tinysofa.org Mon Sep 13 11:42:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:42:41 +1000 (EST) Subject: [tinysofa-svn] r4650 - in contrib/1.1/perl-business-isbn: . current/specs releases releases/1.72 releases/1.72/2gd/specs Message-ID: <20040913114241.A45EF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:42:41 +1000 (Mon, 13 Sep 2004) New Revision: 4650 Added: contrib/1.1/perl-business-isbn/pristine/ contrib/1.1/perl-business-isbn/releases/1.72/ contrib/1.1/perl-business-isbn/releases/1.72/2gd/ Modified: contrib/1.1/perl-business-isbn/current/specs/perl-business-isbn.spec contrib/1.1/perl-business-isbn/releases/1.72/2gd/specs/perl-business-isbn.spec Log: perl-business-isbn: * integrate current (1.72-2gd) as releases/1.72/2gd Modified: contrib/1.1/perl-business-isbn/current/specs/perl-business-isbn.spec =================================================================== --- contrib/1.1/perl-business-isbn/current/specs/perl-business-isbn.spec 2004-09-13 11:42:33 UTC (rev 4649) +++ contrib/1.1/perl-business-isbn/current/specs/perl-business-isbn.spec 2004-09-13 11:42:41 UTC (rev 4650) @@ -47,6 +47,9 @@ %doc Changes isbns.txt MANIFEST %changelog +* Mon Sep 13 2004 tsintegrate 1.72-2gd +- current (1.72-2gd) integrated as 1.72-2gd + * Tue Jul 27 2004 Gerald Dachs 1.72-2gd - autogenerated by cpan2rpm Copied: contrib/1.1/perl-business-isbn/releases/1.72/2gd (from rev 4556, contrib/1.1/perl-business-isbn/current) Modified: contrib/1.1/perl-business-isbn/releases/1.72/2gd/specs/perl-business-isbn.spec =================================================================== --- contrib/1.1/perl-business-isbn/current/specs/perl-business-isbn.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/perl-business-isbn/releases/1.72/2gd/specs/perl-business-isbn.spec 2004-09-13 11:42:41 UTC (rev 4650) @@ -47,6 +47,9 @@ %doc Changes isbns.txt MANIFEST %changelog +* Mon Sep 13 2004 tsintegrate 1.72-2gd +- current (1.72-2gd) integrated as 1.72-2gd + * Tue Jul 27 2004 Gerald Dachs 1.72-2gd - autogenerated by cpan2rpm From svn at tinysofa.org Mon Sep 13 11:42:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:42:50 +1000 (EST) Subject: [tinysofa-svn] r4652 - contrib/1.1/perl-business-isbn Message-ID: <20040913114250.934234E873C@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:42:50 +1000 (Mon, 13 Sep 2004) New Revision: 4652 Added: contrib/1.1/perl-business-isbn/pristine/ Log: perl-business-isbn: * retarget pristine (1.72-2gd) to releases/1.72/2gd Copied: contrib/1.1/perl-business-isbn/pristine (from rev 4650, contrib/1.1/perl-business-isbn/releases/1.72/2gd) From svn at tinysofa.org Mon Sep 13 11:42:45 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:42:45 +1000 (EST) Subject: [tinysofa-svn] r4651 - contrib/1.1/perl-business-isbn Message-ID: <20040913114245.EA77E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:42:45 +1000 (Mon, 13 Sep 2004) New Revision: 4651 Removed: contrib/1.1/perl-business-isbn/pristine/ Log: perl-business-isbn: * removing pristine (1.72-2gd) From svn at tinysofa.org Mon Sep 13 11:42:58 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:42:58 +1000 (EST) Subject: [tinysofa-svn] r4653 - in contrib/1.1/perl-digest-sha1: . current/specs releases releases/2.10 releases/2.10/1gd/specs Message-ID: <20040913114258.B17284E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:42:58 +1000 (Mon, 13 Sep 2004) New Revision: 4653 Added: contrib/1.1/perl-digest-sha1/pristine/ contrib/1.1/perl-digest-sha1/releases/2.10/ contrib/1.1/perl-digest-sha1/releases/2.10/1gd/ Modified: contrib/1.1/perl-digest-sha1/current/specs/perl-digest-sha1.spec contrib/1.1/perl-digest-sha1/releases/2.10/1gd/specs/perl-digest-sha1.spec Log: perl-digest-sha1: * integrate current (2.10-1gd) as releases/2.10/1gd Modified: contrib/1.1/perl-digest-sha1/current/specs/perl-digest-sha1.spec =================================================================== --- contrib/1.1/perl-digest-sha1/current/specs/perl-digest-sha1.spec 2004-09-13 11:42:50 UTC (rev 4652) +++ contrib/1.1/perl-digest-sha1/current/specs/perl-digest-sha1.spec 2004-09-13 11:42:58 UTC (rev 4653) @@ -47,6 +47,9 @@ %doc Changes README fip180-1.html MANIFEST %changelog +* Mon Sep 13 2004 tsintegrate 2.10-1gd +- current (2.10-1gd) integrated as 2.10-1gd + * Sun Aug 1 2004 Gerald Dachs 2.10-1gd - new rpm Copied: contrib/1.1/perl-digest-sha1/releases/2.10/1gd (from rev 4556, contrib/1.1/perl-digest-sha1/current) Modified: contrib/1.1/perl-digest-sha1/releases/2.10/1gd/specs/perl-digest-sha1.spec =================================================================== --- contrib/1.1/perl-digest-sha1/current/specs/perl-digest-sha1.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/perl-digest-sha1/releases/2.10/1gd/specs/perl-digest-sha1.spec 2004-09-13 11:42:58 UTC (rev 4653) @@ -47,6 +47,9 @@ %doc Changes README fip180-1.html MANIFEST %changelog +* Mon Sep 13 2004 tsintegrate 2.10-1gd +- current (2.10-1gd) integrated as 2.10-1gd + * Sun Aug 1 2004 Gerald Dachs 2.10-1gd - new rpm From svn at tinysofa.org Mon Sep 13 11:43:02 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:43:02 +1000 (EST) Subject: [tinysofa-svn] r4654 - contrib/1.1/perl-digest-sha1 Message-ID: <20040913114302.ECB2D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:43:02 +1000 (Mon, 13 Sep 2004) New Revision: 4654 Removed: contrib/1.1/perl-digest-sha1/pristine/ Log: perl-digest-sha1: * removing pristine (2.10-1gd) From svn at tinysofa.org Mon Sep 13 11:43:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:43:07 +1000 (EST) Subject: [tinysofa-svn] r4655 - contrib/1.1/perl-digest-sha1 Message-ID: <20040913114307.798594E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:43:07 +1000 (Mon, 13 Sep 2004) New Revision: 4655 Added: contrib/1.1/perl-digest-sha1/pristine/ Log: perl-digest-sha1: * retarget pristine (2.10-1gd) to releases/2.10/1gd Copied: contrib/1.1/perl-digest-sha1/pristine (from rev 4653, contrib/1.1/perl-digest-sha1/releases/2.10/1gd) From svn at tinysofa.org Mon Sep 13 11:44:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:44:41 +1000 (EST) Subject: [tinysofa-svn] r4671 - in contrib/1.1/sitecopy: . current/specs releases releases/0.13.4 releases/0.13.4/1jh/specs Message-ID: <20040913114441.08C4D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:44:40 +1000 (Mon, 13 Sep 2004) New Revision: 4671 Added: contrib/1.1/sitecopy/pristine/ contrib/1.1/sitecopy/releases/0.13.4/ contrib/1.1/sitecopy/releases/0.13.4/1jh/ Modified: contrib/1.1/sitecopy/current/specs/sitecopy.spec contrib/1.1/sitecopy/releases/0.13.4/1jh/specs/sitecopy.spec Log: sitecopy: * integrate current (0.13.4-1jh) as releases/0.13.4/1jh Modified: contrib/1.1/sitecopy/current/specs/sitecopy.spec =================================================================== --- contrib/1.1/sitecopy/current/specs/sitecopy.spec 2004-09-13 11:44:32 UTC (rev 4670) +++ contrib/1.1/sitecopy/current/specs/sitecopy.spec 2004-09-13 11:44:40 UTC (rev 4671) @@ -53,6 +53,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.13.4-1jh +- current (0.13.4-1jh) integrated as 0.13.4-1jh + * Wed Aug 25 2004 Jaakko Heinonen - tinysofa Copied: contrib/1.1/sitecopy/releases/0.13.4/1jh (from rev 4556, contrib/1.1/sitecopy/current) Modified: contrib/1.1/sitecopy/releases/0.13.4/1jh/specs/sitecopy.spec =================================================================== --- contrib/1.1/sitecopy/current/specs/sitecopy.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/sitecopy/releases/0.13.4/1jh/specs/sitecopy.spec 2004-09-13 11:44:40 UTC (rev 4671) @@ -53,6 +53,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.13.4-1jh +- current (0.13.4-1jh) integrated as 0.13.4-1jh + * Wed Aug 25 2004 Jaakko Heinonen - tinysofa From svn at tinysofa.org Mon Sep 13 11:44:44 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:44:44 +1000 (EST) Subject: [tinysofa-svn] r4672 - contrib/1.1/sitecopy Message-ID: <20040913114444.E970F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:44:44 +1000 (Mon, 13 Sep 2004) New Revision: 4672 Removed: contrib/1.1/sitecopy/pristine/ Log: sitecopy: * removing pristine (0.13.4-1jh) From svn at tinysofa.org Mon Sep 13 11:44:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:44:49 +1000 (EST) Subject: [tinysofa-svn] r4673 - contrib/1.1/sitecopy Message-ID: <20040913114449.946ED4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:44:49 +1000 (Mon, 13 Sep 2004) New Revision: 4673 Added: contrib/1.1/sitecopy/pristine/ Log: sitecopy: * retarget pristine (0.13.4-1jh) to releases/0.13.4/1jh Copied: contrib/1.1/sitecopy/pristine (from rev 4671, contrib/1.1/sitecopy/releases/0.13.4/1jh) From svn at tinysofa.org Mon Sep 13 11:44:59 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:44:59 +1000 (EST) Subject: [tinysofa-svn] r4674 - in contrib/1.1/socat: . current/specs Message-ID: <20040913114459.06BCC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:44:58 +1000 (Mon, 13 Sep 2004) New Revision: 4674 Added: contrib/1.1/socat/pristine/ Modified: contrib/1.1/socat/current/specs/socat.spec Log: socat: * integrate current (1.3.2.2-1bg) as releases/1.3.2.2/1bg Modified: contrib/1.1/socat/current/specs/socat.spec =================================================================== --- contrib/1.1/socat/current/specs/socat.spec 2004-09-13 11:44:49 UTC (rev 4673) +++ contrib/1.1/socat/current/specs/socat.spec 2004-09-13 11:44:58 UTC (rev 4674) @@ -51,6 +51,9 @@ * Mon Sep 13 2004 tsintegrate 1.3.2.2-1bg - current (1.3.2.2-1bg) integrated as 1.3.2.2-1bg +* Mon Sep 13 2004 tsintegrate 1.3.2.2-1bg +- current (1.3.2.2-1bg) integrated as 1.3.2.2-1bg + * Mon Jun 21 2004 Goetz Bock 1.3.2.2-1bg - build for tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:45:02 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:45:02 +1000 (EST) Subject: [tinysofa-svn] r4675 - contrib/1.1/socat Message-ID: <20040913114502.ED7EB4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:45:02 +1000 (Mon, 13 Sep 2004) New Revision: 4675 Removed: contrib/1.1/socat/pristine/ Log: socat: * removing pristine (1.3.2.2-1bg) From svn at tinysofa.org Mon Sep 13 11:45:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:45:08 +1000 (EST) Subject: [tinysofa-svn] r4676 - contrib/1.1/socat Message-ID: <20040913114508.2F65C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:45:08 +1000 (Mon, 13 Sep 2004) New Revision: 4676 Added: contrib/1.1/socat/pristine/ Log: socat: * retarget pristine (1.3.2.2-1bg) to releases/1.3.2.2/1bg Copied: contrib/1.1/socat/pristine (from rev 4556, contrib/1.1/socat/releases/1.3.2.2/1bg) From svn at tinysofa.org Mon Sep 13 11:45:15 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:45:15 +1000 (EST) Subject: [tinysofa-svn] r4677 - in contrib/1.1/sylpheed: . current/specs releases releases/0.9.12 releases/0.9.12/1gd/specs Message-ID: <20040913114515.7DEA34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:45:15 +1000 (Mon, 13 Sep 2004) New Revision: 4677 Added: contrib/1.1/sylpheed/pristine/ contrib/1.1/sylpheed/releases/0.9.12/ contrib/1.1/sylpheed/releases/0.9.12/1gd/ Modified: contrib/1.1/sylpheed/current/specs/sylpheed.spec contrib/1.1/sylpheed/releases/0.9.12/1gd/specs/sylpheed.spec Log: sylpheed: * integrate current (0.9.12-1gd) as releases/0.9.12/1gd Modified: contrib/1.1/sylpheed/current/specs/sylpheed.spec =================================================================== --- contrib/1.1/sylpheed/current/specs/sylpheed.spec 2004-09-13 11:45:08 UTC (rev 4676) +++ contrib/1.1/sylpheed/current/specs/sylpheed.spec 2004-09-13 11:45:15 UTC (rev 4677) @@ -57,8 +57,14 @@ %{_datadir}/pixmaps/*.png %changelog +* Mon Sep 13 2004 tsintegrate 0.9.12-1gd +- current (0.9.12-1gd) integrated as 0.9.12-1gd + * Fri Aug 1 2003 Hiroyuki Yamamoto -- omitted %changelog +%changelog +* Mon Sep 13 2004 tsintegrate 0.9.12-1gd +- current (0.9.12-1gd) integrated as 0.9.12-1gd + - modified %description * Thu Jul 31 2003 Andre Costa Copied: contrib/1.1/sylpheed/releases/0.9.12/1gd (from rev 4556, contrib/1.1/sylpheed/current) Modified: contrib/1.1/sylpheed/releases/0.9.12/1gd/specs/sylpheed.spec =================================================================== --- contrib/1.1/sylpheed/current/specs/sylpheed.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/sylpheed/releases/0.9.12/1gd/specs/sylpheed.spec 2004-09-13 11:45:15 UTC (rev 4677) @@ -57,8 +57,14 @@ %{_datadir}/pixmaps/*.png %changelog +* Mon Sep 13 2004 tsintegrate 0.9.12-1gd +- current (0.9.12-1gd) integrated as 0.9.12-1gd + * Fri Aug 1 2003 Hiroyuki Yamamoto -- omitted %changelog +%changelog +* Mon Sep 13 2004 tsintegrate 0.9.12-1gd +- current (0.9.12-1gd) integrated as 0.9.12-1gd + - modified %description * Thu Jul 31 2003 Andre Costa From svn at tinysofa.org Mon Sep 13 11:45:20 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:45:20 +1000 (EST) Subject: [tinysofa-svn] r4678 - contrib/1.1/sylpheed Message-ID: <20040913114520.0E05B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:45:19 +1000 (Mon, 13 Sep 2004) New Revision: 4678 Removed: contrib/1.1/sylpheed/pristine/ Log: sylpheed: * removing pristine (0.9.12-1gd) From svn at tinysofa.org Mon Sep 13 11:45:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:45:24 +1000 (EST) Subject: [tinysofa-svn] r4679 - contrib/1.1/sylpheed Message-ID: <20040913114524.9D0BA4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:45:24 +1000 (Mon, 13 Sep 2004) New Revision: 4679 Added: contrib/1.1/sylpheed/pristine/ Log: sylpheed: * retarget pristine (0.9.12-1gd) to releases/0.9.12/1gd Copied: contrib/1.1/sylpheed/pristine (from rev 4677, contrib/1.1/sylpheed/releases/0.9.12/1gd) From svn at tinysofa.org Mon Sep 13 11:45:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:45:32 +1000 (EST) Subject: [tinysofa-svn] r4680 - in contrib/1.1/tnef: . current/specs releases releases/1.2.3.1 releases/1.2.3.1/2gd/specs Message-ID: <20040913114532.964104E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:45:32 +1000 (Mon, 13 Sep 2004) New Revision: 4680 Added: contrib/1.1/tnef/pristine/ contrib/1.1/tnef/releases/1.2.3.1/ contrib/1.1/tnef/releases/1.2.3.1/2gd/ Modified: contrib/1.1/tnef/current/specs/tnef.spec contrib/1.1/tnef/releases/1.2.3.1/2gd/specs/tnef.spec Log: tnef: * integrate current (1.2.3.1-2gd) as releases/1.2.3.1/2gd Modified: contrib/1.1/tnef/current/specs/tnef.spec =================================================================== --- contrib/1.1/tnef/current/specs/tnef.spec 2004-09-13 11:45:24 UTC (rev 4679) +++ contrib/1.1/tnef/current/specs/tnef.spec 2004-09-13 11:45:32 UTC (rev 4680) @@ -40,7 +40,10 @@ %attr(0755, root, root) %{_bindir}/tnef %{_mandir}/man1/tnef.1* -%changelog +%changelog +* Mon Sep 13 2004 tsintegrate 1.2.3.1-2gd +- current (1.2.3.1-2gd) integrated as 1.2.3.1-2gd + * Tue Jul 20 2004 Gerald Dachs 1.2.3.1-2gd - rebuild for tinysofa Copied: contrib/1.1/tnef/releases/1.2.3.1/2gd (from rev 4556, contrib/1.1/tnef/current) Modified: contrib/1.1/tnef/releases/1.2.3.1/2gd/specs/tnef.spec =================================================================== --- contrib/1.1/tnef/current/specs/tnef.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/tnef/releases/1.2.3.1/2gd/specs/tnef.spec 2004-09-13 11:45:32 UTC (rev 4680) @@ -40,7 +40,10 @@ %attr(0755, root, root) %{_bindir}/tnef %{_mandir}/man1/tnef.1* -%changelog +%changelog +* Mon Sep 13 2004 tsintegrate 1.2.3.1-2gd +- current (1.2.3.1-2gd) integrated as 1.2.3.1-2gd + * Tue Jul 20 2004 Gerald Dachs 1.2.3.1-2gd - rebuild for tinysofa From svn at tinysofa.org Mon Sep 13 11:46:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:46:12 +1000 (EST) Subject: [tinysofa-svn] r4687 - contrib/1.1/xinitrc Message-ID: <20040913114612.6F4804E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:46:12 +1000 (Mon, 13 Sep 2004) New Revision: 4687 Removed: contrib/1.1/xinitrc/pristine/ Log: xinitrc: * removing pristine (4.0.1-3jh) From svn at tinysofa.org Mon Sep 13 11:46:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:46:27 +1000 (EST) Subject: [tinysofa-svn] r4688 - contrib/1.1/xinitrc Message-ID: <20040913114627.A31DA4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:46:27 +1000 (Mon, 13 Sep 2004) New Revision: 4688 Added: contrib/1.1/xinitrc/pristine/ Log: xinitrc: * retarget pristine (4.0.1-3jh) to releases/4.0.1/3jh Copied: contrib/1.1/xinitrc/pristine (from rev 4686, contrib/1.1/xinitrc/releases/4.0.1/3jh) From svn at tinysofa.org Mon Sep 13 11:46:51 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:46:51 +1000 (EST) Subject: [tinysofa-svn] r4689 - in contrib/1.1/xmms: . current/specs releases releases/1.2.10 releases/1.2.10/1jh/specs Message-ID: <20040913114651.8D88F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:46:51 +1000 (Mon, 13 Sep 2004) New Revision: 4689 Added: contrib/1.1/xmms/pristine/ contrib/1.1/xmms/releases/1.2.10/ contrib/1.1/xmms/releases/1.2.10/1jh/ Modified: contrib/1.1/xmms/current/specs/xmms.spec contrib/1.1/xmms/releases/1.2.10/1jh/specs/xmms.spec Log: xmms: * integrate current (1.2.10-1jh) as releases/1.2.10/1jh Modified: contrib/1.1/xmms/current/specs/xmms.spec =================================================================== --- contrib/1.1/xmms/current/specs/xmms.spec 2004-09-13 11:46:27 UTC (rev 4688) +++ contrib/1.1/xmms/current/specs/xmms.spec 2004-09-13 11:46:51 UTC (rev 4689) @@ -194,6 +194,9 @@ %{_datadir}/xmms/Skins %changelog +* Mon Sep 13 2004 tsintegrate 1.2.10-1jh +- current (1.2.10-1jh) integrated as 1.2.10-1jh + * Sun Aug 15 2004 Tim Waugh 1:1.2.10-6 - Fixed another underquoted m4 definition. Copied: contrib/1.1/xmms/releases/1.2.10/1jh (from rev 4556, contrib/1.1/xmms/current) Modified: contrib/1.1/xmms/releases/1.2.10/1jh/specs/xmms.spec =================================================================== --- contrib/1.1/xmms/current/specs/xmms.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/xmms/releases/1.2.10/1jh/specs/xmms.spec 2004-09-13 11:46:51 UTC (rev 4689) @@ -194,6 +194,9 @@ %{_datadir}/xmms/Skins %changelog +* Mon Sep 13 2004 tsintegrate 1.2.10-1jh +- current (1.2.10-1jh) integrated as 1.2.10-1jh + * Sun Aug 15 2004 Tim Waugh 1:1.2.10-6 - Fixed another underquoted m4 definition. From svn at tinysofa.org Mon Sep 13 11:46:55 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:46:55 +1000 (EST) Subject: [tinysofa-svn] r4690 - contrib/1.1/xmms Message-ID: <20040913114655.F02F24E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:46:55 +1000 (Mon, 13 Sep 2004) New Revision: 4690 Removed: contrib/1.1/xmms/pristine/ Log: xmms: * removing pristine (1.2.10-1jh) From svn at tinysofa.org Mon Sep 13 11:47:00 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:47:00 +1000 (EST) Subject: [tinysofa-svn] r4691 - contrib/1.1/xmms Message-ID: <20040913114700.C29274E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:47:00 +1000 (Mon, 13 Sep 2004) New Revision: 4691 Added: contrib/1.1/xmms/pristine/ Log: xmms: * retarget pristine (1.2.10-1jh) to releases/1.2.10/1jh Copied: contrib/1.1/xmms/pristine (from rev 4689, contrib/1.1/xmms/releases/1.2.10/1jh) From svn at tinysofa.org Mon Sep 13 11:47:09 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:47:09 +1000 (EST) Subject: [tinysofa-svn] r4692 - in contrib/1.1/xterm: . current/specs releases releases/192 releases/192/2jh/specs Message-ID: <20040913114709.CEF054E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:47:09 +1000 (Mon, 13 Sep 2004) New Revision: 4692 Added: contrib/1.1/xterm/pristine/ contrib/1.1/xterm/releases/192/ contrib/1.1/xterm/releases/192/2jh/ Modified: contrib/1.1/xterm/current/specs/xterm.spec contrib/1.1/xterm/releases/192/2jh/specs/xterm.spec Log: xterm: * integrate current (192-2jh) as releases/192/2jh Modified: contrib/1.1/xterm/current/specs/xterm.spec =================================================================== --- contrib/1.1/xterm/current/specs/xterm.spec 2004-09-13 11:47:00 UTC (rev 4691) +++ contrib/1.1/xterm/current/specs/xterm.spec 2004-09-13 11:47:09 UTC (rev 4692) @@ -73,6 +73,9 @@ %{_x11bindir}/xterm %changelog +* Mon Sep 13 2004 tsintegrate 192-2jh +- current (192-2jh) integrated as 192-2jh + * Thu Sep 9 2004 Jaakko Heinonen 192-2jh - enable anti-aliasing Copied: contrib/1.1/xterm/releases/192/2jh (from rev 4556, contrib/1.1/xterm/current) Modified: contrib/1.1/xterm/releases/192/2jh/specs/xterm.spec =================================================================== --- contrib/1.1/xterm/current/specs/xterm.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/xterm/releases/192/2jh/specs/xterm.spec 2004-09-13 11:47:09 UTC (rev 4692) @@ -73,6 +73,9 @@ %{_x11bindir}/xterm %changelog +* Mon Sep 13 2004 tsintegrate 192-2jh +- current (192-2jh) integrated as 192-2jh + * Thu Sep 9 2004 Jaakko Heinonen 192-2jh - enable anti-aliasing From svn at tinysofa.org Mon Sep 13 11:47:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:47:13 +1000 (EST) Subject: [tinysofa-svn] r4693 - contrib/1.1/xterm Message-ID: <20040913114713.DE2254E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:47:13 +1000 (Mon, 13 Sep 2004) New Revision: 4693 Removed: contrib/1.1/xterm/pristine/ Log: xterm: * removing pristine (192-2jh) From svn at tinysofa.org Mon Sep 13 11:47:18 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:47:18 +1000 (EST) Subject: [tinysofa-svn] r4694 - contrib/1.1/xterm Message-ID: <20040913114718.83A044E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:47:18 +1000 (Mon, 13 Sep 2004) New Revision: 4694 Added: contrib/1.1/xterm/pristine/ Log: xterm: * retarget pristine (192-2jh) to releases/192/2jh Copied: contrib/1.1/xterm/pristine (from rev 4692, contrib/1.1/xterm/releases/192/2jh) From svn at tinysofa.org Mon Sep 13 11:47:26 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:47:26 +1000 (EST) Subject: [tinysofa-svn] r4695 - contrib/1.1/socat/current/specs Message-ID: <20040913114726.337F34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:47:26 +1000 (Mon, 13 Sep 2004) New Revision: 4695 Modified: contrib/1.1/socat/current/specs/socat.spec Log: socat: * integrate current (1.3.2.2-1bg) as releases/1.3.2.2/1bg Modified: contrib/1.1/socat/current/specs/socat.spec =================================================================== --- contrib/1.1/socat/current/specs/socat.spec 2004-09-13 11:47:18 UTC (rev 4694) +++ contrib/1.1/socat/current/specs/socat.spec 2004-09-13 11:47:26 UTC (rev 4695) @@ -54,6 +54,9 @@ * Mon Sep 13 2004 tsintegrate 1.3.2.2-1bg - current (1.3.2.2-1bg) integrated as 1.3.2.2-1bg +* Mon Sep 13 2004 tsintegrate 1.3.2.2-1bg +- current (1.3.2.2-1bg) integrated as 1.3.2.2-1bg + * Mon Jun 21 2004 Goetz Bock 1.3.2.2-1bg - build for tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:47:29 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:47:29 +1000 (EST) Subject: [tinysofa-svn] r4696 - contrib/1.1/socat Message-ID: <20040913114729.E2C414E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:47:29 +1000 (Mon, 13 Sep 2004) New Revision: 4696 Removed: contrib/1.1/socat/pristine/ Log: socat: * removing pristine (1.3.2.2-1bg) From svn at tinysofa.org Mon Sep 13 11:47:34 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:47:34 +1000 (EST) Subject: [tinysofa-svn] r4697 - contrib/1.1/socat Message-ID: <20040913114734.6C5B64E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:47:34 +1000 (Mon, 13 Sep 2004) New Revision: 4697 Added: contrib/1.1/socat/pristine/ Log: socat: * retarget pristine (1.3.2.2-1bg) to releases/1.3.2.2/1bg Copied: contrib/1.1/socat/pristine (from rev 4556, contrib/1.1/socat/releases/1.3.2.2/1bg) From svn at tinysofa.org Mon Sep 13 11:47:45 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:47:45 +1000 (EST) Subject: [tinysofa-svn] r4698 - in contrib/1.1/spamassassin: current/specs releases/2.63 releases/2.63/18gd/specs Message-ID: <20040913114745.D41814E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:47:45 +1000 (Mon, 13 Sep 2004) New Revision: 4698 Added: contrib/1.1/spamassassin/releases/2.63/18gd/ Modified: contrib/1.1/spamassassin/current/specs/spamassassin.spec contrib/1.1/spamassassin/releases/2.63/18gd/specs/spamassassin.spec Log: spamassassin: * integrate current (2.63-18gd) as releases/2.63/18gd Modified: contrib/1.1/spamassassin/current/specs/spamassassin.spec =================================================================== --- contrib/1.1/spamassassin/current/specs/spamassassin.spec 2004-09-13 11:47:34 UTC (rev 4697) +++ contrib/1.1/spamassassin/current/specs/spamassassin.spec 2004-09-13 11:47:45 UTC (rev 4698) @@ -4,7 +4,7 @@ Name: spamassassin Group: contrib Version: 2.63 -Release: 18gd +Release: 18gd License: Artistic Source: http:/spamassassin.org/released/%{real_name}-%{version}.tar.gz Source1: spamassassin.initd @@ -129,6 +129,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 2.63-18gd +- current (2.63-18gd) integrated as 2.63-18gd + * Mon Aug 2 2004 Gerald Dachs 2.63-18gd - initdir -> initrddir - gets now installed to perl_vendorlib Copied: contrib/1.1/spamassassin/releases/2.63/18gd (from rev 4556, contrib/1.1/spamassassin/current) Modified: contrib/1.1/spamassassin/releases/2.63/18gd/specs/spamassassin.spec =================================================================== --- contrib/1.1/spamassassin/current/specs/spamassassin.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/spamassassin/releases/2.63/18gd/specs/spamassassin.spec 2004-09-13 11:47:45 UTC (rev 4698) @@ -4,7 +4,7 @@ Name: spamassassin Group: contrib Version: 2.63 -Release: 18gd +Release: 18gd License: Artistic Source: http:/spamassassin.org/released/%{real_name}-%{version}.tar.gz Source1: spamassassin.initd @@ -129,6 +129,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 2.63-18gd +- current (2.63-18gd) integrated as 2.63-18gd + * Mon Aug 2 2004 Gerald Dachs 2.63-18gd - initdir -> initrddir - gets now installed to perl_vendorlib From svn at tinysofa.org Mon Sep 13 11:47:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:47:50 +1000 (EST) Subject: [tinysofa-svn] r4699 - contrib/1.1/spamassassin Message-ID: <20040913114750.1346B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:47:49 +1000 (Mon, 13 Sep 2004) New Revision: 4699 Removed: contrib/1.1/spamassassin/pristine/ Log: spamassassin: * removing pristine (2.63-18gd) From svn at tinysofa.org Mon Sep 13 11:47:55 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:47:55 +1000 (EST) Subject: [tinysofa-svn] r4700 - contrib/1.1/spamassassin Message-ID: <20040913114755.CA4CC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:47:55 +1000 (Mon, 13 Sep 2004) New Revision: 4700 Added: contrib/1.1/spamassassin/pristine/ Log: spamassassin: * retarget pristine (2.63-18gd) to releases/2.63/18gd Copied: contrib/1.1/spamassassin/pristine (from rev 4698, contrib/1.1/spamassassin/releases/2.63/18gd) From svn at tinysofa.org Mon Sep 13 11:48:04 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:48:04 +1000 (EST) Subject: [tinysofa-svn] r4701 - in contrib/1.1/sqlite: current/specs releases releases/2.8.15 releases/2.8.15/2gd/specs Message-ID: <20040913114804.09C6E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:48:03 +1000 (Mon, 13 Sep 2004) New Revision: 4701 Added: contrib/1.1/sqlite/releases/2.8.15/ contrib/1.1/sqlite/releases/2.8.15/2gd/ Modified: contrib/1.1/sqlite/current/specs/sqlite.spec contrib/1.1/sqlite/releases/2.8.15/2gd/specs/sqlite.spec Log: sqlite: * integrate current (2.8.15-2gd) as releases/2.8.15/2gd Modified: contrib/1.1/sqlite/current/specs/sqlite.spec =================================================================== --- contrib/1.1/sqlite/current/specs/sqlite.spec 2004-09-13 11:47:55 UTC (rev 4700) +++ contrib/1.1/sqlite/current/specs/sqlite.spec 2004-09-13 11:48:03 UTC (rev 4701) @@ -60,6 +60,9 @@ %doc README doc/* %changelog +* Mon Sep 13 2004 tsintegrate 2.8.15-2gd +- current (2.8.15-2gd) integrated as 2.8.15-2gd + * Thu Aug 12 2004 Gerald Dachs 2.8.15-2gd - fixed files section - spec file fixes Copied: contrib/1.1/sqlite/releases/2.8.15/2gd (from rev 4556, contrib/1.1/sqlite/current) Modified: contrib/1.1/sqlite/releases/2.8.15/2gd/specs/sqlite.spec =================================================================== --- contrib/1.1/sqlite/current/specs/sqlite.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/sqlite/releases/2.8.15/2gd/specs/sqlite.spec 2004-09-13 11:48:03 UTC (rev 4701) @@ -60,6 +60,9 @@ %doc README doc/* %changelog +* Mon Sep 13 2004 tsintegrate 2.8.15-2gd +- current (2.8.15-2gd) integrated as 2.8.15-2gd + * Thu Aug 12 2004 Gerald Dachs 2.8.15-2gd - fixed files section - spec file fixes From svn at tinysofa.org Mon Sep 13 11:48:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:48:08 +1000 (EST) Subject: [tinysofa-svn] r4702 - contrib/1.1/sqlite Message-ID: <20040913114808.330074E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:48:08 +1000 (Mon, 13 Sep 2004) New Revision: 4702 Removed: contrib/1.1/sqlite/pristine/ Log: sqlite: * removing pristine (2.8.15-2gd) From svn at tinysofa.org Mon Sep 13 11:48:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:48:13 +1000 (EST) Subject: [tinysofa-svn] r4703 - contrib/1.1/sqlite Message-ID: <20040913114813.9F95D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:48:13 +1000 (Mon, 13 Sep 2004) New Revision: 4703 Added: contrib/1.1/sqlite/pristine/ Log: sqlite: * retarget pristine (2.8.15-2gd) to releases/2.8.15/2gd Copied: contrib/1.1/sqlite/pristine (from rev 4701, contrib/1.1/sqlite/releases/2.8.15/2gd) From svn at tinysofa.org Mon Sep 13 11:48:25 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:48:25 +1000 (EST) Subject: [tinysofa-svn] r4704 - in contrib/1.1/star: current/specs releases/1.5a40/1jh releases/1.5a40/1jh/current/specs Message-ID: <20040913114825.60A8F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:48:25 +1000 (Mon, 13 Sep 2004) New Revision: 4704 Added: contrib/1.1/star/releases/1.5a40/1jh/current/ Modified: contrib/1.1/star/current/specs/star.spec contrib/1.1/star/releases/1.5a40/1jh/current/specs/star.spec Log: star: * integrate current (1.5a40-1jh) as releases/1.5a40/1jh Modified: contrib/1.1/star/current/specs/star.spec =================================================================== --- contrib/1.1/star/current/specs/star.spec 2004-09-13 11:48:13 UTC (rev 4703) +++ contrib/1.1/star/current/specs/star.spec 2004-09-13 11:48:25 UTC (rev 4704) @@ -4,7 +4,7 @@ Summary: An archiving tool with ACL support Name: star Version: 1.5a40 -Release: 1jh +Release: 1jh URL: http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/star.html Source: ftp://ftp.fokus.gmd.de/pub/unix/star/alpha/%{name}-%{version}.tar.bz2 Patch: star-1.5-icantusethestandardwayandmademyownmake.patch @@ -93,6 +93,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.5a40-1jh +- current (1.5a40-1jh) integrated as 1.5a40-1jh + * Sun May 02 2004 Jaakko Heinonen 1.5a40-1jh - 1.5a40 - remove more unpackaged files Copied: contrib/1.1/star/releases/1.5a40/1jh/current (from rev 4556, contrib/1.1/star/current) Modified: contrib/1.1/star/releases/1.5a40/1jh/current/specs/star.spec =================================================================== --- contrib/1.1/star/current/specs/star.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/star/releases/1.5a40/1jh/current/specs/star.spec 2004-09-13 11:48:25 UTC (rev 4704) @@ -4,7 +4,7 @@ Summary: An archiving tool with ACL support Name: star Version: 1.5a40 -Release: 1jh +Release: 1jh URL: http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/star.html Source: ftp://ftp.fokus.gmd.de/pub/unix/star/alpha/%{name}-%{version}.tar.bz2 Patch: star-1.5-icantusethestandardwayandmademyownmake.patch @@ -93,6 +93,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.5a40-1jh +- current (1.5a40-1jh) integrated as 1.5a40-1jh + * Sun May 02 2004 Jaakko Heinonen 1.5a40-1jh - 1.5a40 - remove more unpackaged files From svn at tinysofa.org Mon Sep 13 11:48:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:48:30 +1000 (EST) Subject: [tinysofa-svn] r4705 - contrib/1.1/star Message-ID: <20040913114830.137CF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:48:29 +1000 (Mon, 13 Sep 2004) New Revision: 4705 Removed: contrib/1.1/star/pristine/ Log: star: * removing pristine (1.5a40-1jh) From svn at tinysofa.org Mon Sep 13 11:48:36 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:48:36 +1000 (EST) Subject: [tinysofa-svn] r4706 - in contrib/1.1/star: . pristine Message-ID: <20040913114836.5571D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:48:36 +1000 (Mon, 13 Sep 2004) New Revision: 4706 Added: contrib/1.1/star/pristine/ contrib/1.1/star/pristine/current/ Log: star: * retarget pristine (1.5a40-1jh) to releases/1.5a40/1jh Copied: contrib/1.1/star/pristine (from rev 4556, contrib/1.1/star/releases/1.5a40/1jh) Copied: contrib/1.1/star/pristine/current (from rev 4704, contrib/1.1/star/releases/1.5a40/1jh/current) From svn at tinysofa.org Mon Sep 13 11:48:48 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:48:48 +1000 (EST) Subject: [tinysofa-svn] r4707 - in contrib/1.1/subversion: current/specs releases/1.0.5 releases/1.0.5/2jh/specs Message-ID: <20040913114848.C97144E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:48:48 +1000 (Mon, 13 Sep 2004) New Revision: 4707 Added: contrib/1.1/subversion/releases/1.0.5/2jh/ Modified: contrib/1.1/subversion/current/specs/subversion.spec contrib/1.1/subversion/releases/1.0.5/2jh/specs/subversion.spec Log: subversion: * integrate current (1.0.5-2jh) as releases/1.0.5/2jh Modified: contrib/1.1/subversion/current/specs/subversion.spec =================================================================== --- contrib/1.1/subversion/current/specs/subversion.spec 2004-09-13 11:48:36 UTC (rev 4706) +++ contrib/1.1/subversion/current/specs/subversion.spec 2004-09-13 11:48:48 UTC (rev 4707) @@ -475,6 +475,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.0.5-2jh +- current (1.0.5-2jh) integrated as 1.0.5-2jh + * Tue Jun 22 2004 tscontrib 1.0.5-1ok - current (1.0.5-1ok) integrated as 1.0.5-1ok for release 1.0 contrib Copied: contrib/1.1/subversion/releases/1.0.5/2jh (from rev 4556, contrib/1.1/subversion/current) Modified: contrib/1.1/subversion/releases/1.0.5/2jh/specs/subversion.spec =================================================================== --- contrib/1.1/subversion/current/specs/subversion.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/subversion/releases/1.0.5/2jh/specs/subversion.spec 2004-09-13 11:48:48 UTC (rev 4707) @@ -475,6 +475,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.0.5-2jh +- current (1.0.5-2jh) integrated as 1.0.5-2jh + * Tue Jun 22 2004 tscontrib 1.0.5-1ok - current (1.0.5-1ok) integrated as 1.0.5-1ok for release 1.0 contrib From svn at tinysofa.org Mon Sep 13 11:48:52 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:48:52 +1000 (EST) Subject: [tinysofa-svn] r4708 - contrib/1.1/subversion Message-ID: <20040913114852.E76424E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:48:52 +1000 (Mon, 13 Sep 2004) New Revision: 4708 Removed: contrib/1.1/subversion/pristine/ Log: subversion: * removing pristine (1.0.5-2jh) From svn at tinysofa.org Mon Sep 13 11:48:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:48:57 +1000 (EST) Subject: [tinysofa-svn] r4709 - contrib/1.1/subversion Message-ID: <20040913114857.A59544E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:48:57 +1000 (Mon, 13 Sep 2004) New Revision: 4709 Added: contrib/1.1/subversion/pristine/ Log: subversion: * retarget pristine (1.0.5-2jh) to releases/1.0.5/2jh Copied: contrib/1.1/subversion/pristine (from rev 4707, contrib/1.1/subversion/releases/1.0.5/2jh) From svn at tinysofa.org Mon Sep 13 11:49:09 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:49:09 +1000 (EST) Subject: [tinysofa-svn] r4710 - in contrib/1.1/swig: current/specs releases/1.3.21 releases/1.3.21/5jh/specs Message-ID: <20040913114909.6D9FC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:49:09 +1000 (Mon, 13 Sep 2004) New Revision: 4710 Added: contrib/1.1/swig/releases/1.3.21/5jh/ Modified: contrib/1.1/swig/current/specs/swig.spec contrib/1.1/swig/releases/1.3.21/5jh/specs/swig.spec Log: swig: * integrate current (1.3.21-5jh) as releases/1.3.21/5jh Modified: contrib/1.1/swig/current/specs/swig.spec =================================================================== --- contrib/1.1/swig/current/specs/swig.spec 2004-09-13 11:48:57 UTC (rev 4709) +++ contrib/1.1/swig/current/specs/swig.spec 2004-09-13 11:49:09 UTC (rev 4710) @@ -243,6 +243,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.3.21-5jh +- current (1.3.21-5jh) integrated as 1.3.21-5jh + * Tue Aug 17 2004 Jaakko Heinonen 1.3.21-5jh - add destdir patch to install swig.m4 correctly Copied: contrib/1.1/swig/releases/1.3.21/5jh (from rev 4556, contrib/1.1/swig/current) Modified: contrib/1.1/swig/releases/1.3.21/5jh/specs/swig.spec =================================================================== --- contrib/1.1/swig/current/specs/swig.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/swig/releases/1.3.21/5jh/specs/swig.spec 2004-09-13 11:49:09 UTC (rev 4710) @@ -243,6 +243,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 1.3.21-5jh +- current (1.3.21-5jh) integrated as 1.3.21-5jh + * Tue Aug 17 2004 Jaakko Heinonen 1.3.21-5jh - add destdir patch to install swig.m4 correctly From svn at tinysofa.org Mon Sep 13 11:49:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:49:13 +1000 (EST) Subject: [tinysofa-svn] r4711 - contrib/1.1/swig Message-ID: <20040913114913.EE4F64E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:49:13 +1000 (Mon, 13 Sep 2004) New Revision: 4711 Removed: contrib/1.1/swig/pristine/ Log: swig: * removing pristine (1.3.21-5jh) From svn at tinysofa.org Mon Sep 13 11:51:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:51:27 +1000 (EST) Subject: [tinysofa-svn] r4728 - in contrib/1.1/unarj: current/specs releases/2.65/1ok releases/2.65/1ok/current/specs Message-ID: <20040913115127.EDD474E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:51:27 +1000 (Mon, 13 Sep 2004) New Revision: 4728 Added: contrib/1.1/unarj/releases/2.65/1ok/current/ Modified: contrib/1.1/unarj/current/specs/unarj.spec contrib/1.1/unarj/releases/2.65/1ok/current/specs/unarj.spec Log: unarj: * integrate current (2.65-1ok) as releases/2.65/1ok Modified: contrib/1.1/unarj/current/specs/unarj.spec =================================================================== --- contrib/1.1/unarj/current/specs/unarj.spec 2004-09-13 11:51:15 UTC (rev 4727) +++ contrib/1.1/unarj/current/specs/unarj.spec 2004-09-13 11:51:27 UTC (rev 4728) @@ -38,6 +38,9 @@ %{_bindir}/unarj %changelog +* Mon Sep 13 2004 tsintegrate 2.65-1ok +- current (2.65-1ok) integrated as 2.65-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa Copied: contrib/1.1/unarj/releases/2.65/1ok/current (from rev 4556, contrib/1.1/unarj/current) Modified: contrib/1.1/unarj/releases/2.65/1ok/current/specs/unarj.spec =================================================================== --- contrib/1.1/unarj/current/specs/unarj.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/unarj/releases/2.65/1ok/current/specs/unarj.spec 2004-09-13 11:51:27 UTC (rev 4728) @@ -38,6 +38,9 @@ %{_bindir}/unarj %changelog +* Mon Sep 13 2004 tsintegrate 2.65-1ok +- current (2.65-1ok) integrated as 2.65-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa From svn at tinysofa.org Mon Sep 13 11:51:31 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:51:31 +1000 (EST) Subject: [tinysofa-svn] r4729 - contrib/1.1/unarj Message-ID: <20040913115131.D42744E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:51:31 +1000 (Mon, 13 Sep 2004) New Revision: 4729 Removed: contrib/1.1/unarj/pristine/ Log: unarj: * removing pristine (2.65-1ok) From svn at tinysofa.org Mon Sep 13 11:51:38 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:51:38 +1000 (EST) Subject: [tinysofa-svn] r4730 - in contrib/1.1/unarj: . pristine Message-ID: <20040913115138.9A73F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:51:38 +1000 (Mon, 13 Sep 2004) New Revision: 4730 Added: contrib/1.1/unarj/pristine/ contrib/1.1/unarj/pristine/current/ Log: unarj: * retarget pristine (2.65-1ok) to releases/2.65/1ok Copied: contrib/1.1/unarj/pristine (from rev 4556, contrib/1.1/unarj/releases/2.65/1ok) Copied: contrib/1.1/unarj/pristine/current (from rev 4728, contrib/1.1/unarj/releases/2.65/1ok/current) From svn at tinysofa.org Mon Sep 13 11:51:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:51:49 +1000 (EST) Subject: [tinysofa-svn] r4731 - in contrib/1.1/unrar: current/specs releases/3.3.6 releases/3.3.6/2gd/specs Message-ID: <20040913115149.5011C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:51:49 +1000 (Mon, 13 Sep 2004) New Revision: 4731 Added: contrib/1.1/unrar/releases/3.3.6/2gd/ Modified: contrib/1.1/unrar/current/specs/unrar.spec contrib/1.1/unrar/releases/3.3.6/2gd/specs/unrar.spec Log: unrar: * integrate current (3.3.6-2gd) as releases/3.3.6/2gd Modified: contrib/1.1/unrar/current/specs/unrar.spec =================================================================== --- contrib/1.1/unrar/current/specs/unrar.spec 2004-09-13 11:51:38 UTC (rev 4730) +++ contrib/1.1/unrar/current/specs/unrar.spec 2004-09-13 11:51:49 UTC (rev 4731) @@ -40,6 +40,9 @@ %{_mandir}/man1/%{name}.1* %changelog +* Mon Sep 13 2004 tsintegrate 3.3.6-2gd +- current (3.3.6-2gd) integrated as 3.3.6-2gd + * Sun Aug 22 2004 Gerald Dachs 3.3.6-2gd - fixed build requirements Copied: contrib/1.1/unrar/releases/3.3.6/2gd (from rev 4556, contrib/1.1/unrar/current) Modified: contrib/1.1/unrar/releases/3.3.6/2gd/specs/unrar.spec =================================================================== --- contrib/1.1/unrar/current/specs/unrar.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/unrar/releases/3.3.6/2gd/specs/unrar.spec 2004-09-13 11:51:49 UTC (rev 4731) @@ -40,6 +40,9 @@ %{_mandir}/man1/%{name}.1* %changelog +* Mon Sep 13 2004 tsintegrate 3.3.6-2gd +- current (3.3.6-2gd) integrated as 3.3.6-2gd + * Sun Aug 22 2004 Gerald Dachs 3.3.6-2gd - fixed build requirements From svn at tinysofa.org Mon Sep 13 11:51:53 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:51:53 +1000 (EST) Subject: [tinysofa-svn] r4732 - contrib/1.1/unrar Message-ID: <20040913115153.E572F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:51:53 +1000 (Mon, 13 Sep 2004) New Revision: 4732 Removed: contrib/1.1/unrar/pristine/ Log: unrar: * removing pristine (3.3.6-2gd) From svn at tinysofa.org Mon Sep 13 11:51:58 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:51:58 +1000 (EST) Subject: [tinysofa-svn] r4733 - contrib/1.1/unrar Message-ID: <20040913115158.91B974E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:51:58 +1000 (Mon, 13 Sep 2004) New Revision: 4733 Added: contrib/1.1/unrar/pristine/ Log: unrar: * retarget pristine (3.3.6-2gd) to releases/3.3.6/2gd Copied: contrib/1.1/unrar/pristine (from rev 4731, contrib/1.1/unrar/releases/3.3.6/2gd) From svn at tinysofa.org Mon Sep 13 11:52:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:52:12 +1000 (EST) Subject: [tinysofa-svn] r4734 - in contrib/1.1/utempter: current/specs releases/0.5.5/1ok releases/0.5.5/1ok/current/specs Message-ID: <20040913115212.618FF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:52:12 +1000 (Mon, 13 Sep 2004) New Revision: 4734 Added: contrib/1.1/utempter/releases/0.5.5/1ok/current/ Modified: contrib/1.1/utempter/current/specs/utempter.spec contrib/1.1/utempter/releases/0.5.5/1ok/current/specs/utempter.spec Log: utempter: * integrate current (0.5.5-1ok) as releases/0.5.5/1ok Modified: contrib/1.1/utempter/current/specs/utempter.spec =================================================================== --- contrib/1.1/utempter/current/specs/utempter.spec 2004-09-13 11:51:58 UTC (rev 4733) +++ contrib/1.1/utempter/current/specs/utempter.spec 2004-09-13 11:52:12 UTC (rev 4734) @@ -1,7 +1,7 @@ Summary: A privileged helper for utmp/wtmp updates. Name: utempter Version: 0.5.5 -Release: 1ok +Release: 1ok License: MIT/LGPL Group: contrib Source: utempter-%{version}.tar.gz @@ -52,6 +52,9 @@ %{_includedir}/utempter.h %changelog +* Mon Sep 13 2004 tsintegrate 0.5.5-1ok +- current (0.5.5-1ok) integrated as 0.5.5-1ok + * Wed May 19 2004 Omar Kilani 0.5.5-1ok - tinysofa. Copied: contrib/1.1/utempter/releases/0.5.5/1ok/current (from rev 4556, contrib/1.1/utempter/current) Modified: contrib/1.1/utempter/releases/0.5.5/1ok/current/specs/utempter.spec =================================================================== --- contrib/1.1/utempter/current/specs/utempter.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/utempter/releases/0.5.5/1ok/current/specs/utempter.spec 2004-09-13 11:52:12 UTC (rev 4734) @@ -1,7 +1,7 @@ Summary: A privileged helper for utmp/wtmp updates. Name: utempter Version: 0.5.5 -Release: 1ok +Release: 1ok License: MIT/LGPL Group: contrib Source: utempter-%{version}.tar.gz @@ -52,6 +52,9 @@ %{_includedir}/utempter.h %changelog +* Mon Sep 13 2004 tsintegrate 0.5.5-1ok +- current (0.5.5-1ok) integrated as 0.5.5-1ok + * Wed May 19 2004 Omar Kilani 0.5.5-1ok - tinysofa. From svn at tinysofa.org Mon Sep 13 11:52:16 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:52:16 +1000 (EST) Subject: [tinysofa-svn] r4735 - contrib/1.1/utempter Message-ID: <20040913115216.E96034E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:52:16 +1000 (Mon, 13 Sep 2004) New Revision: 4735 Removed: contrib/1.1/utempter/pristine/ Log: utempter: * removing pristine (0.5.5-1ok) From svn at tinysofa.org Mon Sep 13 11:52:23 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:52:23 +1000 (EST) Subject: [tinysofa-svn] r4736 - in contrib/1.1/utempter: . pristine Message-ID: <20040913115223.C36004E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:52:23 +1000 (Mon, 13 Sep 2004) New Revision: 4736 Added: contrib/1.1/utempter/pristine/ contrib/1.1/utempter/pristine/current/ Log: utempter: * retarget pristine (0.5.5-1ok) to releases/0.5.5/1ok Copied: contrib/1.1/utempter/pristine (from rev 4556, contrib/1.1/utempter/releases/0.5.5/1ok) Copied: contrib/1.1/utempter/pristine/current (from rev 4734, contrib/1.1/utempter/releases/0.5.5/1ok/current) From svn at tinysofa.org Mon Sep 13 11:52:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:52:35 +1000 (EST) Subject: [tinysofa-svn] r4737 - in contrib/1.1/vconfig: current/specs releases/1.8/1bg releases/1.8/1bg/current/specs Message-ID: <20040913115235.CC2AE4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:52:35 +1000 (Mon, 13 Sep 2004) New Revision: 4737 Added: contrib/1.1/vconfig/releases/1.8/1bg/current/ Modified: contrib/1.1/vconfig/current/specs/vconfig.spec contrib/1.1/vconfig/releases/1.8/1bg/current/specs/vconfig.spec Log: vconfig: * integrate current (1.8-1bg) as releases/1.8/1bg Modified: contrib/1.1/vconfig/current/specs/vconfig.spec =================================================================== --- contrib/1.1/vconfig/current/specs/vconfig.spec 2004-09-13 11:52:23 UTC (rev 4736) +++ contrib/1.1/vconfig/current/specs/vconfig.spec 2004-09-13 11:52:35 UTC (rev 4737) @@ -40,6 +40,9 @@ %{_mandir}/man8/vconfig.8* %changelog +* Mon Sep 13 2004 tsintegrate 1.8-1bg +- current (1.8-1bg) integrated as 1.8-1bg + * Mon Jun 21 2004 Goetz Bock 1.8-1bg - build for tinysofa contrib Copied: contrib/1.1/vconfig/releases/1.8/1bg/current (from rev 4556, contrib/1.1/vconfig/current) Modified: contrib/1.1/vconfig/releases/1.8/1bg/current/specs/vconfig.spec =================================================================== --- contrib/1.1/vconfig/current/specs/vconfig.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/vconfig/releases/1.8/1bg/current/specs/vconfig.spec 2004-09-13 11:52:35 UTC (rev 4737) @@ -40,6 +40,9 @@ %{_mandir}/man8/vconfig.8* %changelog +* Mon Sep 13 2004 tsintegrate 1.8-1bg +- current (1.8-1bg) integrated as 1.8-1bg + * Mon Jun 21 2004 Goetz Bock 1.8-1bg - build for tinysofa contrib From svn at tinysofa.org Mon Sep 13 11:52:39 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:52:39 +1000 (EST) Subject: [tinysofa-svn] r4738 - contrib/1.1/vconfig Message-ID: <20040913115239.F135F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:52:39 +1000 (Mon, 13 Sep 2004) New Revision: 4738 Removed: contrib/1.1/vconfig/pristine/ Log: vconfig: * removing pristine (1.8-1bg) From svn at tinysofa.org Mon Sep 13 11:52:46 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:52:46 +1000 (EST) Subject: [tinysofa-svn] r4739 - in contrib/1.1/vconfig: . pristine Message-ID: <20040913115246.8A39D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:52:46 +1000 (Mon, 13 Sep 2004) New Revision: 4739 Added: contrib/1.1/vconfig/pristine/ contrib/1.1/vconfig/pristine/current/ Log: vconfig: * retarget pristine (1.8-1bg) to releases/1.8/1bg Copied: contrib/1.1/vconfig/pristine (from rev 4556, contrib/1.1/vconfig/releases/1.8/1bg) Copied: contrib/1.1/vconfig/pristine/current (from rev 4737, contrib/1.1/vconfig/releases/1.8/1bg/current) From svn at tinysofa.org Mon Sep 13 11:52:58 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:52:58 +1000 (EST) Subject: [tinysofa-svn] r4740 - in contrib/1.1/webmin: current/specs releases/1.150 releases/1.150/2jh/specs Message-ID: <20040913115258.5D6CA4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:52:58 +1000 (Mon, 13 Sep 2004) New Revision: 4740 Added: contrib/1.1/webmin/releases/1.150/2jh/ Modified: contrib/1.1/webmin/current/specs/webmin.spec contrib/1.1/webmin/releases/1.150/2jh/specs/webmin.spec Log: webmin: * integrate current (1.150-2jh) as releases/1.150/2jh Modified: contrib/1.1/webmin/current/specs/webmin.spec =================================================================== --- contrib/1.1/webmin/current/specs/webmin.spec 2004-09-13 11:52:46 UTC (rev 4739) +++ contrib/1.1/webmin/current/specs/webmin.spec 2004-09-13 11:52:58 UTC (rev 4740) @@ -3,7 +3,7 @@ Summary: A web-based administration interface for Unix systems. Name: webmin Version: 1.150 -Release: 2jh +Release: 2jh Requires: perl License: Freeware Group: contrib @@ -120,6 +120,9 @@ %dir %{_localstatedir}/webmin %changelog +* Mon Sep 13 2004 tsintegrate 1.150-2jh +- current (1.150-2jh) integrated as 1.150-2jh + * Wed Aug 25 2004 Jaakko Heinonen 1.150-2jh - %_initdir -> %_initrddir - don't use automatic perl dependency generator Copied: contrib/1.1/webmin/releases/1.150/2jh (from rev 4556, contrib/1.1/webmin/current) Modified: contrib/1.1/webmin/releases/1.150/2jh/specs/webmin.spec =================================================================== --- contrib/1.1/webmin/current/specs/webmin.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/webmin/releases/1.150/2jh/specs/webmin.spec 2004-09-13 11:52:58 UTC (rev 4740) @@ -3,7 +3,7 @@ Summary: A web-based administration interface for Unix systems. Name: webmin Version: 1.150 -Release: 2jh +Release: 2jh Requires: perl License: Freeware Group: contrib @@ -120,6 +120,9 @@ %dir %{_localstatedir}/webmin %changelog +* Mon Sep 13 2004 tsintegrate 1.150-2jh +- current (1.150-2jh) integrated as 1.150-2jh + * Wed Aug 25 2004 Jaakko Heinonen 1.150-2jh - %_initdir -> %_initrddir - don't use automatic perl dependency generator From svn at tinysofa.org Mon Sep 13 11:53:02 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:53:02 +1000 (EST) Subject: [tinysofa-svn] r4741 - contrib/1.1/webmin Message-ID: <20040913115302.E17E54E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:53:02 +1000 (Mon, 13 Sep 2004) New Revision: 4741 Removed: contrib/1.1/webmin/pristine/ Log: webmin: * removing pristine (1.150-2jh) From svn at tinysofa.org Mon Sep 13 11:53:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:53:07 +1000 (EST) Subject: [tinysofa-svn] r4742 - contrib/1.1/webmin Message-ID: <20040913115307.AEB774E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:53:07 +1000 (Mon, 13 Sep 2004) New Revision: 4742 Added: contrib/1.1/webmin/pristine/ Log: webmin: * retarget pristine (1.150-2jh) to releases/1.150/2jh Copied: contrib/1.1/webmin/pristine (from rev 4740, contrib/1.1/webmin/releases/1.150/2jh) From svn at tinysofa.org Mon Sep 13 11:53:19 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:53:19 +1000 (EST) Subject: [tinysofa-svn] r4743 - in contrib/1.1/wipe: current/specs releases/2.2.0/1bg releases/2.2.0/1bg/current/specs Message-ID: <20040913115319.DF7604E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:53:19 +1000 (Mon, 13 Sep 2004) New Revision: 4743 Added: contrib/1.1/wipe/releases/2.2.0/1bg/current/ Modified: contrib/1.1/wipe/current/specs/wipe.spec contrib/1.1/wipe/releases/2.2.0/1bg/current/specs/wipe.spec Log: wipe: * integrate current (2.2.0-1bg) as releases/2.2.0/1bg Modified: contrib/1.1/wipe/current/specs/wipe.spec =================================================================== --- contrib/1.1/wipe/current/specs/wipe.spec 2004-09-13 11:53:07 UTC (rev 4742) +++ contrib/1.1/wipe/current/specs/wipe.spec 2004-09-13 11:53:19 UTC (rev 4743) @@ -58,6 +58,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 2.2.0-1bg +- current (2.2.0-1bg) integrated as 2.2.0-1bg + * Mon Jun 21 2004 Goetz Bock 2.2.0-1bg - build for tinysofa contrib - fixed patch0 Copied: contrib/1.1/wipe/releases/2.2.0/1bg/current (from rev 4556, contrib/1.1/wipe/current) Modified: contrib/1.1/wipe/releases/2.2.0/1bg/current/specs/wipe.spec =================================================================== --- contrib/1.1/wipe/current/specs/wipe.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/wipe/releases/2.2.0/1bg/current/specs/wipe.spec 2004-09-13 11:53:19 UTC (rev 4743) @@ -58,6 +58,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 2.2.0-1bg +- current (2.2.0-1bg) integrated as 2.2.0-1bg + * Mon Jun 21 2004 Goetz Bock 2.2.0-1bg - build for tinysofa contrib - fixed patch0 From svn at tinysofa.org Mon Sep 13 11:53:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:53:24 +1000 (EST) Subject: [tinysofa-svn] r4744 - contrib/1.1/wipe Message-ID: <20040913115324.4C1174E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:53:24 +1000 (Mon, 13 Sep 2004) New Revision: 4744 Removed: contrib/1.1/wipe/pristine/ Log: wipe: * removing pristine (2.2.0-1bg) From svn at tinysofa.org Mon Sep 13 11:53:31 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:53:31 +1000 (EST) Subject: [tinysofa-svn] r4745 - in contrib/1.1/wipe: . pristine Message-ID: <20040913115331.920AF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:53:31 +1000 (Mon, 13 Sep 2004) New Revision: 4745 Added: contrib/1.1/wipe/pristine/ contrib/1.1/wipe/pristine/current/ Log: wipe: * retarget pristine (2.2.0-1bg) to releases/2.2.0/1bg Copied: contrib/1.1/wipe/pristine (from rev 4556, contrib/1.1/wipe/releases/2.2.0/1bg) Copied: contrib/1.1/wipe/pristine/current (from rev 4743, contrib/1.1/wipe/releases/2.2.0/1bg/current) From svn at tinysofa.org Mon Sep 13 11:53:42 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:53:42 +1000 (EST) Subject: [tinysofa-svn] r4746 - in contrib/1.1/wol: current/specs releases/0.7.1 releases/0.7.1/2jh/specs Message-ID: <20040913115342.8CA364E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:53:42 +1000 (Mon, 13 Sep 2004) New Revision: 4746 Added: contrib/1.1/wol/releases/0.7.1/2jh/ Modified: contrib/1.1/wol/current/specs/wol.spec contrib/1.1/wol/releases/0.7.1/2jh/specs/wol.spec Log: wol: * integrate current (0.7.1-2jh) as releases/0.7.1/2jh Modified: contrib/1.1/wol/current/specs/wol.spec =================================================================== --- contrib/1.1/wol/current/specs/wol.spec 2004-09-13 11:53:31 UTC (rev 4745) +++ contrib/1.1/wol/current/specs/wol.spec 2004-09-13 11:53:42 UTC (rev 4746) @@ -90,6 +90,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.7.1-2jh +- current (0.7.1-2jh) integrated as 0.7.1-2jh + * Mon Sep 13 2004 Jaakko Heinonen 0.7.1-2jh - fix broken requirements Copied: contrib/1.1/wol/releases/0.7.1/2jh (from rev 4556, contrib/1.1/wol/current) Modified: contrib/1.1/wol/releases/0.7.1/2jh/specs/wol.spec =================================================================== --- contrib/1.1/wol/current/specs/wol.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/wol/releases/0.7.1/2jh/specs/wol.spec 2004-09-13 11:53:42 UTC (rev 4746) @@ -90,6 +90,9 @@ %changelog +* Mon Sep 13 2004 tsintegrate 0.7.1-2jh +- current (0.7.1-2jh) integrated as 0.7.1-2jh + * Mon Sep 13 2004 Jaakko Heinonen 0.7.1-2jh - fix broken requirements From svn at tinysofa.org Mon Sep 13 11:53:46 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:53:46 +1000 (EST) Subject: [tinysofa-svn] r4747 - contrib/1.1/wol Message-ID: <20040913115346.DB4414E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:53:46 +1000 (Mon, 13 Sep 2004) New Revision: 4747 Removed: contrib/1.1/wol/pristine/ Log: wol: * removing pristine (0.7.1-2jh) From svn at tinysofa.org Mon Sep 13 11:53:51 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:53:51 +1000 (EST) Subject: [tinysofa-svn] r4748 - contrib/1.1/wol Message-ID: <20040913115351.73D964E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:53:51 +1000 (Mon, 13 Sep 2004) New Revision: 4748 Added: contrib/1.1/wol/pristine/ Log: wol: * retarget pristine (0.7.1-2jh) to releases/0.7.1/2jh Copied: contrib/1.1/wol/pristine (from rev 4746, contrib/1.1/wol/releases/0.7.1/2jh) From svn at tinysofa.org Mon Sep 13 11:54:04 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:54:04 +1000 (EST) Subject: [tinysofa-svn] r4749 - in contrib/1.1/xfsdump: current/specs releases/2.2.21 releases/2.2.21/4jh/specs Message-ID: <20040913115404.9C4D24E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:54:04 +1000 (Mon, 13 Sep 2004) New Revision: 4749 Added: contrib/1.1/xfsdump/releases/2.2.21/4jh/ Modified: contrib/1.1/xfsdump/current/specs/xfsdump.spec contrib/1.1/xfsdump/releases/2.2.21/4jh/specs/xfsdump.spec Log: xfsdump: * integrate current (2.2.21-4jh) as releases/2.2.21/4jh Modified: contrib/1.1/xfsdump/current/specs/xfsdump.spec =================================================================== --- contrib/1.1/xfsdump/current/specs/xfsdump.spec 2004-09-13 11:53:51 UTC (rev 4748) +++ contrib/1.1/xfsdump/current/specs/xfsdump.spec 2004-09-13 11:54:04 UTC (rev 4749) @@ -51,6 +51,9 @@ %files -f build/rpm/rpmfiles %changelog +* Mon Sep 13 2004 tsintegrate 2.2.21-4jh +- current (2.2.21-4jh) integrated as 2.2.21-4jh + * Mon May 24 2004 tsintegrate 2.2.21-3ts - current (2.2.21-3ok) integrated as 2.2.21-3ts for release 1.0-U1 Copied: contrib/1.1/xfsdump/releases/2.2.21/4jh (from rev 4556, contrib/1.1/xfsdump/current) Modified: contrib/1.1/xfsdump/releases/2.2.21/4jh/specs/xfsdump.spec =================================================================== --- contrib/1.1/xfsdump/current/specs/xfsdump.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/xfsdump/releases/2.2.21/4jh/specs/xfsdump.spec 2004-09-13 11:54:04 UTC (rev 4749) @@ -51,6 +51,9 @@ %files -f build/rpm/rpmfiles %changelog +* Mon Sep 13 2004 tsintegrate 2.2.21-4jh +- current (2.2.21-4jh) integrated as 2.2.21-4jh + * Mon May 24 2004 tsintegrate 2.2.21-3ts - current (2.2.21-3ok) integrated as 2.2.21-3ts for release 1.0-U1 From svn at tinysofa.org Mon Sep 13 11:54:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:54:08 +1000 (EST) Subject: [tinysofa-svn] r4750 - contrib/1.1/xfsdump Message-ID: <20040913115408.EC4284E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:54:08 +1000 (Mon, 13 Sep 2004) New Revision: 4750 Removed: contrib/1.1/xfsdump/pristine/ Log: xfsdump: * removing pristine (2.2.21-4jh) From svn at tinysofa.org Mon Sep 13 11:54:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:54:13 +1000 (EST) Subject: [tinysofa-svn] r4751 - contrib/1.1/xfsdump Message-ID: <20040913115413.69C5A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:54:13 +1000 (Mon, 13 Sep 2004) New Revision: 4751 Added: contrib/1.1/xfsdump/pristine/ Log: xfsdump: * retarget pristine (2.2.21-4jh) to releases/2.2.21/4jh Copied: contrib/1.1/xfsdump/pristine (from rev 4749, contrib/1.1/xfsdump/releases/2.2.21/4jh) From svn at tinysofa.org Mon Sep 13 11:54:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:54:24 +1000 (EST) Subject: [tinysofa-svn] r4752 - in contrib/1.1/xfsprogs: current/specs releases/2.6.13 releases/2.6.13/2jh/specs Message-ID: <20040913115424.E7DFC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:54:24 +1000 (Mon, 13 Sep 2004) New Revision: 4752 Added: contrib/1.1/xfsprogs/releases/2.6.13/2jh/ Modified: contrib/1.1/xfsprogs/current/specs/xfsprogs.spec contrib/1.1/xfsprogs/releases/2.6.13/2jh/specs/xfsprogs.spec Log: xfsprogs: * integrate current (2.6.13-2jh) as releases/2.6.13/2jh Modified: contrib/1.1/xfsprogs/current/specs/xfsprogs.spec =================================================================== --- contrib/1.1/xfsprogs/current/specs/xfsprogs.spec 2004-09-13 11:54:13 UTC (rev 4751) +++ contrib/1.1/xfsprogs/current/specs/xfsprogs.spec 2004-09-13 11:54:24 UTC (rev 4752) @@ -101,6 +101,9 @@ %defattr(-,root,root) %changelog +* Mon Sep 13 2004 tsintegrate 2.6.13-2jh +- current (2.6.13-2jh) integrated as 2.6.13-2jh + * Wed May 19 2004 tsintegrate 2.6.13-1ts - current (2.6.13-1ok) integrated as 2.6.13-1ts for release 1.0-U1 Copied: contrib/1.1/xfsprogs/releases/2.6.13/2jh (from rev 4556, contrib/1.1/xfsprogs/current) Modified: contrib/1.1/xfsprogs/releases/2.6.13/2jh/specs/xfsprogs.spec =================================================================== --- contrib/1.1/xfsprogs/current/specs/xfsprogs.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/xfsprogs/releases/2.6.13/2jh/specs/xfsprogs.spec 2004-09-13 11:54:24 UTC (rev 4752) @@ -101,6 +101,9 @@ %defattr(-,root,root) %changelog +* Mon Sep 13 2004 tsintegrate 2.6.13-2jh +- current (2.6.13-2jh) integrated as 2.6.13-2jh + * Wed May 19 2004 tsintegrate 2.6.13-1ts - current (2.6.13-1ok) integrated as 2.6.13-1ts for release 1.0-U1 From svn at tinysofa.org Mon Sep 13 11:49:18 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:49:18 +1000 (EST) Subject: [tinysofa-svn] r4712 - contrib/1.1/swig Message-ID: <20040913114918.A2C454E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:49:18 +1000 (Mon, 13 Sep 2004) New Revision: 4712 Added: contrib/1.1/swig/pristine/ Log: swig: * retarget pristine (1.3.21-5jh) to releases/1.3.21/5jh Copied: contrib/1.1/swig/pristine (from rev 4710, contrib/1.1/swig/releases/1.3.21/5jh) From svn at tinysofa.org Mon Sep 13 11:49:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:49:30 +1000 (EST) Subject: [tinysofa-svn] r4713 - in contrib/1.1/symlinks: current/specs releases/1.2/1ok releases/1.2/1ok/current/specs Message-ID: <20040913114930.5C7144E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:49:30 +1000 (Mon, 13 Sep 2004) New Revision: 4713 Added: contrib/1.1/symlinks/releases/1.2/1ok/current/ Modified: contrib/1.1/symlinks/current/specs/symlinks.spec contrib/1.1/symlinks/releases/1.2/1ok/current/specs/symlinks.spec Log: symlinks: * integrate current (1.2-1ok) as releases/1.2/1ok Modified: contrib/1.1/symlinks/current/specs/symlinks.spec =================================================================== --- contrib/1.1/symlinks/current/specs/symlinks.spec 2004-09-13 11:49:18 UTC (rev 4712) +++ contrib/1.1/symlinks/current/specs/symlinks.spec 2004-09-13 11:49:30 UTC (rev 4713) @@ -43,6 +43,9 @@ %{_mandir}/man8/symlinks.8* %changelog +* Mon Sep 13 2004 tsintegrate 1.2-1ok +- current (1.2-1ok) integrated as 1.2-1ok + * Thu May 20 2004 Omar Kilani - tinysofa. Copied: contrib/1.1/symlinks/releases/1.2/1ok/current (from rev 4556, contrib/1.1/symlinks/current) Modified: contrib/1.1/symlinks/releases/1.2/1ok/current/specs/symlinks.spec =================================================================== --- contrib/1.1/symlinks/current/specs/symlinks.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/symlinks/releases/1.2/1ok/current/specs/symlinks.spec 2004-09-13 11:49:30 UTC (rev 4713) @@ -43,6 +43,9 @@ %{_mandir}/man8/symlinks.8* %changelog +* Mon Sep 13 2004 tsintegrate 1.2-1ok +- current (1.2-1ok) integrated as 1.2-1ok + * Thu May 20 2004 Omar Kilani - tinysofa. From svn at tinysofa.org Mon Sep 13 11:49:34 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:49:34 +1000 (EST) Subject: [tinysofa-svn] r4714 - contrib/1.1/symlinks Message-ID: <20040913114934.EA7184E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:49:34 +1000 (Mon, 13 Sep 2004) New Revision: 4714 Removed: contrib/1.1/symlinks/pristine/ Log: symlinks: * removing pristine (1.2-1ok) From svn at tinysofa.org Mon Sep 13 11:49:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:49:41 +1000 (EST) Subject: [tinysofa-svn] r4715 - in contrib/1.1/symlinks: . pristine Message-ID: <20040913114941.931CA4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:49:41 +1000 (Mon, 13 Sep 2004) New Revision: 4715 Added: contrib/1.1/symlinks/pristine/ contrib/1.1/symlinks/pristine/current/ Log: symlinks: * retarget pristine (1.2-1ok) to releases/1.2/1ok Copied: contrib/1.1/symlinks/pristine (from rev 4556, contrib/1.1/symlinks/releases/1.2/1ok) Copied: contrib/1.1/symlinks/pristine/current (from rev 4713, contrib/1.1/symlinks/releases/1.2/1ok/current) From svn at tinysofa.org Mon Sep 13 11:55:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:55:28 +1000 (EST) Subject: [tinysofa-svn] r4757 - contrib/1.1/xorg-x11 Message-ID: <20040913115528.F35DF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:55:28 +1000 (Mon, 13 Sep 2004) New Revision: 4757 Added: contrib/1.1/xorg-x11/pristine/ Log: xorg-x11: * retarget pristine (6.7.0-8jh) to releases/6.7.0/8jh Copied: contrib/1.1/xorg-x11/pristine (from rev 4755, contrib/1.1/xorg-x11/releases/6.7.0/8jh) From svn at tinysofa.org Mon Sep 13 11:55:46 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:55:46 +1000 (EST) Subject: [tinysofa-svn] r4758 - in contrib/1.1/xterm: current/specs releases/192/2jh releases/192/2jh/current/specs Message-ID: <20040913115546.63F324E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:55:46 +1000 (Mon, 13 Sep 2004) New Revision: 4758 Added: contrib/1.1/xterm/releases/192/2jh/current/ contrib/1.1/xterm/releases/192/2jh/current/specs/xterm.spec Removed: contrib/1.1/xterm/releases/192/2jh/current/specs/xterm.spec Modified: contrib/1.1/xterm/current/specs/xterm.spec Log: xterm: * integrate current (192-2jh) as releases/192/2jh Modified: contrib/1.1/xterm/current/specs/xterm.spec =================================================================== --- contrib/1.1/xterm/current/specs/xterm.spec 2004-09-13 11:55:28 UTC (rev 4757) +++ contrib/1.1/xterm/current/specs/xterm.spec 2004-09-13 11:55:46 UTC (rev 4758) @@ -76,6 +76,9 @@ * Mon Sep 13 2004 tsintegrate 192-2jh - current (192-2jh) integrated as 192-2jh +* Mon Sep 13 2004 tsintegrate 192-2jh +- current (192-2jh) integrated as 192-2jh + * Thu Sep 9 2004 Jaakko Heinonen 192-2jh - enable anti-aliasing Copied: contrib/1.1/xterm/releases/192/2jh/current (from rev 4556, contrib/1.1/xterm/current) Deleted: contrib/1.1/xterm/releases/192/2jh/current/specs/xterm.spec =================================================================== --- contrib/1.1/xterm/current/specs/xterm.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/xterm/releases/192/2jh/current/specs/xterm.spec 2004-09-13 11:55:46 UTC (rev 4758) @@ -1,145 +0,0 @@ -%define _x11bindir /usr/X11R6/bin -%define _x11datadir /usr/X11R6/lib - -Summary: xterm terminal emulator for the X Window System -Name: xterm -Version: 192 -Release: 2jh -URL: http://dickey.his.com/xterm -License: MIT -Group: contrib -BuildRoot: %{_tmppath}/%{name}-%{version}-root -Source0: ftp://dickey.his.com/xterm/%{name}-%{version}.tgz -Patch0: xterm-can-2003-0063.patch -Patch1: xterm-resources-redhat.patch -Patch2: xterm-179-ppc-fix-bug-101472.patch - -BuildRequires: xorg-x11-devel >= 4.3.0 libtermcap-devel -BuildRequires: freetype-devel utempter - -%description -The xterm program is a terminal emulator for the X Window System. It -provides DEC VT102 and Tektronix 4014 compatible terminals for -programs that can't use the window system directly. - -%prep -%setup -q -# The xterm source code decompreses with all of the files read-only, which -# is totally retarded. -chmod -R u+w . -%patch0 -p0 -b .can-2003-0063 -#%patch1 -p0 -b .resources-redhat -%ifarch ppc ppc64 -%patch2 -p0 -b .ppc-fix-bug-101472 -%endif - -%build -# ensure that X11 is in path (xft-config) -export PATH="$PATH:/usr/X11R6/bin" -%configure --enable-luit --enable-warnings --enable-wide-chars --with-utempter -%make - -%install -%makeinstall -#install-ti - -mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1 -mkdir -p $RPM_BUILD_ROOT/%{_x11datadir}/X11/app-defaults - -mv $RPM_BUILD_ROOT/%{_mandir}/*.1 $RPM_BUILD_ROOT/%{_mandir}/man1/ -mv $RPM_BUILD_ROOT/usr/%{_lib}/X11/app-defaults/* $RPM_BUILD_ROOT/%{_x11datadir}/X11/app-defaults/ - -# Make a compatibility symlink for xterm, so that applications and scripts -# which invoke xterm explicitly as /usr/X11R6/bin/xterm, will continue to work -# correctly without surprises -{ - mkdir -p $RPM_BUILD_ROOT%{_x11bindir} - ln -sf ../../bin/xterm $RPM_BUILD_ROOT%{_x11bindir}/xterm -} - -%clean -%clean_buildroot - -%files -%defattr(-,root,root) -%{_bindir}/resize -%{_bindir}/uxterm -%{_bindir}/xterm -%{_mandir}/man1/resize.1* -%{_mandir}/man1/xterm.1* -%{_x11datadir}/X11/app-defaults/UXTerm -%{_x11datadir}/X11/app-defaults/XTerm -%{_x11datadir}/X11/app-defaults/XTerm-color -%{_x11bindir}/xterm - -%changelog -* Thu Sep 9 2004 Jaakko Heinonen 192-2jh -- enable anti-aliasing - -* Wed Aug 25 2004 Gerald Dachs 192-1gd -- New in tinysofa contrib - -* Fri Jul 13 2004 Mike A. Harris 192-1 -- Updated main tarball to xterm-192 for FC3 devel -- Resolved bugs #126569,127132 - -* Fri Jun 18 2004 Mike A. Harris 191-1 -- Updated main tarball to xterm-191 for FC3 devel -- Disabled xterm-resources-redhat.patch to see what if anything breaks, as - it no longer applies cleanly. Hopefully we can just ship stock xterm - resources now, although I realize that is more likely to be a pie in the - sky fantasy once the bug reports trickle in from this change. ;o) - -* Tue Jun 15 2004 Elliot Lee 179-8 -- rebuilt - -* Thu Jun 3 2004 Mike A. Harris 179-7 -- Rebuilt for FC3 devel - -* Fri Feb 13 2004 Elliot Lee 179-6.EL -- rebuilt - -* Mon Sep 8 2003 Mike A. Harris 179-5.EL -- Rebuilt 179-5 for Taroon - -* Mon Sep 8 2003 Mike A. Harris 179-5 -- Added xterm-179-ppc-fix-bug-101472.patch ifarch ppc ppc64 to fix bug (#101472) - -* Wed Aug 27 2003 Bill Nottingham 179-4.1 -- fix symlink -- rebuild - -* Wed Aug 13 2003 Mike A. Harris 179-3.EL -- Rebuilt for Taroon with symlink fixes. - -* Wed Aug 13 2003 Mike A. Harris 179-3 -- Added symlink /usr/X11R6/bin/xterm pointing to _bindir/xterm so that apps - and scripts which invoke xterm explicitly as /usr/X11R6/bin/xterm, will - continue to work correctly without surprises (#101994) - -* Wed Jun 04 2003 Elliot Lee 179-2.EL -- rebuilt - -* Fri May 30 2003 Mike A. Harris 179-1.EL -- Bump release to 1.EL for Red Hat Enterprise Linux build - -* Mon May 26 2003 Mike A. Harris 179-1 -- Updated to upstream xterm 179 -- [SECURITY] Added xterm-can-2003-0063.patch from XFree86 4.3.0-12 package -- Added Red Hat xterm-resources-redhat.patch from XFree86 4.3.0-12 package -- Added "chmod -R u+w *" after source is decompressed or else patches can not - be applied due to upstream source being read only files -- Built xterm 179-1 in rawhide - -* Mon May 5 2003 Mike A. Harris 177-2.0.EL -- Bump release to 2.0.EL for Red Hat Enterprise Linux build - -* Mon May 5 2003 Mike A. Harris 177-2 -- Build fix for lib64: _x11datadir == /usr/X11R6/lib -- Another lib64 build fix: xterm uses /usr/%%{_lib}/X11/app-defaults when it - should be using an arch-neutral dir {_x11datadir}/X11/app-defaults instead - -* Tue Apr 15 2003 Mike A. Harris 177-1 -- Call configure with "--enable-luit --enable-warnings --enable-wide-chars - --with-utempter" -- Initial build. Copied: contrib/1.1/xterm/releases/192/2jh/current/specs/xterm.spec (from rev 4692, contrib/1.1/xterm/current/specs/xterm.spec) =================================================================== --- contrib/1.1/xterm/current/specs/xterm.spec 2004-09-13 11:47:09 UTC (rev 4692) +++ contrib/1.1/xterm/releases/192/2jh/current/specs/xterm.spec 2004-09-13 11:55:46 UTC (rev 4758) @@ -0,0 +1,151 @@ +%define _x11bindir /usr/X11R6/bin +%define _x11datadir /usr/X11R6/lib + +Summary: xterm terminal emulator for the X Window System +Name: xterm +Version: 192 +Release: 2jh +URL: http://dickey.his.com/xterm +License: MIT +Group: contrib +BuildRoot: %{_tmppath}/%{name}-%{version}-root +Source0: ftp://dickey.his.com/xterm/%{name}-%{version}.tgz +Patch0: xterm-can-2003-0063.patch +Patch1: xterm-resources-redhat.patch +Patch2: xterm-179-ppc-fix-bug-101472.patch + +BuildRequires: xorg-x11-devel >= 4.3.0 libtermcap-devel +BuildRequires: freetype-devel utempter + +%description +The xterm program is a terminal emulator for the X Window System. It +provides DEC VT102 and Tektronix 4014 compatible terminals for +programs that can't use the window system directly. + +%prep +%setup -q +# The xterm source code decompreses with all of the files read-only, which +# is totally retarded. +chmod -R u+w . +%patch0 -p0 -b .can-2003-0063 +#%patch1 -p0 -b .resources-redhat +%ifarch ppc ppc64 +%patch2 -p0 -b .ppc-fix-bug-101472 +%endif + +%build +# ensure that X11 is in path (xft-config) +export PATH="$PATH:/usr/X11R6/bin" +%configure --enable-luit --enable-warnings --enable-wide-chars --with-utempter +%make + +%install +%makeinstall +#install-ti + +mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1 +mkdir -p $RPM_BUILD_ROOT/%{_x11datadir}/X11/app-defaults + +mv $RPM_BUILD_ROOT/%{_mandir}/*.1 $RPM_BUILD_ROOT/%{_mandir}/man1/ +mv $RPM_BUILD_ROOT/usr/%{_lib}/X11/app-defaults/* $RPM_BUILD_ROOT/%{_x11datadir}/X11/app-defaults/ + +# Make a compatibility symlink for xterm, so that applications and scripts +# which invoke xterm explicitly as /usr/X11R6/bin/xterm, will continue to work +# correctly without surprises +{ + mkdir -p $RPM_BUILD_ROOT%{_x11bindir} + ln -sf ../../bin/xterm $RPM_BUILD_ROOT%{_x11bindir}/xterm +} + +%clean +%clean_buildroot + +%files +%defattr(-,root,root) +%{_bindir}/resize +%{_bindir}/uxterm +%{_bindir}/xterm +%{_mandir}/man1/resize.1* +%{_mandir}/man1/xterm.1* +%{_x11datadir}/X11/app-defaults/UXTerm +%{_x11datadir}/X11/app-defaults/XTerm +%{_x11datadir}/X11/app-defaults/XTerm-color +%{_x11bindir}/xterm + +%changelog +* Mon Sep 13 2004 tsintegrate 192-2jh +- current (192-2jh) integrated as 192-2jh + +* Mon Sep 13 2004 tsintegrate 192-2jh +- current (192-2jh) integrated as 192-2jh + +* Thu Sep 9 2004 Jaakko Heinonen 192-2jh +- enable anti-aliasing + +* Wed Aug 25 2004 Gerald Dachs 192-1gd +- New in tinysofa contrib + +* Fri Jul 13 2004 Mike A. Harris 192-1 +- Updated main tarball to xterm-192 for FC3 devel +- Resolved bugs #126569,127132 + +* Fri Jun 18 2004 Mike A. Harris 191-1 +- Updated main tarball to xterm-191 for FC3 devel +- Disabled xterm-resources-redhat.patch to see what if anything breaks, as + it no longer applies cleanly. Hopefully we can just ship stock xterm + resources now, although I realize that is more likely to be a pie in the + sky fantasy once the bug reports trickle in from this change. ;o) + +* Tue Jun 15 2004 Elliot Lee 179-8 +- rebuilt + +* Thu Jun 3 2004 Mike A. Harris 179-7 +- Rebuilt for FC3 devel + +* Fri Feb 13 2004 Elliot Lee 179-6.EL +- rebuilt + +* Mon Sep 8 2003 Mike A. Harris 179-5.EL +- Rebuilt 179-5 for Taroon + +* Mon Sep 8 2003 Mike A. Harris 179-5 +- Added xterm-179-ppc-fix-bug-101472.patch ifarch ppc ppc64 to fix bug (#101472) + +* Wed Aug 27 2003 Bill Nottingham 179-4.1 +- fix symlink +- rebuild + +* Wed Aug 13 2003 Mike A. Harris 179-3.EL +- Rebuilt for Taroon with symlink fixes. + +* Wed Aug 13 2003 Mike A. Harris 179-3 +- Added symlink /usr/X11R6/bin/xterm pointing to _bindir/xterm so that apps + and scripts which invoke xterm explicitly as /usr/X11R6/bin/xterm, will + continue to work correctly without surprises (#101994) + +* Wed Jun 04 2003 Elliot Lee 179-2.EL +- rebuilt + +* Fri May 30 2003 Mike A. Harris 179-1.EL +- Bump release to 1.EL for Red Hat Enterprise Linux build + +* Mon May 26 2003 Mike A. Harris 179-1 +- Updated to upstream xterm 179 +- [SECURITY] Added xterm-can-2003-0063.patch from XFree86 4.3.0-12 package +- Added Red Hat xterm-resources-redhat.patch from XFree86 4.3.0-12 package +- Added "chmod -R u+w *" after source is decompressed or else patches can not + be applied due to upstream source being read only files +- Built xterm 179-1 in rawhide + +* Mon May 5 2003 Mike A. Harris 177-2.0.EL +- Bump release to 2.0.EL for Red Hat Enterprise Linux build + +* Mon May 5 2003 Mike A. Harris 177-2 +- Build fix for lib64: _x11datadir == /usr/X11R6/lib +- Another lib64 build fix: xterm uses /usr/%%{_lib}/X11/app-defaults when it + should be using an arch-neutral dir {_x11datadir}/X11/app-defaults instead + +* Tue Apr 15 2003 Mike A. Harris 177-1 +- Call configure with "--enable-luit --enable-warnings --enable-wide-chars + --with-utempter" +- Initial build. From svn at tinysofa.org Mon Sep 13 11:55:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:55:50 +1000 (EST) Subject: [tinysofa-svn] r4759 - contrib/1.1/xterm Message-ID: <20040913115550.EBF374E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:55:50 +1000 (Mon, 13 Sep 2004) New Revision: 4759 Removed: contrib/1.1/xterm/pristine/ Log: xterm: * removing pristine (192-2jh) From svn at tinysofa.org Mon Sep 13 11:55:56 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:55:56 +1000 (EST) Subject: [tinysofa-svn] r4760 - in contrib/1.1/xterm: . pristine Message-ID: <20040913115556.7E3EF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:55:56 +1000 (Mon, 13 Sep 2004) New Revision: 4760 Added: contrib/1.1/xterm/pristine/ contrib/1.1/xterm/pristine/current/ Log: xterm: * retarget pristine (192-2jh) to releases/192/2jh Copied: contrib/1.1/xterm/pristine (from rev 4692, contrib/1.1/xterm/releases/192/2jh) Copied: contrib/1.1/xterm/pristine/current (from rev 4758, contrib/1.1/xterm/releases/192/2jh/current) From svn at tinysofa.org Mon Sep 13 11:56:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:56:08 +1000 (EST) Subject: [tinysofa-svn] r4761 - in contrib/1.1/zisofs-tools: current/specs releases/1.0.4/1ok releases/1.0.4/1ok/current/specs Message-ID: <20040913115608.126D14E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:56:07 +1000 (Mon, 13 Sep 2004) New Revision: 4761 Added: contrib/1.1/zisofs-tools/releases/1.0.4/1ok/current/ Modified: contrib/1.1/zisofs-tools/current/specs/zisofs-tools.spec contrib/1.1/zisofs-tools/releases/1.0.4/1ok/current/specs/zisofs-tools.spec Log: zisofs-tools: * integrate current (1.0.4-1ok) as releases/1.0.4/1ok Modified: contrib/1.1/zisofs-tools/current/specs/zisofs-tools.spec =================================================================== --- contrib/1.1/zisofs-tools/current/specs/zisofs-tools.spec 2004-09-13 11:55:56 UTC (rev 4760) +++ contrib/1.1/zisofs-tools/current/specs/zisofs-tools.spec 2004-09-13 11:56:07 UTC (rev 4761) @@ -35,6 +35,9 @@ %{_mandir}/man1/mkzftree.1* %changelog +* Mon Sep 13 2004 tsintegrate 1.0.4-1ok +- current (1.0.4-1ok) integrated as 1.0.4-1ok + * Mon May 03 2004 Omar Kilani 1.04-1ts - Rebuild Copied: contrib/1.1/zisofs-tools/releases/1.0.4/1ok/current (from rev 4556, contrib/1.1/zisofs-tools/current) Modified: contrib/1.1/zisofs-tools/releases/1.0.4/1ok/current/specs/zisofs-tools.spec =================================================================== --- contrib/1.1/zisofs-tools/current/specs/zisofs-tools.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/zisofs-tools/releases/1.0.4/1ok/current/specs/zisofs-tools.spec 2004-09-13 11:56:07 UTC (rev 4761) @@ -35,6 +35,9 @@ %{_mandir}/man1/mkzftree.1* %changelog +* Mon Sep 13 2004 tsintegrate 1.0.4-1ok +- current (1.0.4-1ok) integrated as 1.0.4-1ok + * Mon May 03 2004 Omar Kilani 1.04-1ts - Rebuild From svn at tinysofa.org Mon Sep 13 11:56:14 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:56:14 +1000 (EST) Subject: [tinysofa-svn] r4762 - contrib/1.1/zisofs-tools Message-ID: <20040913115614.E3B3D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:56:14 +1000 (Mon, 13 Sep 2004) New Revision: 4762 Removed: contrib/1.1/zisofs-tools/pristine/ Log: zisofs-tools: * removing pristine (1.0.4-1ok) From svn at tinysofa.org Mon Sep 13 11:56:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:56:21 +1000 (EST) Subject: [tinysofa-svn] r4763 - in contrib/1.1/zisofs-tools: . pristine Message-ID: <20040913115621.E8B7F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:56:21 +1000 (Mon, 13 Sep 2004) New Revision: 4763 Added: contrib/1.1/zisofs-tools/pristine/ contrib/1.1/zisofs-tools/pristine/current/ Log: zisofs-tools: * retarget pristine (1.0.4-1ok) to releases/1.0.4/1ok Copied: contrib/1.1/zisofs-tools/pristine (from rev 4556, contrib/1.1/zisofs-tools/releases/1.0.4/1ok) Copied: contrib/1.1/zisofs-tools/pristine/current (from rev 4761, contrib/1.1/zisofs-tools/releases/1.0.4/1ok/current) From svn at tinysofa.org Mon Sep 13 11:56:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:56:32 +1000 (EST) Subject: [tinysofa-svn] r4764 - in contrib/1.1/zoo: current/specs releases/2.10/1ok releases/2.10/1ok/current/specs Message-ID: <20040913115632.E7F9F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:56:32 +1000 (Mon, 13 Sep 2004) New Revision: 4764 Added: contrib/1.1/zoo/releases/2.10/1ok/current/ Modified: contrib/1.1/zoo/current/specs/zoo.spec contrib/1.1/zoo/releases/2.10/1ok/current/specs/zoo.spec Log: zoo: * integrate current (2.10-1ok) as releases/2.10/1ok Modified: contrib/1.1/zoo/current/specs/zoo.spec =================================================================== --- contrib/1.1/zoo/current/specs/zoo.spec 2004-09-13 11:56:21 UTC (rev 4763) +++ contrib/1.1/zoo/current/specs/zoo.spec 2004-09-13 11:56:32 UTC (rev 4764) @@ -41,6 +41,9 @@ %{_mandir}/man1/* %changelog +* Mon Sep 13 2004 tsintegrate 2.10-1ok +- current (2.10-1ok) integrated as 2.10-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa Copied: contrib/1.1/zoo/releases/2.10/1ok/current (from rev 4556, contrib/1.1/zoo/current) Modified: contrib/1.1/zoo/releases/2.10/1ok/current/specs/zoo.spec =================================================================== --- contrib/1.1/zoo/current/specs/zoo.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/zoo/releases/2.10/1ok/current/specs/zoo.spec 2004-09-13 11:56:32 UTC (rev 4764) @@ -41,6 +41,9 @@ %{_mandir}/man1/* %changelog +* Mon Sep 13 2004 tsintegrate 2.10-1ok +- current (2.10-1ok) integrated as 2.10-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa From svn at tinysofa.org Mon Sep 13 11:56:37 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:56:37 +1000 (EST) Subject: [tinysofa-svn] r4765 - contrib/1.1/zoo Message-ID: <20040913115637.13D264E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:56:36 +1000 (Mon, 13 Sep 2004) New Revision: 4765 Removed: contrib/1.1/zoo/pristine/ Log: zoo: * removing pristine (2.10-1ok) From svn at tinysofa.org Mon Sep 13 11:56:42 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:56:42 +1000 (EST) Subject: [tinysofa-svn] r4766 - in contrib/1.1/zoo: . pristine Message-ID: <20040913115642.A83504E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:56:42 +1000 (Mon, 13 Sep 2004) New Revision: 4766 Added: contrib/1.1/zoo/pristine/ contrib/1.1/zoo/pristine/current/ Log: zoo: * retarget pristine (2.10-1ok) to releases/2.10/1ok Copied: contrib/1.1/zoo/pristine (from rev 4556, contrib/1.1/zoo/releases/2.10/1ok) Copied: contrib/1.1/zoo/pristine/current (from rev 4764, contrib/1.1/zoo/releases/2.10/1ok/current) From svn at tinysofa.org Mon Sep 13 11:49:59 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:49:59 +1000 (EST) Subject: [tinysofa-svn] r4717 - contrib/1.1/sysklogd-conf-central Message-ID: <20040913114959.6D1BE4E873C@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:49:59 +1000 (Mon, 13 Sep 2004) New Revision: 4717 Removed: contrib/1.1/sysklogd-conf-central/pristine/ Log: sysklogd-conf-central: * removing pristine (1.4.1-5bg) From svn at tinysofa.org Mon Sep 13 11:49:54 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:49:54 +1000 (EST) Subject: [tinysofa-svn] r4716 - in contrib/1.1/sysklogd-conf-central: current/specs releases/1.4.1/5bg releases/1.4.1/5bg/current/specs Message-ID: <20040913114954.56BCF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:49:54 +1000 (Mon, 13 Sep 2004) New Revision: 4716 Added: contrib/1.1/sysklogd-conf-central/releases/1.4.1/5bg/current/ Modified: contrib/1.1/sysklogd-conf-central/current/specs/sysklogd-conf-central.spec contrib/1.1/sysklogd-conf-central/releases/1.4.1/5bg/current/specs/sysklogd-conf-central.spec Log: sysklogd-conf-central: * integrate current (1.4.1-5bg) as releases/1.4.1/5bg Modified: contrib/1.1/sysklogd-conf-central/current/specs/sysklogd-conf-central.spec =================================================================== --- contrib/1.1/sysklogd-conf-central/current/specs/sysklogd-conf-central.spec 2004-09-13 11:49:41 UTC (rev 4715) +++ contrib/1.1/sysklogd-conf-central/current/specs/sysklogd-conf-central.spec 2004-09-13 11:49:54 UTC (rev 4716) @@ -65,6 +65,9 @@ # Therefore, they are not listed here. %changelog +* Mon Sep 13 2004 tsintegrate 1.4.1-5bg +- current (1.4.1-5bg) integrated as 1.4.1-5bg + * Mon Jun 21 2004 Goetz Bock 1.4.1-4bg - take two on fixing the postinstall script Copied: contrib/1.1/sysklogd-conf-central/releases/1.4.1/5bg/current (from rev 4556, contrib/1.1/sysklogd-conf-central/current) Modified: contrib/1.1/sysklogd-conf-central/releases/1.4.1/5bg/current/specs/sysklogd-conf-central.spec =================================================================== --- contrib/1.1/sysklogd-conf-central/current/specs/sysklogd-conf-central.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/sysklogd-conf-central/releases/1.4.1/5bg/current/specs/sysklogd-conf-central.spec 2004-09-13 11:49:54 UTC (rev 4716) @@ -65,6 +65,9 @@ # Therefore, they are not listed here. %changelog +* Mon Sep 13 2004 tsintegrate 1.4.1-5bg +- current (1.4.1-5bg) integrated as 1.4.1-5bg + * Mon Jun 21 2004 Goetz Bock 1.4.1-4bg - take two on fixing the postinstall script From svn at tinysofa.org Mon Sep 13 11:50:06 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:50:06 +1000 (EST) Subject: [tinysofa-svn] r4718 - in contrib/1.1/sysklogd-conf-central: . pristine Message-ID: <20040913115006.0C5794E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:50:05 +1000 (Mon, 13 Sep 2004) New Revision: 4718 Added: contrib/1.1/sysklogd-conf-central/pristine/ contrib/1.1/sysklogd-conf-central/pristine/current/ Log: sysklogd-conf-central: * retarget pristine (1.4.1-5bg) to releases/1.4.1/5bg Copied: contrib/1.1/sysklogd-conf-central/pristine (from rev 4556, contrib/1.1/sysklogd-conf-central/releases/1.4.1/5bg) Copied: contrib/1.1/sysklogd-conf-central/pristine/current (from rev 4716, contrib/1.1/sysklogd-conf-central/releases/1.4.1/5bg/current) From svn at tinysofa.org Mon Sep 13 11:50:18 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:50:18 +1000 (EST) Subject: [tinysofa-svn] r4719 - in contrib/1.1/tcl: current/specs releases/8.4.6 releases/8.4.6/5jh/specs Message-ID: <20040913115018.AB20A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:50:18 +1000 (Mon, 13 Sep 2004) New Revision: 4719 Added: contrib/1.1/tcl/releases/8.4.6/5jh/ Modified: contrib/1.1/tcl/current/specs/tcl.spec contrib/1.1/tcl/releases/8.4.6/5jh/specs/tcl.spec Log: tcl: * integrate current (8.4.6-5jh) as releases/8.4.6/5jh Modified: contrib/1.1/tcl/current/specs/tcl.spec =================================================================== --- contrib/1.1/tcl/current/specs/tcl.spec 2004-09-13 11:50:05 UTC (rev 4718) +++ contrib/1.1/tcl/current/specs/tcl.spec 2004-09-13 11:50:18 UTC (rev 4719) @@ -145,6 +145,9 @@ %doc html/* %changelog +* Mon Sep 13 2004 tsintegrate 8.4.6-5jh +- current (8.4.6-5jh) integrated as 8.4.6-5jh + * Thu May 13 2004 Jens Petersen - 8.4.6-1 - update to 8.4.6 Copied: contrib/1.1/tcl/releases/8.4.6/5jh (from rev 4556, contrib/1.1/tcl/current) Modified: contrib/1.1/tcl/releases/8.4.6/5jh/specs/tcl.spec =================================================================== --- contrib/1.1/tcl/current/specs/tcl.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/tcl/releases/8.4.6/5jh/specs/tcl.spec 2004-09-13 11:50:18 UTC (rev 4719) @@ -145,6 +145,9 @@ %doc html/* %changelog +* Mon Sep 13 2004 tsintegrate 8.4.6-5jh +- current (8.4.6-5jh) integrated as 8.4.6-5jh + * Thu May 13 2004 Jens Petersen - 8.4.6-1 - update to 8.4.6 From svn at tinysofa.org Mon Sep 13 11:50:23 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:50:23 +1000 (EST) Subject: [tinysofa-svn] r4720 - contrib/1.1/tcl Message-ID: <20040913115023.08B584E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:50:22 +1000 (Mon, 13 Sep 2004) New Revision: 4720 Removed: contrib/1.1/tcl/pristine/ Log: tcl: * removing pristine (8.4.6-5jh) From svn at tinysofa.org Mon Sep 13 11:50:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:50:27 +1000 (EST) Subject: [tinysofa-svn] r4721 - contrib/1.1/tcl Message-ID: <20040913115027.AECFF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:50:27 +1000 (Mon, 13 Sep 2004) New Revision: 4721 Added: contrib/1.1/tcl/pristine/ Log: tcl: * retarget pristine (8.4.6-5jh) to releases/8.4.6/5jh Copied: contrib/1.1/tcl/pristine (from rev 4719, contrib/1.1/tcl/releases/8.4.6/5jh) From svn at tinysofa.org Mon Sep 13 11:50:40 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:50:40 +1000 (EST) Subject: [tinysofa-svn] r4722 - in contrib/1.1/tinysofa-utils: current/specs releases/2.0 releases/2.0/5jh/specs Message-ID: <20040913115040.7528D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:50:40 +1000 (Mon, 13 Sep 2004) New Revision: 4722 Added: contrib/1.1/tinysofa-utils/releases/2.0/5jh/ Modified: contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec contrib/1.1/tinysofa-utils/releases/2.0/5jh/specs/tinysofa-utils.spec Log: tinysofa-utils: * integrate current (2.0-5jh) as releases/2.0/5jh Modified: contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec =================================================================== --- contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec 2004-09-13 11:50:27 UTC (rev 4721) +++ contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec 2004-09-13 11:50:40 UTC (rev 4722) @@ -46,6 +46,9 @@ /usr/share/tinysofa-utils/tsrelease %changelog +* Mon Sep 13 2004 tsintegrate 2.0-5jh +- current (2.0-5jh) integrated as 2.0-5jh + * Mon Jun 28 2004 Jaakko Heinonen 2.0.5jh - remove /sbin/restart_maybe Copied: contrib/1.1/tinysofa-utils/releases/2.0/5jh (from rev 4556, contrib/1.1/tinysofa-utils/current) Modified: contrib/1.1/tinysofa-utils/releases/2.0/5jh/specs/tinysofa-utils.spec =================================================================== --- contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/tinysofa-utils/releases/2.0/5jh/specs/tinysofa-utils.spec 2004-09-13 11:50:40 UTC (rev 4722) @@ -46,6 +46,9 @@ /usr/share/tinysofa-utils/tsrelease %changelog +* Mon Sep 13 2004 tsintegrate 2.0-5jh +- current (2.0-5jh) integrated as 2.0-5jh + * Mon Jun 28 2004 Jaakko Heinonen 2.0.5jh - remove /sbin/restart_maybe From svn at tinysofa.org Mon Sep 13 11:54:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:54:28 +1000 (EST) Subject: [tinysofa-svn] r4753 - contrib/1.1/xfsprogs Message-ID: <20040913115428.006B04E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:54:28 +1000 (Mon, 13 Sep 2004) New Revision: 4753 Removed: contrib/1.1/xfsprogs/pristine/ Log: xfsprogs: * removing pristine (2.6.13-2jh) From svn at tinysofa.org Mon Sep 13 11:54:33 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:54:33 +1000 (EST) Subject: [tinysofa-svn] r4754 - contrib/1.1/xfsprogs Message-ID: <20040913115433.8D02B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:54:33 +1000 (Mon, 13 Sep 2004) New Revision: 4754 Added: contrib/1.1/xfsprogs/pristine/ Log: xfsprogs: * retarget pristine (2.6.13-2jh) to releases/2.6.13/2jh Copied: contrib/1.1/xfsprogs/pristine (from rev 4752, contrib/1.1/xfsprogs/releases/2.6.13/2jh) From svn at tinysofa.org Mon Sep 13 11:55:04 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:55:04 +1000 (EST) Subject: [tinysofa-svn] r4755 - in contrib/1.1/xorg-x11: current/specs releases/6.7.0 releases/6.7.0/8jh/specs Message-ID: <20040913115504.6266D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:55:03 +1000 (Mon, 13 Sep 2004) New Revision: 4755 Added: contrib/1.1/xorg-x11/releases/6.7.0/8jh/ Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec contrib/1.1/xorg-x11/releases/6.7.0/8jh/specs/xorg-x11.spec Log: xorg-x11: * integrate current (6.7.0-8jh) as releases/6.7.0/8jh Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec =================================================================== --- contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-13 11:54:33 UTC (rev 4754) +++ contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-13 11:55:03 UTC (rev 4755) @@ -3283,6 +3283,9 @@ %clean_buildroot %changelog +* Mon Sep 13 2004 tsintegrate 6.7.0-8jh +- current (6.7.0-8jh) integrated as 6.7.0-8jh + * Thu Sep 9 2004 Jaakko Heinonen 6.7.0-8jh - install xdm init script Copied: contrib/1.1/xorg-x11/releases/6.7.0/8jh (from rev 4556, contrib/1.1/xorg-x11/current) Modified: contrib/1.1/xorg-x11/releases/6.7.0/8jh/specs/xorg-x11.spec =================================================================== --- contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/xorg-x11/releases/6.7.0/8jh/specs/xorg-x11.spec 2004-09-13 11:55:03 UTC (rev 4755) @@ -3283,6 +3283,9 @@ %clean_buildroot %changelog +* Mon Sep 13 2004 tsintegrate 6.7.0-8jh +- current (6.7.0-8jh) integrated as 6.7.0-8jh + * Thu Sep 9 2004 Jaakko Heinonen 6.7.0-8jh - install xdm init script From svn at tinysofa.org Mon Sep 13 11:55:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:55:13 +1000 (EST) Subject: [tinysofa-svn] r4756 - contrib/1.1/xorg-x11 Message-ID: <20040913115513.BE0F94E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:55:13 +1000 (Mon, 13 Sep 2004) New Revision: 4756 Removed: contrib/1.1/xorg-x11/pristine/ Log: xorg-x11: * removing pristine (6.7.0-8jh) From svn at tinysofa.org Mon Sep 13 11:50:45 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:50:45 +1000 (EST) Subject: [tinysofa-svn] r4723 - contrib/1.1/tinysofa-utils Message-ID: <20040913115045.16DF14E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:50:44 +1000 (Mon, 13 Sep 2004) New Revision: 4723 Removed: contrib/1.1/tinysofa-utils/pristine/ Log: tinysofa-utils: * removing pristine (2.0-5jh) From svn at tinysofa.org Mon Sep 13 11:50:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:50:50 +1000 (EST) Subject: [tinysofa-svn] r4724 - contrib/1.1/tinysofa-utils Message-ID: <20040913115050.A2CE94E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:50:50 +1000 (Mon, 13 Sep 2004) New Revision: 4724 Added: contrib/1.1/tinysofa-utils/pristine/ Log: tinysofa-utils: * retarget pristine (2.0-5jh) to releases/2.0/5jh Copied: contrib/1.1/tinysofa-utils/pristine (from rev 4722, contrib/1.1/tinysofa-utils/releases/2.0/5jh) From svn at tinysofa.org Mon Sep 13 11:51:05 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:51:05 +1000 (EST) Subject: [tinysofa-svn] r4725 - in contrib/1.1/unace: current/specs releases/2.5/1ok releases/2.5/1ok/current/specs Message-ID: <20040913115105.4606A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:51:05 +1000 (Mon, 13 Sep 2004) New Revision: 4725 Added: contrib/1.1/unace/releases/2.5/1ok/current/ Modified: contrib/1.1/unace/current/specs/unace.spec contrib/1.1/unace/releases/2.5/1ok/current/specs/unace.spec Log: unace: * integrate current (2.5-1ok) as releases/2.5/1ok Modified: contrib/1.1/unace/current/specs/unace.spec =================================================================== --- contrib/1.1/unace/current/specs/unace.spec 2004-09-13 11:50:50 UTC (rev 4724) +++ contrib/1.1/unace/current/specs/unace.spec 2004-09-13 11:51:05 UTC (rev 4725) @@ -1,7 +1,7 @@ Name: unace URL: http://www.winace.com Version: 2.5 -Release: 1ok +Release: 1ok Summary: ACE archive extractor License: distributable Group: contrib @@ -46,5 +46,8 @@ /usr/bin/unace %changelog +* Mon Sep 13 2004 tsintegrate 2.5-1ok +- current (2.5-1ok) integrated as 2.5-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa Copied: contrib/1.1/unace/releases/2.5/1ok/current (from rev 4556, contrib/1.1/unace/current) Modified: contrib/1.1/unace/releases/2.5/1ok/current/specs/unace.spec =================================================================== --- contrib/1.1/unace/current/specs/unace.spec 2004-09-13 11:02:16 UTC (rev 4556) +++ contrib/1.1/unace/releases/2.5/1ok/current/specs/unace.spec 2004-09-13 11:51:05 UTC (rev 4725) @@ -1,7 +1,7 @@ Name: unace URL: http://www.winace.com Version: 2.5 -Release: 1ok +Release: 1ok Summary: ACE archive extractor License: distributable Group: contrib @@ -46,5 +46,8 @@ /usr/bin/unace %changelog +* Mon Sep 13 2004 tsintegrate 2.5-1ok +- current (2.5-1ok) integrated as 2.5-1ok + * Mon May 3 2004 Omar Kilani - Rebuilt for tinysofa From svn at tinysofa.org Mon Sep 13 11:51:09 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:51:09 +1000 (EST) Subject: [tinysofa-svn] r4726 - contrib/1.1/unace Message-ID: <20040913115109.C76A14E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:51:09 +1000 (Mon, 13 Sep 2004) New Revision: 4726 Removed: contrib/1.1/unace/pristine/ Log: unace: * removing pristine (2.5-1ok) From svn at tinysofa.org Mon Sep 13 11:51:15 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 21:51:15 +1000 (EST) Subject: [tinysofa-svn] r4727 - in contrib/1.1/unace: . pristine Message-ID: <20040913115115.702764E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 21:51:15 +1000 (Mon, 13 Sep 2004) New Revision: 4727 Added: contrib/1.1/unace/pristine/ contrib/1.1/unace/pristine/current/ Log: unace: * retarget pristine (2.5-1ok) to releases/2.5/1ok Copied: contrib/1.1/unace/pristine (from rev 4556, contrib/1.1/unace/releases/2.5/1ok) Copied: contrib/1.1/unace/pristine/current (from rev 4725, contrib/1.1/unace/releases/2.5/1ok/current) From svn at tinysofa.org Mon Sep 13 13:06:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 23:06:41 +1000 (EST) Subject: [tinysofa-svn] r4767 - contrib/1.1 Message-ID: <20040913130641.DD8284E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 23:06:41 +1000 (Mon, 13 Sep 2004) New Revision: 4767 Removed: contrib/1.1/freetype/ Log: - remove freetype (now in base) From svn at tinysofa.org Mon Sep 13 13:21:09 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 13 Sep 2004 23:21:09 +1000 (EST) Subject: [tinysofa-svn] r4768 - in tinysofa/releases/1.1/cdrtools/current: sources specs Message-ID: <20040913132109.576364E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-13 23:21:09 +1000 (Mon, 13 Sep 2004) New Revision: 4768 Added: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a38.tar.bz2 Removed: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a38-pre.tar.bz2 Modified: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.0-O_EXCL.patch tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a27-silly-warnings.patch tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a27-type.patch tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a32-scan.patch tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec Log: - update to 2.01a38 Modified: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.0-O_EXCL.patch =================================================================== --- tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.0-O_EXCL.patch 2004-09-13 13:06:41 UTC (rev 4767) +++ tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.0-O_EXCL.patch 2004-09-13 13:21:09 UTC (rev 4768) @@ -1,6 +1,107 @@ ---- cdrtools-2.01/libscg/scsi-linux-sg.c.excl 2004-03-08 00:43:39.000000000 +0100 -+++ cdrtools-2.01/libscg/scsi-linux-sg.c 2004-03-11 17:42:02.413779328 +0100 -@@ -94,7 +94,7 @@ +--- cdrtools-2.01/libscg/oexcl.c.excl 2004-08-27 16:10:38.739395128 +0200 ++++ cdrtools-2.01/libscg/oexcl.c 2004-08-27 16:25:33.128427328 +0200 +@@ -0,0 +1,29 @@ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++int openexcl(const char *device, int mode) ++{ ++ int f, i; ++ ++ f = open(device, mode | O_EXCL); ++ ++ if (f < 0) { ++ f = open(device, mode); ++ ++ if (f >= 0) { ++ close(f); ++ f = -1; ++ for (i = 0; (i < 10) && (f == -1); i++) { ++ fprintf(stderr, "Error trying to open %s exclusively ... retrying in 1 second.\n", device); ++ usleep(1000000 + 100000.0 * rand()/(RAND_MAX+1.0)); ++ f = open(device, O_RDONLY | O_NONBLOCK | O_EXCL); ++ } ++ } ++ } ++ ++ return f; ++} +--- cdrtools-2.01/libscg/scsi-linux-ata.c.excl 2004-08-27 16:03:41.594810744 +0200 ++++ cdrtools-2.01/libscg/scsi-linux-ata.c 2004-08-27 16:20:11.351344880 +0200 +@@ -112,6 +112,7 @@ + LOCAL void sglog __PR((const char *fmt, ...)); + + #include ++#include "oexcl.h" + + /* VARARGS1 */ + #ifdef PROTOTYPES +@@ -267,7 +268,7 @@ + starget, + slun; + +- f = open(device, O_RDONLY | O_NONBLOCK); ++ f = openexcl(device, O_RDONLY | O_NONBLOCK); + + if (f < 0) { + if (scgp->errstr) +@@ -305,7 +306,7 @@ + if (DEVFS) { + for (i = 0; ; i++) { + sprintf(device, "/dev/cdroms/cdrom%i", i); +- if ((f = open(device, O_RDONLY | O_NONBLOCK)) < 0) { ++ if ((f = openexcl(device, O_RDONLY | O_NONBLOCK)) < 0) { + if (errno != ENOENT && errno != ENXIO && errno != ENODEV && errno != EACCES) { + if (scgp->debug > 4) { + js_fprintf((FILE *) scgp->errfile, +@@ -354,7 +355,7 @@ + /* for /dev/sr0 - /dev/sr? */ + for (i = 0; ; i++) { + sprintf(device, "/dev/sr%i", i); +- if ((f = open(device, O_RDONLY | O_NONBLOCK)) < 0) { ++ if ((f = openexcl(device, O_RDONLY | O_NONBLOCK)) < 0) { + if (errno != ENOENT && errno != ENXIO && errno != ENODEV && errno != EACCES) { + if (scgp->debug > 4) { + js_fprintf((FILE *) scgp->errfile, +@@ -377,7 +378,7 @@ + /* for /dev/hda - /dev/hdz */ + for (i = 'a'; i <= 'z'; i++) { + sprintf(device, "/dev/hd%c", i); +- if ((f = open(device, O_RDONLY | O_NONBLOCK)) < 0) { ++ if ((f = openexcl(device, O_RDONLY | O_NONBLOCK)) < 0) { + if (errno != ENOENT && errno != ENXIO && errno != EACCES) { + if (scgp->debug > 4) { + js_fprintf((FILE *) scgp->errfile, +--- cdrtools-2.01/libscg/oexcl.h.excl 2004-08-27 16:10:41.003051000 +0200 ++++ cdrtools-2.01/libscg/oexcl.h 2004-08-27 16:11:34.268953352 +0200 +@@ -0,0 +1,5 @@ ++#ifndef OEXCL_H ++ ++extern int openexcl(const char *device, int mode); ++ ++#endif +--- cdrtools-2.01/libscg/Targets.excl 2004-08-27 16:23:39.589687840 +0200 ++++ cdrtools-2.01/libscg/Targets 2004-08-27 16:23:52.641703632 +0200 +@@ -1,3 +1,3 @@ + CFILES= scsitransp.c scsihack.c scsiopen.c scgsettarget.c \ +- scsierrs.c scgtimes.c scsihelp.c \ ++ scsierrs.c scgtimes.c scsihelp.c oexcl.c \ + rdummy.c +--- cdrtools-2.01/libscg/scsi-linux-sg.c.excl 2004-05-20 15:42:12.000000000 +0200 ++++ cdrtools-2.01/libscg/scsi-linux-sg.c 2004-08-27 16:21:38.343120120 +0200 +@@ -79,6 +79,7 @@ + #endif + + #include "scsi/sg.h" ++#include "oexcl.h" + + #undef sense /* conflict in struct cdrom_generic_command */ + #include +@@ -94,7 +95,7 @@ * Choose your name instead of "schily" and make clear that the version * string is related to a modified source. */ @@ -9,7 +110,7 @@ #ifndef SCSI_IOCTL_GET_BUS_NUMBER #define SCSI_IOCTL_GET_BUS_NUMBER 0x5386 -@@ -155,6 +155,7 @@ +@@ -155,6 +156,7 @@ struct scg_local { int scgfile; /* Used for SG_GET_BUFSIZE ioctl()*/ short scgfiles[MAX_SCG][MAX_TGT][MAX_LUN]; @@ -17,7 +118,7 @@ short buscookies[MAX_SCG]; int pgbus; int pack_id; /* Should be a random number */ -@@ -247,7 +248,7 @@ +@@ -247,7 +249,7 @@ * return "schily" for the SCG_AUTHOR request. */ case SCG_AUTHOR: @@ -26,7 +127,7 @@ case SCG_SCCS_ID: return (__sccsid); case SCG_KVERSION: -@@ -358,8 +359,10 @@ +@@ -371,8 +373,10 @@ for (b = 0; b < MAX_SCG; b++) { scglocal(scgp)->buscookies[b] = (short)-1; for (t = 0; t < MAX_TGT; t++) { @@ -38,7 +139,7 @@ } } } -@@ -423,7 +426,7 @@ +@@ -443,7 +447,7 @@ if (scgp->errstr) js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, "Cannot open '/dev/sg*'"); @@ -47,7 +148,7 @@ if (scgp->errstr) js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, "Cannot open '%s'", devname); -@@ -452,7 +455,7 @@ +@@ -472,7 +476,7 @@ if (scgp->errstr) js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, "Cannot open '/dev/sg*'"); @@ -56,7 +157,7 @@ if (scgp->errstr) js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, "Cannot open '%s'", devname); -@@ -564,9 +567,14 @@ +@@ -593,9 +597,14 @@ if (f >= 0) close(f); scglocal(scgp)->scgfiles[b][t][l] = (short)-1; @@ -71,7 +172,7 @@ if (scglocal(scgp)->xbuf != NULL) { free(scglocal(scgp)->xbuf); scglocal(scgp)->xbufsize = 0L; -@@ -597,6 +605,103 @@ +@@ -626,6 +635,103 @@ fcntl(f, F_SETFL, n); } @@ -175,7 +276,7 @@ LOCAL BOOL sg_setup(scgp, f, busno, tgt, tlun, ataidx) SCSI *scgp; -@@ -613,6 +718,7 @@ +@@ -642,6 +748,7 @@ int Target; int Lun; BOOL onetarget = FALSE; @@ -183,7 +284,7 @@ #ifdef SG_GET_VERSION_NUM if (scglocal(scgp)->drvers < 0) { -@@ -655,12 +761,34 @@ +@@ -684,12 +791,29 @@ if (onetarget) { if (Bus == busno && Target == tgt && Lun == tlun) { @@ -193,12 +294,7 @@ + int f=-1; + int i; + /* fprintf(stderr, "%s:%d -----###### Locking %s\n", __FUNCTION__, __LINE__, cdname); */ -+ f = open(cdname, O_RDONLY|O_NONBLOCK|O_EXCL); -+ for (i = 0; (i < 10) && (f == -1); i++) { -+ fprintf(stderr, "Error trying to open %s exclusively ... retrying in 1 second.\n", cdname); -+ usleep(1000000 + 100000.0 * rand()/(RAND_MAX+1.0)); -+ f = open(cdname, O_RDONLY|O_NONBLOCK|O_EXCL); -+ } ++ f = openexcl(cdname, O_RDONLY|O_NONBLOCK); + if (f == -1) { + fprintf(stderr, "bailing out..\n");exit(-1); + }; @@ -218,3 +314,40 @@ } } else { /* +--- cdrtools-2.01/libscg/scsi-linux-pg.c.excl 2004-08-27 16:03:36.244624096 +0200 ++++ cdrtools-2.01/libscg/scsi-linux-pg.c 2004-08-27 16:21:51.800074352 +0200 +@@ -40,6 +40,7 @@ + #else + #include "pg.h" /* Use local version as Linux sometimes doesn't have */ + #endif /* installed. Now libscg always supports PP SCSI */ ++#include "oexcl.h" + + /* + * Warning: you may change this source, but if you do that +@@ -207,7 +208,7 @@ + return (0); + #endif + js_snprintf(devname, sizeof (devname), "/dev/pg%d", tgt); +- f = open(devname, O_RDWR | O_NONBLOCK); ++ f = openexcl(devname, O_RDWR | O_NONBLOCK); + if (f < 0) { + if (scgp->errstr) + js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, +@@ -220,7 +221,7 @@ + tlun = 0; + for (tgt = 0; tgt < MAX_TGT; tgt++) { + js_snprintf(devname, sizeof (devname), "/dev/pg%d", tgt); +- f = open(devname, O_RDWR | O_NONBLOCK); ++ f = openexcl(devname, O_RDWR | O_NONBLOCK); + if (f < 0) { + /* + * Set up error string but let us clear it later +@@ -250,7 +251,7 @@ + + if (tlun < 0) + return (0); +- f = open(device, O_RDWR | O_NONBLOCK); ++ f = openexcl(device, O_RDWR | O_NONBLOCK); + /* if (f < 0 && errno == ENOENT) {*/ + if (f < 0) { + if (scgp->errstr) Modified: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a27-silly-warnings.patch =================================================================== --- tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a27-silly-warnings.patch 2004-09-13 13:06:41 UTC (rev 4767) +++ tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a27-silly-warnings.patch 2004-09-13 13:21:09 UTC (rev 4768) @@ -1,6 +1,18 @@ ---- cdrtools-2.01/libscg/scsi-linux-sg.c.silly 2004-06-24 17:07:37.518466848 +0200 -+++ cdrtools-2.01/libscg/scsi-linux-sg.c 2004-06-24 17:17:56.097428552 +0200 -@@ -316,6 +316,10 @@ +--- cdrtools-2.01/cdrecord/cdrecord.c.silly 2004-09-08 11:37:47.652041558 +0200 ++++ cdrtools-2.01/cdrecord/cdrecord.c 2004-09-08 11:38:06.933079736 +0200 +@@ -410,8 +410,8 @@ + * companies prefer a model with many proprietary differing programs + * instead of cooperating with the program authors. + */ +- linuxcheck(); /* For version 1.295 of cdrecord.c */ + ++ /* linuxcheck(); */ /* For version 1.295 of cdrecord.c */ + if (flags & F_VERSION) + exit(0); + /* +--- cdrtools-2.01/libscg/scsi-linux-sg.c.silly 2004-05-20 15:42:12.000000000 +0200 ++++ cdrtools-2.01/libscg/scsi-linux-sg.c 2004-09-08 11:37:47.670038792 +0200 +@@ -315,6 +315,10 @@ if (device != NULL && *device != '\0') { #ifdef USE_ATA if (strncmp(device, "ATAPI", 5) == 0) { @@ -11,7 +23,7 @@ scgp->ops = &ata_ops; return (SCGO_OPEN(scgp, device)); } -@@ -337,18 +341,6 @@ +@@ -336,18 +340,6 @@ */ use_ata = TRUE; device = NULL; @@ -30,7 +42,7 @@ } } -@@ -500,20 +492,7 @@ +@@ -497,20 +489,7 @@ if (b < 0 || b > 25) b = -1; } Modified: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a27-type.patch =================================================================== --- tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a27-type.patch 2004-09-13 13:06:41 UTC (rev 4767) +++ tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a27-type.patch 2004-09-13 13:21:09 UTC (rev 4768) @@ -1,16 +1,25 @@ ---- cdda2wav/cdda2wav.c -+++ cdda2wav/cdda2wav.c -@@ -2419,7 +2419,7 @@ - global.shmsize = HEADER_SIZE + ENTRY_SIZE_PAGE_AL * global.buffers; - - #if defined (HAVE_FORK_AND_SHAREDMEM) -- he_fill_buffer = request_shm_sem(global.shmsize, (unsigned char **)&he_fill_buffer); +--- cdrtools-2.01/cdda2wav/cdda2wav.c.type 2004-08-24 17:06:14.000000000 +0200 ++++ cdrtools-2.01/cdda2wav/cdda2wav.c 2004-09-03 12:07:03.069681949 +0200 +@@ -2530,7 +2530,7 @@ + * which does not apply to this code. (void *) introduces a compatible + * intermediate type in the cast list. + */ +- he_fill_buffer = request_shm_sem(global.shmsize, (unsigned char **)(void *)&he_fill_buffer); + he_fill_buffer = request_shm_sem(global.shmsize, &he_fill_buffer); if (he_fill_buffer == NULL) { fprintf( stderr, "no shared memory available!\n"); exit(SHMMEM_ERROR); ---- cdda2wav/semshm.c -+++ cdda2wav/semshm.c +--- cdrtools-2.01/cdda2wav/semshm.h.type 2003-08-29 23:23:16.000000000 +0200 ++++ cdrtools-2.01/cdda2wav/semshm.h 2004-09-03 12:06:05.584117250 +0200 +@@ -27,5 +27,5 @@ + int semrequest __PR((int semid, int semnum)); + int semrelease __PR((int semid, int semnum, int amount)); + int flush_buffers __PR((void)); +-void * request_shm_sem __PR((unsigned amount_of_sh_mem, unsigned char **pointer)); ++void * request_shm_sem __PR((unsigned amount_of_sh_mem, void *pointer_ref)); + +--- cdrtools-2.01/cdda2wav/semshm.c.type 2003-08-29 23:23:16.000000000 +0200 ++++ cdrtools-2.01/cdda2wav/semshm.c 2004-09-03 12:06:05.583117401 +0200 @@ -459,10 +459,11 @@ } #endif @@ -25,13 +34,3 @@ #if defined(HAVE_SEMGET) && defined(USE_SEMAPHORES) /* install semaphores for double buffer usage */ sem_id = seminstall(IPC_PRIVATE,2); ---- cdda2wav/semshm.h -+++ cdda2wav/semshm.h -@@ -27,5 +27,5 @@ - int semrequest __PR((int semid, int semnum)); - int semrelease __PR((int semid, int semnum, int amount)); - int flush_buffers __PR((void)); --void * request_shm_sem __PR((unsigned amount_of_sh_mem, unsigned char **pointer)); -+void * request_shm_sem __PR((unsigned amount_of_sh_mem, void *pointer_ref)); - - Modified: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a32-scan.patch =================================================================== --- tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a32-scan.patch 2004-09-13 13:06:41 UTC (rev 4767) +++ tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a32-scan.patch 2004-09-13 13:21:09 UTC (rev 4768) @@ -1,11 +1,402 @@ ---- cdrtools-2.01/libscg/scsi-linux-sg.c.cont 2004-06-24 17:28:00.991470680 +0200 -+++ cdrtools-2.01/libscg/scsi-linux-sg.c 2004-06-24 17:28:54.394352208 +0200 -@@ -398,7 +398,7 @@ - if (scgp->errstr) - js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, - "Cannot open '/dev/hd*'"); +--- cdrtools-2.01/libscg/scsi-linux-sg.c.scan 2004-09-08 12:25:24.569523061 +0200 ++++ cdrtools-2.01/libscg/scsi-linux-sg.c 2004-09-08 12:25:24.591519853 +0200 +@@ -287,6 +287,8 @@ + return (0); + } + ++#include ++ + LOCAL int + scgo_open(scgp, device) + SCSI *scgp; +@@ -301,8 +303,9 @@ + register int t; + register int l; + register int nopen = 0; +- char devname[64]; +- BOOL use_ata = FALSE; ++ char *devname; ++ BOOL use_ata = FALSE; ++ glob_t globbuf; + + if (busno >= MAX_SCG || tgt >= MAX_TGT || tlun >= MAX_LUN) { + errno = EINVAL; +@@ -383,100 +386,128 @@ + * look silly but there may be users that did boot from a SCSI hdd + * and connected 4 CD/DVD writers to both IDE cables in the PC. + */ +- if (use_ata) for (i = 0; i <= 25; i++) { +- js_snprintf(devname, sizeof (devname), "/dev/hd%c", i+'a'); +- /* O_NONBLOCK is dangerous */ +- f = open(devname, O_RDWR | O_NONBLOCK); +- if (f < 0) { +- /* +- * Set up error string but let us clear it later +- * if at least one open succeeded. +- */ +- if (scgp->errstr) +- js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, +- "Cannot open '/dev/hd*'"); - if (errno != ENOENT && errno != ENXIO && errno != ENODEV) { -+ if (errno != ENOENT && errno != ENXIO && errno != ENODEV && errno != EACCES) { ++ if (use_ata) { ++ glob("/dev/hd[a-z]", ++ GLOB_NOSORT, ++ NULL, &globbuf); ++ ++ for (i = 0; globbuf.gl_pathv && globbuf.gl_pathv[i] != NULL ; i++) { ++ devname = globbuf.gl_pathv[i]; ++ f = open(devname, O_RDWR | O_NONBLOCK); ++ if (f < 0) { ++ /* ++ * Set up error string but let us clear it later ++ * if at least one open succeeded. ++ */ if (scgp->errstr) js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, - "Cannot open '%s'", devname); +- "Cannot open '%s'", devname); +- return (0); +- } +- } else { +- int iparm; +- +- if (ioctl(f, SG_GET_TIMEOUT, &iparm) < 0) { +- if (scgp->errstr) +- js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, +- "SCSI unsupported with '/dev/hd*'"); +- close(f); +- continue; ++ "Cannot open '/dev/hd*'"); ++ if (errno != ENOENT && errno != ENXIO && errno != ENODEV && errno != EACCES) { ++ if (scgp->errstr) ++ js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, ++ "Cannot open '%s'", devname); ++ globfree(&globbuf); ++ return (0); ++ } ++ } else { ++ int iparm; ++ ++ if (ioctl(f, SG_GET_TIMEOUT, &iparm) < 0) { ++ if (scgp->errstr) ++ js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, ++ "SCSI unsupported with '/dev/hd*'"); ++ close(f); ++ continue; ++ } ++ sg_clearnblock(f); /* Be very proper about this */ ++ if (sg_setup(scgp, f, busno, tgt, tlun, devname[7]-'a')) { ++ globfree(&globbuf); ++ return (++nopen); ++ } ++ if (busno < 0 && tgt < 0 && tlun < 0) ++ nopen++; + } +- sg_clearnblock(f); /* Be very proper about this */ +- if (sg_setup(scgp, f, busno, tgt, tlun, i)) +- return (++nopen); +- if (busno < 0 && tgt < 0 && tlun < 0) +- nopen++; + } ++ globfree(&globbuf); + } + if (use_ata && nopen == 0) + return (0); + if (nopen > 0 && scgp->errstr) + scgp->errstr[0] = '\0'; + +- if (nopen == 0) for (i = 0; i < 32; i++) { +- js_snprintf(devname, sizeof (devname), "/dev/sg%d", i); +- /* O_NONBLOCK is dangerous */ +- f = open(devname, O_RDWR | O_NONBLOCK); +- if (f < 0) { +- /* +- * Set up error string but let us clear it later +- * if at least one open succeeded. +- */ +- if (scgp->errstr) +- js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, +- "Cannot open '/dev/sg*'"); +- if (errno != ENOENT && errno != ENXIO && errno != ENODEV) { ++ if (nopen == 0) { ++ glob("/dev/sg[0-9]+", ++ GLOB_NOSORT, ++ NULL, &globbuf); ++ ++ for (i = 0; globbuf.gl_pathv && globbuf.gl_pathv[i] != NULL ; i++) { ++ devname = globbuf.gl_pathv[i]; ++ ++ f = open(devname, O_RDWR | O_NONBLOCK); ++ if (f < 0) { ++ /* ++ * Set up error string but let us clear it later ++ * if at least one open succeeded. ++ */ + if (scgp->errstr) + js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, +- "Cannot open '%s'", devname); +- return (0); ++ "Cannot open '/dev/sg*'"); ++ if (errno != ENOENT && errno != ENXIO && errno != ENODEV) { ++ if (scgp->errstr) ++ js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, ++ "Cannot open '%s'", devname); ++ globfree(&globbuf); ++ return (0); ++ } ++ } else { ++ sg_clearnblock(f); /* Be very proper about this */ ++ if (sg_setup(scgp, f, busno, tgt, tlun, -1)) { ++ globfree(&globbuf); ++ return (++nopen); ++ } ++ if (busno < 0 && tgt < 0 && tlun < 0) ++ nopen++; + } +- } else { +- sg_clearnblock(f); /* Be very proper about this */ +- if (sg_setup(scgp, f, busno, tgt, tlun, -1)) +- return (++nopen); +- if (busno < 0 && tgt < 0 && tlun < 0) +- nopen++; + } + } + if (nopen > 0 && scgp->errstr) + scgp->errstr[0] = '\0'; + +- if (nopen == 0) for (i = 0; i <= 25; i++) { +- js_snprintf(devname, sizeof (devname), "/dev/sg%c", i+'a'); +- /* O_NONBLOCK is dangerous */ +- f = open(devname, O_RDWR | O_NONBLOCK); +- if (f < 0) { +- /* +- * Set up error string but let us clear it later +- * if at least one open succeeded. +- */ +- if (scgp->errstr) +- js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, +- "Cannot open '/dev/sg*'"); +- if (errno != ENOENT && errno != ENXIO && errno != ENODEV) { ++ if (nopen == 0) { ++ glob("/dev/sg[a-z]", ++ GLOB_NOSORT, ++ NULL, &globbuf); ++ ++ for (i = 0; globbuf.gl_pathv && globbuf.gl_pathv[i] != NULL ; i++) { ++ devname = globbuf.gl_pathv[i]; ++ ++ f = open(devname, O_RDWR | O_NONBLOCK); ++ if (f < 0) { ++ /* ++ * Set up error string but let us clear it later ++ * if at least one open succeeded. ++ */ + if (scgp->errstr) + js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, +- "Cannot open '%s'", devname); +- return (0); ++ "Cannot open '/dev/sg*'"); ++ if (errno != ENOENT && errno != ENXIO && errno != ENODEV) { ++ if (scgp->errstr) ++ js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE, ++ "Cannot open '%s'", devname); ++ globfree(&globbuf); ++ return (0); ++ } ++ } else { ++ sg_clearnblock(f); /* Be very proper about this */ ++ if (sg_setup(scgp, f, busno, tgt, tlun, -1)) { ++ globfree(&globbuf); ++ return (++nopen); ++ } ++ if (busno < 0 && tgt < 0 && tlun < 0) ++ nopen++; + } +- } else { +- sg_clearnblock(f); /* Be very proper about this */ +- if (sg_setup(scgp, f, busno, tgt, tlun, -1)) +- return (++nopen); +- if (busno < 0 && tgt < 0 && tlun < 0) +- nopen++; + } ++ globfree(&globbuf); + } + if (nopen > 0 && scgp->errstr) + scgp->errstr[0] = '\0'; +--- cdrtools-2.01/libscg/scsi-linux-ata.c.scan 2004-06-12 12:48:12.000000000 +0200 ++++ cdrtools-2.01/libscg/scsi-linux-ata.c 2004-09-08 12:31:02.120460150 +0200 +@@ -267,7 +267,7 @@ + starget, + slun; + +- f = open(device, O_RDONLY | O_NONBLOCK); ++ f = open(device, O_RDWR | O_NONBLOCK); + + if (f < 0) { + if (scgp->errstr) +@@ -283,6 +283,9 @@ + return (nopen); + } + ++#include ++ ++ + LOCAL int + scan_internal(scgp, nopen) + SCSI *scgp; +@@ -293,118 +296,62 @@ + int schilly_bus, + target, + lun; +- char device[128]; ++ char *device; ++ glob_t globbuf; ++ + /* + * try always with devfs + * unfortunatelly the solution with test of existing + * of '/dev/.devfsd' don't work, because it root.root 700 + * and i don't like run suid root + */ +- BOOL DEVFS = TRUE; ++ BOOL DEVFS = FALSE; + +- if (DEVFS) { +- for (i = 0; ; i++) { +- sprintf(device, "/dev/cdroms/cdrom%i", i); +- if ((f = open(device, O_RDONLY | O_NONBLOCK)) < 0) { +- if (errno != ENOENT && errno != ENXIO && errno != ENODEV && errno != EACCES) { +- if (scgp->debug > 4) { +- js_fprintf((FILE *) scgp->errfile, +- "try open(%s) return %i, errno %i, cancel\n", device, f, errno); +- } +- return (-2); +- } else if (errno == ENOENT || errno == ENODEV) { +- if (scgp->debug > 4) { +- js_fprintf((FILE *) scgp->errfile, +- "try open(%s) return %i, errno %i\n", device, f, errno); +- } +- if (0 == i) { +- DEVFS = FALSE; +- if (scgp->debug > 4) { +- js_fprintf((FILE *) scgp->errfile, +- "DEVFS not detected, continuing with old dev\n"); +- } +- } +- break; +- } ++ glob("/dev/cdroms/cdrom*", ++ GLOB_NOSORT, ++ NULL, &globbuf); ++ glob("/dev/hd[a-z]", ++ GLOB_NOSORT|GLOB_APPEND, ++ NULL, &globbuf); ++ glob("/dev/sr*", ++ GLOB_NOSORT|GLOB_APPEND, ++ NULL, &globbuf); ++ ++ for (i = 0; globbuf.gl_pathv && globbuf.gl_pathv[i] != NULL ; i++) { ++ device = globbuf.gl_pathv[i]; ++ if ((f = open(device, O_RDWR | O_NONBLOCK)) < 0) { ++ if (errno != ENOENT && errno != ENXIO && errno != ENODEV && errno != EACCES) { + if (scgp->debug > 4) { +- if (errno == EACCES) { +- js_fprintf((FILE *) scgp->errfile, +- "errno (EACCESS), you don't have the needed rights for %s\n", +- device); +- } + js_fprintf((FILE *) scgp->errfile, +- "try open(%s) return %i, errno %i, trying next cdrom\n", +- device, f, errno); ++ "try open(%s) return %i, errno %i, cancel\n", device, f, errno); + } +- } else { +- if (scgp->debug > 4) { ++ globfree(&globbuf); ++ return (-2); ++ } ++ if (scgp->debug > 4) { ++ if (errno == EACCES) { + js_fprintf((FILE *) scgp->errfile, +- "try open(%s) return %i errno %i calling sg_mapdev(...)\n", +- device, f, errno); +- } +- if (sg_amapdev(scgp, f, device, &schilly_bus, &target, &lun)) { +- (++(*nopen)); +- } else { +- close(f); ++ "errno (EACCESS), you don't have the needed rights for %s\n", ++ device); + } ++ js_fprintf((FILE *) scgp->errfile, ++ "try open(%s) return %i, errno %i, trying next cdrom\n", ++ device, f, errno); + } +- } +- } +- if (!DEVFS) { +- /* for /dev/sr0 - /dev/sr? */ +- for (i = 0; ; i++) { +- sprintf(device, "/dev/sr%i", i); +- if ((f = open(device, O_RDONLY | O_NONBLOCK)) < 0) { +- if (errno != ENOENT && errno != ENXIO && errno != ENODEV && errno != EACCES) { +- if (scgp->debug > 4) { +- js_fprintf((FILE *) scgp->errfile, +- "try open(%s) return %i, errno %i, cancel\n", +- device, f, errno); +- } +- return (-2); +- } else if (errno == ENOENT || errno == ENODEV) { +- break; +- } +- } else { +- if (sg_amapdev(scgp, f, device, &schilly_bus, &target, &lun)) { +- (++(*nopen)); +- } else { +- close(f); +- } ++ } else { ++ if (scgp->debug > 4) { ++ js_fprintf((FILE *) scgp->errfile, ++ "try open(%s) return %i errno %i calling sg_mapdev(...)\n", ++ device, f, errno); + } +- } +- +- /* for /dev/hda - /dev/hdz */ +- for (i = 'a'; i <= 'z'; i++) { +- sprintf(device, "/dev/hd%c", i); +- if ((f = open(device, O_RDONLY | O_NONBLOCK)) < 0) { +- if (errno != ENOENT && errno != ENXIO && errno != EACCES) { +- if (scgp->debug > 4) { +- js_fprintf((FILE *) scgp->errfile, +- "try open(%s) return %i, errno %i, cancel\n", +- device, f, errno); +- } +- return (-2); +- } else if (errno == ENOENT || errno == ENODEV) { +- break; +- } ++ if (sg_amapdev(scgp, f, device, &schilly_bus, &target, &lun)) { ++ (++(*nopen)); + } else { +- /* ugly hack, make better, when you can. Alex */ +- if (0 > ioctl(f, CDROM_DRIVE_STATUS, CDSL_CURRENT)) { +- if (scgp->debug > 4) { +- js_fprintf((FILE *) scgp->errfile, +- "%s is not a cdrom, skipping\n", +- device); +- } +- close(f); +- } else if (sg_amapdev(scgp, f, device, &schilly_bus, &target, &lun)) { +- (++(*nopen)); +- } else { +- close(f); +- } ++ close(f); + } + } + } ++ globfree(&globbuf); + return (0); + } + Deleted: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a38-pre.tar.bz2 =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a38.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a38.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec =================================================================== --- tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-13 13:06:41 UTC (rev 4767) +++ tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-13 13:21:09 UTC (rev 4768) @@ -1,8 +1,8 @@ Summary: A collection of CD/DVD utilities. Name: cdrtools -Version: 2.01.0.a37.99 +Version: 2.01.0.a38 Release: 1jh -%define tarversion 2.01a38-pre +%define tarversion 2.01a38 License: GPL Group: extra URL: http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/cdrecord.html @@ -94,16 +94,20 @@ %patch11 -p1 -b .manpatch %patch20 -p0 -b .dvdfix %patch21 -p0 -b .priv -%patch22 -p0 -b .type +%patch22 -p1 -b .type %patch23 -p1 -b .silly %patch24 -p1 -b .utf8-2 %patch25 -p1 -b .scan +# Turn off buggy CD_EXTRA code. +#sed -e 's/define CD_EXTRA/undef CD_EXTRA/' < cdda2wav/toc.c > cdda2wav/toc.c.tmp +#mv -f cdda2wav/toc.c.tmp cdda2wav/toc.c chmod a+rX -R . fgrep -rl '/etc/default/cdrecord' .|xargs perl -pi -e 's#/etc/default/cdrecord#/etc/cdrecord.conf#g' for i in $(find . -name *.1); do iconv -f iso-8859-1 $i -t utf-8 -o $i.new && mv -f $i.new $i;done +perl -pi -e "s/^COPTOPT=.*/COPTOPT=$RPM_OPT_FLAGS/g" RULES/*-linux-cc.rul; #ln -s i686-linux-cc incs/athlon-linux-cc ln -s i686-linux-cc.rul RULES/athlon-linux-cc.rul ln -s i686-linux-gcc.rul RULES/athlon-linux-gcc.rul @@ -142,7 +146,7 @@ groff -Tps -man doc/cdrecord.man > doc/cdrecord.ps mkdir -p $RPM_BUILD_ROOT/etc -install -m 644 cdrecord/cdrecord.dfl $RPM_BUILD_ROOT/etc/cdrecord.conf +#install -m 644 cdrecord/cdrecord.dfl $RPM_BUILD_ROOT/etc/cdrecord.conf rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/scgcheck* rm -f $RPM_BUILD_ROOT/%{_mandir}/man5/makefiles* @@ -157,9 +161,10 @@ $RPM_BUILD_ROOT/usr/sbin/rscsi rm -f $RPM_BUILD_ROOT/usr/lib/libfile.a $RPM_BUILD_ROOT/usr/lib/libhfs.a rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/cdda2ogg* -install %{SOURCE1} $RPM_BUILD_ROOT/etc/cdrecord.conf +install -m 0644 %{SOURCE1} $RPM_BUILD_ROOT/etc/cdrecord.conf + %clean %clean_buildroot From svn at tinysofa.org Mon Sep 13 15:37:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 14 Sep 2004 01:37:57 +1000 (EST) Subject: [tinysofa-svn] r4769 - in contrib/1.1: . gimp gimp/current gimp/current/sources gimp/current/specs Message-ID: <20040913153757.A33CB4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-14 01:37:57 +1000 (Tue, 14 Sep 2004) New Revision: 4769 Added: contrib/1.1/gimp/ contrib/1.1/gimp/current/ contrib/1.1/gimp/current/sources/ contrib/1.1/gimp/current/sources/filter-gimp-perl-requires.sh contrib/1.1/gimp/current/sources/gimp-1.1.23-perlpath.patch contrib/1.1/gimp/current/sources/gimp-1.2.5.tar.bz2 contrib/1.1/gimp/current/sources/gimp.desktop contrib/1.1/gimp/current/sources/gimp.png contrib/1.1/gimp/current/specs/ contrib/1.1/gimp/current/specs/gimp.spec contrib/1.1/gimp/releases/ Log: - add gimp Added: contrib/1.1/gimp/current/sources/filter-gimp-perl-requires.sh =================================================================== --- contrib/1.1/gimp/current/sources/filter-gimp-perl-requires.sh 2004-09-13 13:21:09 UTC (rev 4768) +++ contrib/1.1/gimp/current/sources/filter-gimp-perl-requires.sh 2004-09-13 15:37:57 UTC (rev 4769) @@ -0,0 +1,3 @@ +#!/bin/sh + +/usr/lib/rpm/perl.req $* | grep -v 'perl(PDL::LiteF)' Property changes on: contrib/1.1/gimp/current/sources/filter-gimp-perl-requires.sh ___________________________________________________________________ Name: svn:executable + * Added: contrib/1.1/gimp/current/sources/gimp-1.1.23-perlpath.patch =================================================================== --- contrib/1.1/gimp/current/sources/gimp-1.1.23-perlpath.patch 2004-09-13 13:21:09 UTC (rev 4768) +++ contrib/1.1/gimp/current/sources/gimp-1.1.23-perlpath.patch 2004-09-13 15:37:57 UTC (rev 4769) @@ -0,0 +1,32 @@ +--- gimp-1.1.23/plug-ins/perl/Gimp/Lib.xs.perlpath Sat Jun 3 19:42:06 2000 ++++ gimp-1.1.23/plug-ins/perl/Gimp/Lib.xs Sat Jun 3 19:42:55 2000 +@@ -1,4 +1,4 @@ +-#include "config.h" ++#include "../CORE/config.h" + + #include + #include +--- gimp-1.1.23/plug-ins/perl/UI/UI.xs.perlpath Sat Jun 3 19:41:29 2000 ++++ gimp-1.1.23/plug-ins/perl/UI/UI.xs Sat Jun 3 19:41:40 2000 +@@ -1,4 +1,4 @@ +-#include "config.h" ++#include "../CORE/config.h" + + /* dunno where this comes from */ + #undef VOIDUSED +--- gimp-1.1.23/plug-ins/perl/Net/Net.xs.perlpath Sat Jun 3 19:43:04 2000 ++++ gimp-1.1.23/plug-ins/perl/Net/Net.xs Sat Jun 3 19:43:09 2000 +@@ -1,4 +1,4 @@ +-#include "config.h" ++#include "../CORE/config.h" + + /* dunno where this comes from */ + #undef VOIDUSED +--- gimp-1.1.23/plug-ins/perl/Gimp.xs.perlpath Sat Jun 3 19:41:48 2000 ++++ gimp-1.1.23/plug-ins/perl/Gimp.xs Sat Jun 3 19:41:55 2000 +@@ -1,4 +1,4 @@ +-#include "config.h" ++#include "../CORE/config.h" + + #include + #ifdef GIMP_HAVE_EXPORT Added: contrib/1.1/gimp/current/sources/gimp-1.2.5.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/gimp/current/sources/gimp-1.2.5.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/gimp/current/sources/gimp.desktop =================================================================== --- contrib/1.1/gimp/current/sources/gimp.desktop 2004-09-13 13:21:09 UTC (rev 4768) +++ contrib/1.1/gimp/current/sources/gimp.desktop 2004-09-13 15:37:57 UTC (rev 4769) @@ -0,0 +1,82 @@ +[Desktop Entry] +Name=The GIMP +Name[bg]=GIMP +Name[br]=GIMP +Name[ca]=El GIMP +Name[cs]=GIMP +Name[da]=GIMP'en +Name[de]=GIMP +Name[el]=?? GIMP +Name[es]=El GIMP +Name[et]=GIMP +Name[eu]=GIMPa +Name[fi]=GIMP +Name[fr]=The GIMP +Name[ga]=An GIMP +Name[ga]=An GIMP +Name[gl]=O GIMP +Name[hr]=GIMP +Name[hu]=A GIMP +Name[id]=GIMP +Name[is]=GIMP +Name[it]=GIMP +Name[ja]=GIMP +Name[ko]=???? +Name[lt]=GIMP +Name[nl]=GIMP +Name[no]=GIMP +Name[pl]=GIMP +Name[pt]=O GIMP +Name[pt_BR]=O GIMP +Name[ro]=GIMP +Name[ru]=GIMP +Name[sk]=GIMP +Name[sv]=GIMP +Name[tr]=GIMP +Name[uk]=GIMP +Name[zh_CN.GB2312]=GIMP +Name[zh_TW.Big5]=GIMP +Comment=GNU Image Manipulation Program +Comment[bg]=???????? ?? ????????? ?? ??????????? / GNU +Comment[br]=Goulev GNU Dazverad Skeudenno? +Comment[ca]=El programa de manipulaci? d'imatges GNU +Comment[cs]=Program pro ?pravu obr?zk? +Comment[da]=Tegne- og billedbehandlingprogram +Comment[de]=Das GNU-Bildbearbeitungsprogramm +Comment[el]=????????? ??????????? ??????? GNU +Comment[es]=Programa de manipulaci?n de im?genes GNU +Comment[et]=GNU pildit??tlusprogramm +Comment[eu]=GNU imaginak eraldatzeko programa +Comment[fi]=GNU kuvank?sittelyohjelma +Comment[fr]=Le Programme de Manipulation d'Images GNU +Comment[ga]=R?omhchlar l?imhsi? Pictuir? GNC +Comment[ga]=R?omhchl?r l?imhsi? ?omh? GNU +Comment[gl]=O Programa de Edici?n de Imaxes de GNU +Comment[hr]=Program za obradu forografija pod GNU licencom +Comment[hu]=GNU k?pfeldolgoz? program +Comment[id]=GNU Image Manipulation Program +Comment[is]=GNU Myndvinnsluforrit +Comment[it]=Programma di Manipolazione Immagini GNU +Comment[ja]=GNU?????????????????? +Comment[ko]=GNU ???? ???? ???????? +Comment[lt]=GNU atvaizd? apdorojimo programa +Comment[nl]=GNU beeldverwerkingsprogramma +Comment[no]=GNU bildebehandlingsprogram +Comment[pl]=Zaawansowany program graficzny +Comment[pt]=Programa de Edi??o de Imagens GNU +Comment[pt_BR]=Programa de Edi??o de Imagens GNU +Comment[ro]=Program GNU pentru manipulare de imagine +Comment[ru]=????????? ??????????? ??????????? GNU +Comment[sk]=GNU Program pre spracovanie obr?zkov +Comment[sv]=GNU Image Manipulation Program +Comment[tr]=GNU Resim de?i?tirme uygulamas? +Comment[uk]=???????? GNU ??????????? ??????????? +Comment[wa]=Li programe da GNU po-z aspougn? des im?djes +Comment[zh_CN.GB2312]=GNU ???????????? +Comment[zh_TW.Big5]=GNU ?v???B?z?{?? +TryExec=gimp +Exec=gimp +Icon=gnome-gimp.png +Terminal=0 +Type=Application +Categories=Application;Graphics;X-Red-Hat-Base \ No newline at end of file Added: contrib/1.1/gimp/current/sources/gimp.png =================================================================== (Binary files differ) Property changes on: contrib/1.1/gimp/current/sources/gimp.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/gimp/current/specs/gimp.spec =================================================================== --- contrib/1.1/gimp/current/specs/gimp.spec 2004-09-13 13:21:09 UTC (rev 4768) +++ contrib/1.1/gimp/current/specs/gimp.spec 2004-09-13 15:37:57 UTC (rev 4769) @@ -0,0 +1,499 @@ +%define subver 1.2 +%define age 0 +%define microver 5 + +Summary: The GNU Image Manipulation Program. +Name: gimp +Version: %{subver}.%{microver} +Release: 1jh +Epoch: 0 +License: GPL, LGPL +Group: contrib +URL: http://www.gimp.org/ +BuildRoot: %{_tmppath}/%{name}-%{version}-root +Obsoletes: gimp-data-min +Obsoletes: gimp-libgimp +Requires: gtk12+ >= 1.2.0 +#Requires: gimp-print-plugin +BuildRequires: gtk12+-devel +BuildRequires: glib12-devel +BuildRequires: gettext +BuildRequires: libtiff-devel libpng-devel libjpeg-devel +#Requires: /usr/bin/desktop-file-install +Source0: ftp://ftp.gimp.org/pub/gimp/v%{subver}/v%{version}/%{name}-%{version}.tar.bz2 +Source1: gimp.desktop +Source2: gimp.png +Source3: filter-gimp-perl-requires.sh +Patch0: gimp-1.1.23-perlpath.patch + +%define __perl_requires %{SOURCE3} +%define debug_package %{nil} + +# gcc breaks with -g +# workaround for compiler bug on s390/s390x +%ifarch s390 s390x +%define optflags -O2 +%endif + +%description +The GIMP (GNU Image Manipulation Program) is a powerful image +composition and editing program, which can be extremely useful for +creating logos and other graphics for webpages. The GIMP has many of +the tools and filters you would expect to find in similar commercial +offerings, and some interesting extras as well. The GIMP provides a +large image manipulation toolbox, including channel operations and +layers, effects, sub-pixel imaging and anti-aliasing, and conversions, +all with multi-level undo. + +The GIMP includes a scripting facility, but many of the included +scripts rely on fonts that we cannot distribute. The GIMP FTP site +has a package of fonts that you can install by yourself, which +includes all the fonts needed to run the included scripts. Some of +the fonts have unusual licensing requirements; all the licenses are +documented in the package. Get +ftp://ftp.gimp.org/pub/gimp/fonts/freefonts-0.10.tar.gz and +ftp://ftp.gimp.org/pub/gimp/fonts/sharefonts-0.10.tar.gz if you are so +inclined. Alternatively, choose fonts which exist on your system +before running the scripts. + +%package devel +Summary: The GIMP plug-in and extension development kit. +Group: contrib +Requires: gtk+-devel, gimp = %{epoch}:%{version} +%description devel +The gimp-devel package contains the static libraries and header files +for writing GNU Image Manipulation Program (GIMP) plug-ins and +extensions. + +%if 0 +%package perl +Summary: Perl extensions and plug-ins for the GIMP. +Group: contrib +Requires: gimp = %{epoch}:%{version} +Requires: perl +Provides: perl(Gimp::Util) +Provides: perl(of) +#BuildPreReq: perl-PDL Gtk-Perl perl +BuildPreReq: perl-devel +%description perl +The gimp-perl package contains Perl extensions and plug-ins for the +GIMP image manipulation program. +%endif + +%prep +%setup -q +%patch0 -p1 -b .perlpath + +%build +LIBAA="disable" CFLAGS="$RPM_OPT_FLAGS" %configure \ + --disable-print \ + --disable-perl + +make %{?smp_mflags} + +%install +sed "s,\(=/\)\([a-z]\),=$RPM_BUILD_ROOT/\2,g" gimptool-1.2 > tmptool +chmod 755 tmptool + +%if 0 +rootdir=`pwd` +pushd plug-ins/perl +PREFIX=$RPM_BUILD_ROOT/usr INSTALLDIRS=vendor GIMPTOOL=$rootdir/tmptool \ +CFLAGS=-I$(cd ../..;pwd) LDFLAGS=-L$(cd ../../libgimp/.libs;pwd) \ + perl Makefile.PL PREFIX=$RPM_BUILD_ROOT/usr INSTALLDIRS=vendor \ + --disable-gimptest < /dev/null +perl -pi -e "s!-Wl,-rpath,$installarchlib/CORE!!g" Makefile +for I in `find -name Makefile`; do + sed "s,/usr/bin/gimptool,$rootdir/tmptool,g" $I > $I- + mv $I- $I +done +popd +%endif +mkdir -p $RPM_BUILD_ROOT/%{_infodir} $RPM_BUILD_ROOT/%{_includedir} \ + $RPM_BUILD_ROOT/%{_libdir} $RPM_BUILD_ROOT/%{_bindir} \ + $RPM_BUILD_ROOT/%{_libdir}/gimp/%{subver}/plug-ins + + +# makeinstall macro won't work here - libexec is overriden +make prefix=$RPM_BUILD_ROOT/%{_prefix} \ + bindir=$RPM_BUILD_ROOT/%{_bindir} \ + libdir=$RPM_BUILD_ROOT/%{_libdir} \ + mandir=$RPM_BUILD_ROOT/%{_mandir} \ + infodir=$RPM_BUILD_ROOT/%{_infodir} \ + datadir=$RPM_BUILD_ROOT/%{_datadir} \ + includedir=$RPM_BUILD_ROOT/%{_includedir} \ + gimpsysconfdir=$RPM_BUILD_ROOT/%{_sysconfdir}/gimp/%{subver} \ + gimpplugindir=$RPM_BUILD_ROOT/%{_libdir}/gimp/%{subver} \ + gimpdatadir=$RPM_BUILD_ROOT/%{_datadir}/gimp/%{subver} \ + GIMPTOOL=`pwd`/tmptool \ + install + +# remove the perl temp file to satisfy rpmlint +rm -f `find $RPM_BUILD_ROOT%{_libdir}/perl5/ -name ".packlist"` + +%if 0 +# +# This perl madness will drive me batty +# +eval perl '-V:archname' +find $RPM_BUILD_ROOT/%{_libdir}/perl5 -type f -print | sed "s@^$RPM_BUILD_ROOT@@g" | grep -v perllocal.pod > gimp-perl +%endif + +# Don't ship the print plug-in, but instead get it from gimp-print. +rm -f %{buildroot}%{_libdir}/gimp/*/plug-ins/print + +# +# Plugins and modules change often (grab the executeable ones) +# +echo "%defattr (0755, root, root)" > gimp-plugin-files +find $RPM_BUILD_ROOT/%{_libdir}/gimp/%{subver} -type f -exec file {} \; | grep -v perl | cut -d':' -f 1 | sed "s@^$RPM_BUILD_ROOT@@g" | grep -v %{_libdir}/gimp/%{subver}/modules/.*\.a$ | grep -v %{_libdir}/gimp/%{subver}/modules/.*\.la$ >>gimp-plugin-files + +# +# Now pull the perl ones out. +# +echo "%defattr (0755, root, root)" > gimp-perl-plugin-files +echo "%dir %{_libdir}/gimp/%{subver}/plug-ins" >> gimp-perl-plugin-files +find $RPM_BUILD_ROOT/%{_libdir}/gimp/%{subver} -type f -exec file {} \; | grep perl | cut -d':' -f 1 | sed "s@^$RPM_BUILD_ROOT@@g" >>gimp-perl-plugin-files + +# +# Auto detect the lang files. +# +if [ -f /usr/lib/rpm/find-lang.sh ] ; then + /usr/lib/rpm/find-lang.sh $RPM_BUILD_ROOT %{name} + /usr/lib/rpm/find-lang.sh $RPM_BUILD_ROOT gimp-std-plugins + /usr/lib/rpm/find-lang.sh $RPM_BUILD_ROOT gimp-script-fu +%if 0 + /usr/lib/rpm/find-lang.sh $RPM_BUILD_ROOT gimp-perl +%endif + /usr/lib/rpm/find-lang.sh $RPM_BUILD_ROOT gimp-libgimp + cat %{name}.lang gimp-std-plugins.lang gimp-script-fu.lang \ + gimp-libgimp.lang > gimp-all.lang +fi + +# +# Tips +# +echo "%defattr (644, root, root, 555)" >gimp-tips-files +echo "%{_datadir}/gimp/%{subver}/tips/gimp_tips.txt" >> gimp-tips-files +for I in `ls $RPM_BUILD_ROOT/%{_datadir}/gimp/%{subver}/tips/gimp*.[a-z]*.txt | sed "s@^$RPM_BUILD_ROOT/@@g"`; do + tip_lang=`basename $I | cut -d'.' -f2` + echo "%lang($tip_lang) $I" >> gimp-tips-files +done + +# +# Build the master filelists generated from the above mess. +# +cat gimp-plugin-files gimp-all.lang gimp-tips-files > gimp.files +#echo "%defattr (555, root, root, 555)" > gimp-perl-files +#cat gimp-perl gimp-perl-plugin-files >> gimp-perl-files +#cat gimp-perl.lang >> gimp-perl-files + +# install desktop entry +#mkdir -p %{buildroot}/%{_datadir}/applications +#mkdir -p %{buildroot}/%{_datadir}/mc/templates +#mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications +#desktop-file-install \ +# --vendor gnome \ +# --dir $RPM_BUILD_ROOT%{_datadir}/applications \ +# --add-category "Application;Graphics;X-Red-Hat-Base" \ +# $RPM_SOURCE_DIR/gimp.desktop +#install -m 644 $RPM_SOURCE_DIR/gimp.desktop %{buildroot}/%{_datadir}/mc/templates +mkdir -p %{buildroot}/usr/share/pixmaps +install -m 644 $RPM_SOURCE_DIR/gimp.png %{buildroot}/%{_datadir}/pixmaps + +# files we don't ship +rm -f %{buildroot}%{_bindir}/escputil* \ + %{buildroot}%{_mandir}/man1/escputil* \ + %{buildroot}%{_bindir}/embedxpm \ + %{buildroot}%{_mandir}/man1/embedxpm* \ + %{buildroot}%{_bindir}/scm2perl \ + %{buildroot}%{_mandir}/man1/scm2perl* \ + %{buildroot}%{_bindir}/scm2scm \ + %{buildroot}%{_mandir}/man1/scm2scm* +rm -rf %{buildroot}%{_datadir}/gimp/*/devel-docs +find %{buildroot}%{_libdir}/perl5 -name perllocal.pod | xargs rm -f + +%clean +[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files -f gimp.files +%defattr (0644, root, root, 0755) +%doc AUTHORS COPYING ChangeLog MAINTAINERS NEWS README TODO +%doc docs/*.txt docs/*.ps ABOUT-NLS README.i18n README.perl README.win32 TODO +#%attr(-,root,root) %config(missingok) /%{_datadir}/applications/*.desktop +#%attr(-,root,root) %config(missingok) /%{_datadir}/mc/templates/gimp.desktop +%{_datadir}/pixmaps/gimp.png + +%dir %{_datadir}/gimp/%{subver} +%dir %{_datadir}/gimp/%{subver}/tips +%dir %{_libdir}/gimp/%{subver} +%dir %{_libdir}/gimp/%{subver}/modules +%dir %{_libdir}/gimp/%{subver}/plug-ins + +%{_datadir}/gimp/%{subver}/brushes/ +%{_datadir}/gimp/%{subver}/fractalexplorer/ +%{_datadir}/gimp/%{subver}/gfig/ +%{_datadir}/gimp/%{subver}/gflare/ +%{_datadir}/gimp/%{subver}/gimpressionist/ +%{_datadir}/gimp/%{subver}/gradients/ +%{_datadir}/gimp/%{subver}/help/ +%{_datadir}/gimp/%{subver}/palettes/ +%{_datadir}/gimp/%{subver}/patterns/ +%{_datadir}/gimp/%{subver}/scripts/ + +%{_sysconfdir}/gimp/%{subver}/gimprc +%{_sysconfdir}/gimp/%{subver}/gimprc_user +%{_sysconfdir}/gimp/%{subver}/gtkrc +%{_sysconfdir}/gimp/%{subver}/gtkrc_user +%{_sysconfdir}/gimp/%{subver}/unitrc +%{_sysconfdir}/gimp/%{subver}/ps-menurc + +%{_datadir}/gimp/%{subver}/gimp_logo.ppm +%{_datadir}/gimp/%{subver}/gimp_splash.ppm + +%defattr (0755, root, root) +%{_datadir}/gimp/%{subver}/user_install + +%{_libdir}/libgimp-%{subver}.so.%{age}.0.%{microver} +%{_libdir}/libgimp-%{subver}.so.%{age} +%{_libdir}/libgimpui-%{subver}.so.%{age}.0.%{microver} +%{_libdir}/libgimpui-%{subver}.so.%{age} +%{_libdir}/libgck-%{subver}.so.%{age}.0.%{microver} +%{_libdir}/libgck-%{subver}.so.%{age} + +%{_bindir}/gimp +%{_bindir}/gimp-%{subver} +%{_bindir}/gimp-remote* + +%defattr (0644, root, root) +%{_mandir}/man1/gimp.1* +%{_mandir}/man1/gimp-%{subver}.1* +%{_mandir}/man5/gimprc.5* +%{_mandir}/man5/gimprc-%{subver}.5* +%{_mandir}/man1/gimp-remote* + +%files devel +%defattr (0755, root, root, 0755) +%{_bindir}/gimptool +%{_bindir}/gimptool-%{subver} +%{_bindir}/gimp-config +%{_libdir}/*.so +%{_libdir}/*.la +%dir %{_libdir}/gimp/%{subver}/modules +%{_libdir}/gimp/%{subver}/modules/*.la + +%defattr (0644, root, root, 0755) +%{_datadir}/aclocal/gimp.m4 +%{_libdir}/*.a +%{_libdir}/gimp/%{subver}/modules/*.a +%{_includedir}/libgimp/ +%{_includedir}/gck/ +%{_mandir}/man1/gimptool.1* +%{_mandir}/man1/gimptool-%{subver}.1* + +%if 0 +%files perl -f gimp-perl-files +%defattr (0755, root, root, 0755) +%{_bindir}/gimpdoc +%{_bindir}/xcftopnm +%{_mandir}/man1/xcftopnm* +%{_mandir}/man3/* +%endif + +%changelog +* Sun Jun 8 2003 Tim Powers 1:1.2.3-20.1 +- build for RHEL + +* Fri Jun 6 2003 Matt Wilson 1:1.2.3-20 +- add epoch to the version requirements of subpackages +- ship gimp-remote (#85344) + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Wed Jun 4 2003 Than Ngo 1:1.2.3-18 +- fix build problem with gcc 3.3 +- workaround for compiler bug on s390/s390x + +* Wed Feb 19 2003 Tim Waugh 1:1.2.3-16 +- Require gimp-print-plugin (bug #80437). + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Sat Jan 4 2003 Jeff Johnson 1:3-14 +- use internal dep generator. + +* Sat Dec 14 2002 Tim Powers 1:3-13 +- don't use rpms internal dep generator + +* Mon Dec 9 2002 Tim Powers 1:1.23-12 +- rebuild to pick up some plug-ins +- add some BuildPreReq's on some perl packages for the gimp-perl package + +* Tue Nov 5 2002 Tim Waugh 1.2.3-11 +- Don't ship the print plug-in. This comes from gimp-print instead. + +* Tue Nov 5 2002 Tim Waugh 1.2.3-10 +- Use %%{_libdir}. +- Don't use previously-installed gimptool when building. +- Build requires glib-devel. +- Don't install files not shipped. +- Clean up doc files in manifest. +- Ship more translations. +- Ship xcftopnm man page, and gimp-perl man pages. + +* Fri Aug 30 2002 Tim Powers +- filter out gimp-perl dep on perl(PDL::LiteF) + +* Fri Aug 30 2002 Matt Wilson +- use desktop-file-install +- nuke rpath in perl plugin + +* Mon Aug 19 2002 Matt Wilson +- fix up gimp-perl madness to work with 5.8.0 (#66610, #68782) + - added gimp-1.2.3-newperl.patch.bz2 from Mandrake's gimp package +- added gimp-1.2.3-wget-fix.patch.bz2 from Mandrake's gimp package +- fix desktop file (#71021) + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Mon Apr 15 2002 Matt Wilson +- filter .la files from main gimp package (#43317, #57571, #56667, + #51591, #63371) + +* Tue Mar 19 2002 Matt Wilson +- added missing man pages (#61426) +- removed esputil man page (#58919) + +* Fri Mar 15 2002 Matt Wilson +- added /usr/bin/{gimp-config,gimptool}-1.2 + +* Mon Mar 11 2002 Matt Wilson +- 1.2.3, based on changes from Ed Halley below: + - removed gimp-1.2.1-locale.patch as the patch was incorporated upstream + - linked new versioned gimp-1.2 executable to traditional gimp name + +* Mon Feb 25 2002 Than Ngo 1.2.1-11 +- rebuild in new enviroment + +* Thu Jan 31 2002 Bill Nottingham +- escputil lives in ghostscript now + +* Thu Jan 31 2002 Jeremy Katz +- add silly perl dependencies that don't get automatically found + +* Wed Jan 30 2002 Jeremy Katz +- rebuild in new environment + +* Thu Jul 19 2001 Tim Powers +- remove the perl temp files to pacify rpmlint + +* Tue Jun 19 2001 Matt Wilson +- added versioned requires to gimp-devel and gimp-perl + +* Tue Apr 3 2001 Matt Wilson +- added gimp-1.2.1-locale.patch, which I've checked in to gimp CVS, to + correctly set up the locale in plug-ins (#34214) + +* Mon Apr 2 2001 Preston Brown +- some gimp-perl files weren't defattr'd (#34325) + +* Fri Mar 30 2001 Trond Eivind Glomsr?d +- Don't include embedxpm, as it depends on a non-included perl module (#=33249) +- move gimpdoc and xcftopnm to gimp-perl, as they are dependant on the perl Gimp + module + +* Thu Mar 01 2001 Owen Taylor +- Rebuild for GTK+-1.2.9 include paths + +* Mon Jan 22 2001 Matt Wilson +- 1.2.1 + +* Mon Dec 25 2000 Matt Wilson +- 1.2.0 + +* Wed Dec 20 2000 Matt Wilson +- 1.1.31 + +* Thu Dec 14 2000 Matt Wilson +- 1.1.30 +- merge changes from CVS into rpm-4.0 style spec file +- removed va_arg patch + +* Mon Aug 21 2000 Matt Wilson +- 1.1.25 + +* Fri Aug 11 2000 Jonathan Blandford +- Up Epoch and release + +* Tue Aug 8 2000 Matt Wilson +- fixed directory mode on %%{_defaultdocdir}/gimp-%%{version} + +* Wed Aug 2 2000 Matt Wilson +- rebuild against new libpng + +* Mon Jul 31 2000 Matt Wilson +- muck with modules filelist generation to avoid getting files owned by + two packages + +* Mon Jul 17 2000 Matt Wilson +- disable aa plugin +- moved the group back to Applications/Multimedia +- added desktop entry back into the file list + +* Thu Jul 13 2000 Prospector +- automatic rebuild + +* Fri Jul 1 2000 Matt Wilson +- 1.1.24 + +* Sat Jun 17 2000 Matt Wilson +- use root, not bin for the default owner. + +* Fri Jun 16 2000 Preston Brown +- add back missing system .desktop entry + +* Sat Jun 10 2000 Matt Wilson +- rebuilt against fixed gcc + +* Mon Jun 5 2000 Matt Wilson +- defattr for gimp-perl + +* Sun Jun 4 2000 Matt Wilson +- drop out all of \.a$ from the main package list + +* Sat Jun 3 2000 Matt Wilson +- 1.1.23 +- use __NO_MATH_INLINES for now on ix86 +- massive FHS surgery + +* Tue May 16 2000 Matt Wilson +- 1.1.22 + +* Mon Apr 24 2000 Matt Wilson +- 1.1.20 + +* Fri Apr 14 2000 Matt Wilson +- include subdirs in the help find +- remove gimp-help-files generation +- both gimp and gimp-perl own prefix/lib/gimp/1.1/plug-ins +- both gimp and gimp-devel own prefix/lib/gimp/1.1/modules + +* Thu Apr 13 2000 Matt Wilson +- 1.1.19 +- get all .mo files + +* Wed Jan 19 2000 Gregory McLean +- Version 1.1.15 + +* Wed Dec 22 1999 Gregory McLean +- Version 1.1.14 +- Added some auto %files section generation scriptlets + + From svn at tinysofa.org Mon Sep 13 15:59:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 14 Sep 2004 01:59:41 +1000 (EST) Subject: [tinysofa-svn] r4770 - contrib/1.1/gimp/current/specs Message-ID: <20040913155941.2479E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-14 01:59:40 +1000 (Tue, 14 Sep 2004) New Revision: 4770 Modified: contrib/1.1/gimp/current/specs/gimp.spec Log: - BR: xorg-x11-devel Modified: contrib/1.1/gimp/current/specs/gimp.spec =================================================================== --- contrib/1.1/gimp/current/specs/gimp.spec 2004-09-13 15:37:57 UTC (rev 4769) +++ contrib/1.1/gimp/current/specs/gimp.spec 2004-09-13 15:59:40 UTC (rev 4770) @@ -15,7 +15,7 @@ Obsoletes: gimp-libgimp Requires: gtk12+ >= 1.2.0 #Requires: gimp-print-plugin -BuildRequires: gtk12+-devel +BuildRequires: gtk12+-devel xorg-x11-devel BuildRequires: glib12-devel BuildRequires: gettext BuildRequires: libtiff-devel libpng-devel libjpeg-devel From svn at tinysofa.org Mon Sep 13 16:35:42 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 14 Sep 2004 02:35:42 +1000 (EST) Subject: [tinysofa-svn] r4773 - contrib/1.1/webmin/current/specs Message-ID: <20040913163542.90D5A4E873F@minbar.tinysofa.org> Author: jh Date: 2004-09-14 02:35:42 +1000 (Tue, 14 Sep 2004) New Revision: 4773 Modified: contrib/1.1/webmin/current/specs/webmin.spec Log: - do not set _use_internal_dependency_generator Modified: contrib/1.1/webmin/current/specs/webmin.spec =================================================================== --- contrib/1.1/webmin/current/specs/webmin.spec 2004-09-13 16:24:47 UTC (rev 4772) +++ contrib/1.1/webmin/current/specs/webmin.spec 2004-09-13 16:35:42 UTC (rev 4773) @@ -1,4 +1,3 @@ -%define _use_internal_dependency_generator 0 %define __perl_requires %{nil} %define __perl_provides %{nil} From svn at tinysofa.org Mon Sep 13 16:24:47 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 14 Sep 2004 02:24:47 +1000 (EST) Subject: [tinysofa-svn] r4772 - contrib/1.1/webmin/current/specs Message-ID: <20040913162447.BA8874E873C@minbar.tinysofa.org> Author: jh Date: 2004-09-14 02:24:47 +1000 (Tue, 14 Sep 2004) New Revision: 4772 Modified: contrib/1.1/webmin/current/specs/webmin.spec Log: - really disable perl dep generator Modified: contrib/1.1/webmin/current/specs/webmin.spec =================================================================== --- contrib/1.1/webmin/current/specs/webmin.spec 2004-09-13 16:07:04 UTC (rev 4771) +++ contrib/1.1/webmin/current/specs/webmin.spec 2004-09-13 16:24:47 UTC (rev 4772) @@ -1,4 +1,6 @@ +%define _use_internal_dependency_generator 0 %define __perl_requires %{nil} +%define __perl_provides %{nil} Summary: A web-based administration interface for Unix systems. Name: webmin From svn at tinysofa.org Mon Sep 13 18:19:26 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 14 Sep 2004 04:19:26 +1000 (EST) Subject: [tinysofa-svn] r4774 - in tinysofa/releases/1.1/cdrtools/current: sources specs Message-ID: <20040913181926.9B4AF4E8740@minbar.tinysofa.org> Author: jh Date: 2004-09-14 04:19:26 +1000 (Tue, 14 Sep 2004) New Revision: 4774 Added: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01.tar.bz2 Removed: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a38.tar.bz2 Modified: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a27-silly-warnings.patch tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec Log: - update to 2.01 final Added: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a27-silly-warnings.patch =================================================================== --- tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a27-silly-warnings.patch 2004-09-13 16:35:42 UTC (rev 4773) +++ tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a27-silly-warnings.patch 2004-09-13 18:19:26 UTC (rev 4774) @@ -4,9 +4,9 @@ * companies prefer a model with many proprietary differing programs * instead of cooperating with the program authors. */ -- linuxcheck(); /* For version 1.295 of cdrecord.c */ +- linuxcheck(); /* For version 1.297 of cdrecord.c */ -+ /* linuxcheck(); */ /* For version 1.295 of cdrecord.c */ ++ /* linuxcheck(); */ /* For version 1.297 of cdrecord.c */ if (flags & F_VERSION) exit(0); /* Deleted: tinysofa/releases/1.1/cdrtools/current/sources/cdrtools-2.01a38.tar.bz2 =================================================================== (Binary files differ) Modified: tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec =================================================================== --- tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-13 16:35:42 UTC (rev 4773) +++ tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-13 18:19:26 UTC (rev 4774) @@ -1,8 +1,8 @@ Summary: A collection of CD/DVD utilities. Name: cdrtools -Version: 2.01.0.a38 +Version: 2.01 Release: 1jh -%define tarversion 2.01a38 +%define tarversion 2.01 License: GPL Group: extra URL: http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/cdrecord.html From svn at tinysofa.org Mon Sep 13 16:07:04 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 14 Sep 2004 02:07:04 +1000 (EST) Subject: [tinysofa-svn] r4771 - contrib/1.1/sylpheed/current/specs Message-ID: <20040913160704.8E6784E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-14 02:07:04 +1000 (Tue, 14 Sep 2004) New Revision: 4771 Modified: contrib/1.1/sylpheed/current/specs/sylpheed.spec Log: - fix changelog Modified: contrib/1.1/sylpheed/current/specs/sylpheed.spec =================================================================== --- contrib/1.1/sylpheed/current/specs/sylpheed.spec 2004-09-13 15:59:40 UTC (rev 4770) +++ contrib/1.1/sylpheed/current/specs/sylpheed.spec 2004-09-13 16:07:04 UTC (rev 4771) @@ -61,10 +61,6 @@ - current (0.9.12-1gd) integrated as 0.9.12-1gd * Fri Aug 1 2003 Hiroyuki Yamamoto -%changelog -* Mon Sep 13 2004 tsintegrate 0.9.12-1gd -- current (0.9.12-1gd) integrated as 0.9.12-1gd - - modified %description * Thu Jul 31 2003 Andre Costa From svn at tinysofa.org Tue Sep 14 07:27:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 14 Sep 2004 17:27:49 +1000 (EST) Subject: [tinysofa-svn] r4775 - in projects/ts-anaconda/trunk: . scripts Message-ID: <20040914072749.CB05B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-14 17:27:48 +1000 (Tue, 14 Sep 2004) New Revision: 4775 Modified: projects/ts-anaconda/trunk/Makefile.inc projects/ts-anaconda/trunk/scripts/upd-instroot Log: - don't try to copy libs from anaconda runtime Modified: projects/ts-anaconda/trunk/Makefile.inc =================================================================== --- projects/ts-anaconda/trunk/Makefile.inc 2004-09-13 18:19:26 UTC (rev 4774) +++ projects/ts-anaconda/trunk/Makefile.inc 2004-09-14 07:27:48 UTC (rev 4775) @@ -24,4 +24,4 @@ # Define version string # -ANACONDAVERSION=1.1.6 +ANACONDAVERSION=1.1.7 Modified: projects/ts-anaconda/trunk/scripts/upd-instroot =================================================================== --- projects/ts-anaconda/trunk/scripts/upd-instroot 2004-09-13 18:19:26 UTC (rev 4774) +++ projects/ts-anaconda/trunk/scripts/upd-instroot 2004-09-14 07:27:48 UTC (rev 4775) @@ -499,7 +499,7 @@ ln -s ../lib/anaconda/pump-stub $p/usr/bin/pump mv $p/usr/sbin/anaconda $p/usr/bin/anaconda - mv $p/usr/lib/anaconda-runtime/lib* $p/usr/lib + #mv $p/usr/lib/anaconda-runtime/lib* $p/usr/lib mv $p/usr/lib/anaconda-runtime/collage $p/usr/bin From svn at tinysofa.org Tue Sep 14 08:26:25 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 14 Sep 2004 18:26:25 +1000 (EST) Subject: [tinysofa-svn] r4776 - in tinysofa/releases/1.1/hwdata/current: sources specs Message-ID: <20040914082625.5F69E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-14 18:26:25 +1000 (Tue, 14 Sep 2004) New Revision: 4776 Modified: tinysofa/releases/1.1/hwdata/current/sources/hwdata-pcitable tinysofa/releases/1.1/hwdata/current/specs/hwdata.spec Log: - add module information for hpt ide-controllers Modified: tinysofa/releases/1.1/hwdata/current/sources/hwdata-pcitable =================================================================== --- tinysofa/releases/1.1/hwdata/current/sources/hwdata-pcitable 2004-09-14 07:27:48 UTC (rev 4775) +++ tinysofa/releases/1.1/hwdata/current/sources/hwdata-pcitable 2004-09-14 08:26:25 UTC (rev 4776) @@ -1872,13 +1872,13 @@ 0x1102 0x7005 "unknown" "Creative Labs|SB Audigy LS MIDI/Game port" 0x1102 0x8064 "unknown" "Creative Labs|SB0100 [SBLive! 5.1 OEM]" 0x1102 0x8938 "ens1371" "Creative Labs|Ectiva EV1938" -0x1103 0x0003 "unknown" "Triones|HPT343" -0x1103 0x0004 "unknown" "Triones|HPT366/368/370/370A/372" -0x1103 0x0005 "unknown" "Triones|HPT372A" -0x1103 0x0006 "unknown" "Triones|HPT302" -0x1103 0x0007 "unknown" "Triones|HPT371" -0x1103 0x0008 "unknown" "Triones|HPT374" -0x1103 0x0009 "unknown" "Triones|HPT372N" +0x1103 0x0003 "hpt34x" "Triones|HPT343" +0x1103 0x0004 "hpt366" "Triones|HPT366/368/370/370A/372" +0x1103 0x0005 "hpt366" "Triones|HPT372A" +0x1103 0x0006 "hpt366" "Triones|HPT302" +0x1103 0x0007 "hpt366" "Triones|HPT371" +0x1103 0x0008 "hpt366" "Triones|HPT374" +0x1103 0x0009 "hpt366" "Triones|HPT372N" 0x1105 0x1105 "unknown" "Sigma Designs, Inc.|REALmagic Xcard MPEG 1/2/3/4 DVD Decoder" 0x1105 0x8300 "unknown" "Sigma Designs, Inc.|REALmagic Hollywood Plus DVD Decoder" 0x1105 0x8400 "unknown" "Sigma Designs, Inc.|EM840x REALmagic DVD/MPEG-2 Audio/Video Decoder" Modified: tinysofa/releases/1.1/hwdata/current/specs/hwdata.spec =================================================================== --- tinysofa/releases/1.1/hwdata/current/specs/hwdata.spec 2004-09-14 07:27:48 UTC (rev 4775) +++ tinysofa/releases/1.1/hwdata/current/specs/hwdata.spec 2004-09-14 08:26:25 UTC (rev 4776) @@ -1,7 +1,7 @@ Name: hwdata Summary: Hardware identification and configuration data Version: 0.44 -Release: 20ts +Release: 21jh License: GPL Group: main Source: hwdata-%{version}.tar.gz @@ -62,6 +62,9 @@ %changelog +* Tue Sep 14 2004 Jaakko Heinonen 0.44-21jh +- add module information for hpt ide-controllers + * Thu Aug 05 2004 tsintegrate 0.44-20ts - current (0.44-20jh) integrated as 0.44-20ts for release 1.1 From svn at tinysofa.org Tue Sep 14 18:42:26 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 15 Sep 2004 04:42:26 +1000 (EST) Subject: [tinysofa-svn] r4777 - tinysofa/releases/1.1/cdrtools/current/specs Message-ID: <20040914184226.307824E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-15 04:42:25 +1000 (Wed, 15 Sep 2004) New Revision: 4777 Modified: tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec Log: - do not apply excl patch Modified: tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec =================================================================== --- tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-14 08:26:25 UTC (rev 4776) +++ tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-14 18:42:25 UTC (rev 4777) @@ -86,7 +86,7 @@ %ifarch sparc sparc64 %patch5 -p1 -b .sparc-silo %endif -%patch6 -p1 -b .excl +#%patch6 -p1 -b .excl #%patch7 -p1 -b .moredev %patch8 -p1 -b .utf8 %patch9 -p2 -b .endian From svn at tinysofa.org Tue Sep 14 18:59:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 15 Sep 2004 04:59:35 +1000 (EST) Subject: [tinysofa-svn] r4778 - tinysofa/releases/1.1/cdrtools/current/specs Message-ID: <20040914185935.9E5574E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-15 04:59:34 +1000 (Wed, 15 Sep 2004) New Revision: 4778 Modified: tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec Log: - overwrite rules Modified: tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec =================================================================== --- tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-14 18:42:25 UTC (rev 4777) +++ tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-14 18:59:34 UTC (rev 4778) @@ -115,6 +115,7 @@ ln -s i686-linux-cc.rul RULES/s390x-linux-cc.rul ln -s i686-linux-cc.rul RULES/ppc64-linux-cc.rul ln -s i686-linux-gcc.rul RULES/ppc64-linux-gcc.rul +rm -f RULES/x86_64-linux-* ln -s i686-linux-cc.rul RULES/x86_64-linux-cc.rul ln -s i686-linux-gcc.rul RULES/x86_64-linux-gcc.rul rm -f mkisofs/README.compression.zisofs-support-hpa From svn at tinysofa.org Tue Sep 14 19:46:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 15 Sep 2004 05:46:41 +1000 (EST) Subject: [tinysofa-svn] r4779 - tinysofa/releases/1.1/mutt/current/specs Message-ID: <20040914194641.6E0AC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-15 05:46:41 +1000 (Wed, 15 Sep 2004) New Revision: 4779 Modified: tinysofa/releases/1.1/mutt/current/specs/mutt.spec Log: - add missing backslash - do not exclude /usr/doc (no need) Modified: tinysofa/releases/1.1/mutt/current/specs/mutt.spec =================================================================== --- tinysofa/releases/1.1/mutt/current/specs/mutt.spec 2004-09-14 18:59:34 UTC (rev 4778) +++ tinysofa/releases/1.1/mutt/current/specs/mutt.spec 2004-09-14 19:46:41 UTC (rev 4779) @@ -23,7 +23,7 @@ %build %configure \ - --with-sharedir=%{_sysconfdir} + --with-sharedir=%{_sysconfdir} \ --with-docdir=%{_docdir}/%{name}-%{version} \ --enable-pop \ --enable-imap \ @@ -66,7 +66,6 @@ %doc doc/* contrib %exclude /etc/mime.types -%exclude /usr/doc %changelog * Sat Sep 11 2004 Jaakko Heinonen 1.4.2.1-7jh From svn at tinysofa.org Tue Sep 14 20:20:25 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 15 Sep 2004 06:20:25 +1000 (EST) Subject: [tinysofa-svn] r4780 - tinysofa/releases/1.1/cdrtools/current/specs Message-ID: <20040914202025.75E4F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-15 06:20:25 +1000 (Wed, 15 Sep 2004) New Revision: 4780 Modified: tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec Log: - obsolete cdrtools(-devel) Modified: tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec =================================================================== --- tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-14 19:46:41 UTC (rev 4779) +++ tinysofa/releases/1.1/cdrtools/current/specs/cdrtools.spec 2004-09-14 20:20:25 UTC (rev 4780) @@ -36,6 +36,7 @@ %package -n cdrecord Summary: A command line CD/DVD recording program. Group: extra +%rename cdrtools %description -n cdrecord Cdrecord is an application for creating audio and data CDs. Cdrecord @@ -45,6 +46,7 @@ %package -n cdrecord-devel Summary: The libschily SCSI user level transport library. Group: development +%rename cdrtools-devel Requires: cdrecord = %{epoch}:%{version}-%{release} %description -n cdrecord-devel @@ -55,6 +57,7 @@ %package -n mkisofs Summary: Creates an image of an ISO9660 filesystem. +%rename cdrtools Group: extra %description -n mkisofs From svn at tinysofa.org Tue Sep 14 21:02:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 15 Sep 2004 07:02:21 +1000 (EST) Subject: [tinysofa-svn] r4781 - in tinysofa/releases/1.1/initscripts/current: sources specs Message-ID: <20040914210221.C0EC64E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-15 07:02:21 +1000 (Wed, 15 Sep 2004) New Revision: 4781 Added: tinysofa/releases/1.1/initscripts/current/sources/initscripts-7.31.9-alsa.patch Modified: tinysofa/releases/1.1/initscripts/current/specs/initscripts.spec Log: - add patch to save alsa mixer settings Added: tinysofa/releases/1.1/initscripts/current/sources/initscripts-7.31.9-alsa.patch =================================================================== --- tinysofa/releases/1.1/initscripts/current/sources/initscripts-7.31.9-alsa.patch 2004-09-14 20:20:25 UTC (rev 4780) +++ tinysofa/releases/1.1/initscripts/current/sources/initscripts-7.31.9-alsa.patch 2004-09-14 21:02:21 UTC (rev 4781) @@ -0,0 +1,13 @@ +--- initscripts-7.31.9/rc.d/init.d/halt.alsa 2004-09-14 23:55:33.107136480 +0300 ++++ initscripts-7.31.9/rc.d/init.d/halt 2004-09-14 23:57:25.758010944 +0300 +@@ -68,6 +68,10 @@ + if [ $? = 0 -a -x /bin/aumix-minimal ]; then + runcmd $"Saving mixer settings" /bin/aumix-minimal -f /etc/.aumixrc -S + fi ++grep -q "\(alsa\)" /proc/devices ++if [ $? = 0 -a -x /usr/sbin/alsactl ]; then ++ runcmd $"Saving mixer settings" alsactl store ++fi + + # Sync the system clock. + ARC=0 Modified: tinysofa/releases/1.1/initscripts/current/specs/initscripts.spec =================================================================== --- tinysofa/releases/1.1/initscripts/current/specs/initscripts.spec 2004-09-14 20:20:25 UTC (rev 4780) +++ tinysofa/releases/1.1/initscripts/current/specs/initscripts.spec 2004-09-14 21:02:21 UTC (rev 4781) @@ -11,6 +11,7 @@ Patch2: initscripts-7.31.9-tinysofa-no-po.patch Patch3: initscripts-7.31.9-network-scripts.patch Patch4: initscripts-7.31.9-tinysofa-kernel-2.6.patch +Patch5: initscripts-7.31.9-alsa.patch BuildRoot: %{_tmppath}/%{name}-root Requires: agetty, gawk, sed, mktemp, e2fsprogs >= 1.15 Requires: procps, sysklogd >= 1.3.31 @@ -40,6 +41,7 @@ %patch2 -p1 %patch3 -p1 %patch4 -p1 +%patch5 -p1 %build @@ -199,6 +201,9 @@ %changelog +* Tue Sep 14 2004 Jaakko Heinonen +- add patch to save alsa mixer settings + * Thu Aug 19 2004 Gerald Dachs 7.31.9-7gd - added patch for kernel 2.6 (patch4) From svn at tinysofa.org Tue Sep 14 22:10:11 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 15 Sep 2004 08:10:11 +1000 (EST) Subject: [tinysofa-svn] r4782 - in contrib/1.1: . slrn slrn/current slrn/current/sources slrn/current/specs Message-ID: <20040914221011.6C4E34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-15 08:10:11 +1000 (Wed, 15 Sep 2004) New Revision: 4782 Added: contrib/1.1/slrn/ contrib/1.1/slrn/current/ contrib/1.1/slrn/current/sources/ contrib/1.1/slrn/current/sources/README.rpm-slrnpull contrib/1.1/slrn/current/sources/slrn-0.9.7.3-config.patch contrib/1.1/slrn/current/sources/slrn-0.9.7.4-utf8.patch contrib/1.1/slrn/current/sources/slrn-0.9.7.4.tar.bz2 contrib/1.1/slrn/current/sources/slrn-scorefile.patch contrib/1.1/slrn/current/sources/slrnpull-expire contrib/1.1/slrn/current/sources/slrnpull.log contrib/1.1/slrn/current/specs/ contrib/1.1/slrn/current/specs/slrn.spec contrib/1.1/slrn/releases/ Log: - add slrn Added: contrib/1.1/slrn/current/sources/README.rpm-slrnpull =================================================================== --- contrib/1.1/slrn/current/sources/README.rpm-slrnpull 2004-09-14 21:02:21 UTC (rev 4781) +++ contrib/1.1/slrn/current/sources/README.rpm-slrnpull 2004-09-14 22:10:11 UTC (rev 4782) @@ -0,0 +1,14 @@ +This package is designed to let you run a mini-newsspool as user +"news". The spool directory is /var/spool/slrnpull. The system will +automatically expire old articles once per day, and rotate your +slrnpull log (/var/spool/slrnpull/log). + +The log is not put in /var/log, to make it possible for users to run +mini-spools out of their own home directories (they would not have +permission to write the log file). + +This package does not set up automatic sucking of articles; look at +slrnpull.sh in this directory for an example of how to set this up for +a dialup link + +Manoj Kasichainula Added: contrib/1.1/slrn/current/sources/slrn-0.9.7.3-config.patch =================================================================== --- contrib/1.1/slrn/current/sources/slrn-0.9.7.3-config.patch 2004-09-14 21:02:21 UTC (rev 4781) +++ contrib/1.1/slrn/current/sources/slrn-0.9.7.3-config.patch 2004-09-14 22:10:11 UTC (rev 4782) @@ -0,0 +1,20 @@ +--- slrn-0.9.7.3/src/slrnfeat.h.config Sat Nov 3 10:16:00 2001 ++++ slrn-0.9.7.3/src/slrnfeat.h Tue Dec 4 13:59:10 2001 +@@ -167,7 +167,7 @@ + /* #define OUR_ORGANIZATION "organization-name" */ + /* #define OUR_HOSTNAME "host.name.here" */ + /* #define NNTPSERVER_NAME "my.server.name" */ +-/* #define NNTPSERVER_FILE "/usr/local/lib/news/nntp_server" */ ++#define NNTPSERVER_FILE "/usr/lib/news/nntp_server" + + #if SLRN_HAS_GROUPLENS + # undef SLRN_USE_SLTCP +@@ -177,7 +177,7 @@ + /* The rest of the files apply to slrnpull. */ + + /* This must be set to an absolute pathname. */ +-#define SLRNPULL_ROOT_DIR "/var/spool/news/slrnpull" ++#define SLRNPULL_ROOT_DIR "/var/spool/slrnpull" + + /* The remaing variables are specified as relative names with respect to the + * SLRNPULL_ROOT_DIR. Added: contrib/1.1/slrn/current/sources/slrn-0.9.7.4-utf8.patch =================================================================== --- contrib/1.1/slrn/current/sources/slrn-0.9.7.4-utf8.patch 2004-09-14 21:02:21 UTC (rev 4781) +++ contrib/1.1/slrn/current/sources/slrn-0.9.7.4-utf8.patch 2004-09-14 22:10:11 UTC (rev 4782) @@ -0,0 +1,103 @@ +Only in slrn-0.9.7.4: config.cache +Only in slrn-0.9.7.4: config.h +Only in slrn-0.9.7.4: config.log +Only in slrn-0.9.7.4: config.status +Only in slrn-0.9.7.4/doc: Makefile +Only in slrn-0.9.7.4/doc/tm: Makefile +Only in slrn-0.9.7.4/intl: Makefile +Only in slrn-0.9.7.4: Makefile +Only in slrn-0.9.7.4/po: Makefile +Only in slrn-0.9.7.4/po: Makefile.in +Only in slrn-0.9.7.4/po: POTFILES +diff -ru slrn-0.9.7.4-old/src/art.c slrn-0.9.7.4/src/art.c +--- slrn-0.9.7.4-old/src/art.c 2002-03-12 07:48:44.000000000 -0500 ++++ slrn-0.9.7.4/src/art.c 2002-07-08 23:57:28.000000000 -0400 +@@ -7661,7 +7661,7 @@ + + static void draw_tree (Slrn_Header_Type *h) /*{{{*/ + { +- unsigned char buf[2]; ++ SLsmg_Char_Type buf[2]; + + #if !defined(IBMPC_SYSTEM) + if (Graphic_Chars_Mode == 0) +@@ -7683,7 +7683,7 @@ + buf[0] = Graphic_UTee_Char; + buf[1] = Graphic_HLine_Char; + SLsmg_forward (-1); +- smg_write_char (Graphic_ULCorn_Char); ++ SLsmg_write_char (Graphic_ULCorn_Char); + } + else if ((h->sister == NULL) || + ((h->sister->flags & FAKE_PARENT) && ((h->flags & FAKE_PARENT) == 0))) +@@ -7696,7 +7696,8 @@ + buf[0] = Graphic_LTee_Char; + buf[1] = Graphic_HLine_Char; + } +- slrn_write_nchars ((char *) buf, 2); ++ SLsmg_write_char(buf[0]); ++ SLsmg_write_char(buf[1]); + + #if !defined(IBMPC_SYSTEM) + if (Graphic_Chars_Mode == ALT_CHAR_SET_MODE) SLsmg_set_char_set (0); +Only in slrn-0.9.7.4/src: art_misc.o +Only in slrn-0.9.7.4/src: art.o +Only in slrn-0.9.7.4/src: art_sort.o +Only in slrn-0.9.7.4/src: chkslang +Only in slrn-0.9.7.4/src: chkslang.o +Only in slrn-0.9.7.4/src: chmap.o +Only in slrn-0.9.7.4/src: config.h +Only in slrn-0.9.7.4/src: decode.o +Only in slrn-0.9.7.4/src: editscore.o +Only in slrn-0.9.7.4/src: group.o +Only in slrn-0.9.7.4/src: grplens.o +Only in slrn-0.9.7.4/src: hash.o +Only in slrn-0.9.7.4/src: help.o +Only in slrn-0.9.7.4/src: hooks.o +Only in slrn-0.9.7.4/src: interp.o +Only in slrn-0.9.7.4/src: Makefile +Only in slrn-0.9.7.4/src: menu.o +Only in slrn-0.9.7.4/src: mime.o +Only in slrn-0.9.7.4/src: misc.o +Only in slrn-0.9.7.4/src: nntplib.o +Only in slrn-0.9.7.4/src: post.o +Only in slrn-0.9.7.4/src: print.o +Only in slrn-0.9.7.4/src: score.o +Only in slrn-0.9.7.4/src: server.o +Only in slrn-0.9.7.4/src: slrn +diff -ru slrn-0.9.7.4-old/src/slrn.c slrn-0.9.7.4/src/slrn.c +--- slrn-0.9.7.4-old/src/slrn.c 2002-02-26 20:50:08.000000000 -0500 ++++ slrn-0.9.7.4/src/slrn.c 2002-07-08 23:55:19.000000000 -0400 +@@ -130,12 +130,12 @@ + + FILE *Slrn_Debug_Fp = NULL; + +-int Graphic_LTee_Char = SLSMG_LTEE_CHAR; +-int Graphic_UTee_Char = SLSMG_UTEE_CHAR; +-int Graphic_LLCorn_Char = SLSMG_LLCORN_CHAR; +-int Graphic_HLine_Char = SLSMG_HLINE_CHAR; +-int Graphic_VLine_Char = SLSMG_VLINE_CHAR; +-int Graphic_ULCorn_Char = SLSMG_ULCORN_CHAR; ++SLsmg_Char_Type Graphic_LTee_Char; ++SLsmg_Char_Type Graphic_UTee_Char; ++SLsmg_Char_Type Graphic_LLCorn_Char; ++SLsmg_Char_Type Graphic_HLine_Char; ++SLsmg_Char_Type Graphic_VLine_Char; ++SLsmg_Char_Type Graphic_ULCorn_Char; + + int Graphic_Chars_Mode = ALT_CHAR_SET_MODE; + +Only in slrn-0.9.7.4/src: slrndir.o +Only in slrn-0.9.7.4/src: slrn.o +Only in slrn-0.9.7.4/src: slrnpull +Only in slrn-0.9.7.4/src: slrnpull.o +Only in slrn-0.9.7.4/src: snprintf.o +Only in slrn-0.9.7.4/src: sortdate.o +Only in slrn-0.9.7.4/src: stamp2 +Only in slrn-0.9.7.4/src: stamp-h +Only in slrn-0.9.7.4/src: startup.o +Only in slrn-0.9.7.4/src: ttymsg.o +Only in slrn-0.9.7.4/src: util.o +Only in slrn-0.9.7.4/src: version.o +Only in slrn-0.9.7.4/src: vfile.o +Only in slrn-0.9.7.4/src: xover.o Added: contrib/1.1/slrn/current/sources/slrn-0.9.7.4.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/slrn/current/sources/slrn-0.9.7.4.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/slrn/current/sources/slrn-scorefile.patch =================================================================== --- contrib/1.1/slrn/current/sources/slrn-scorefile.patch 2004-09-14 21:02:21 UTC (rev 4781) +++ contrib/1.1/slrn/current/sources/slrn-scorefile.patch 2004-09-14 22:10:11 UTC (rev 4782) @@ -0,0 +1,12 @@ +--- slrn-0.9.6.2/src/score.c.foo Sat Jun 10 18:34:04 2000 ++++ slrn-0.9.6.2/src/score.c Sat Jun 10 18:34:14 2000 +@@ -853,8 +853,7 @@ + + if (NULL == (fp = fopen (file, "r"))) + { +- slrn_error (_("Unable to open score file %s"), file); +- return -1; ++ return 0; + } + + ret = phrase_score_file((char*)thisfile->filename, fp, c, &linenum, NULL); Added: contrib/1.1/slrn/current/sources/slrnpull-expire =================================================================== --- contrib/1.1/slrn/current/sources/slrnpull-expire 2004-09-14 21:02:21 UTC (rev 4781) +++ contrib/1.1/slrn/current/sources/slrnpull-expire 2004-09-14 22:10:11 UTC (rev 4782) @@ -0,0 +1,6 @@ +#!/bin/sh + +umask 022 +if [ -d /var/spool/slrnpull ]; then + exec su news -c 'slrnpull --expire' +fi Added: contrib/1.1/slrn/current/sources/slrnpull.log =================================================================== --- contrib/1.1/slrn/current/sources/slrnpull.log 2004-09-14 21:02:21 UTC (rev 4781) +++ contrib/1.1/slrn/current/sources/slrnpull.log 2004-09-14 22:10:11 UTC (rev 4782) @@ -0,0 +1,3 @@ +/var/spool/slrnpull/log { + missingok +} Added: contrib/1.1/slrn/current/specs/slrn.spec =================================================================== --- contrib/1.1/slrn/current/specs/slrn.spec 2004-09-14 21:02:21 UTC (rev 4781) +++ contrib/1.1/slrn/current/specs/slrn.spec 2004-09-14 22:10:11 UTC (rev 4782) @@ -0,0 +1,297 @@ +Name: slrn +Version: 0.9.7.4 +Release: 1jh +License: GPL +Group: contrib +Source0: http://download.sourceforge.net/slrn/slrn-%{version}.tar.bz2 +Source1: slrnpull-expire +Source2: slrnpull.log +Source4: README.rpm-slrnpull +Patch0: slrn-0.9.7.3-config.patch +Patch2: slrn-scorefile.patch +Patch3: slrn-0.9.7.4-utf8.patch +Requires: slang >= 1.2.2 +BuildRequires: slang-devel openssl-devel pkgconfig postfix gettext +BuildRoot: %{_tmppath}/%{name}-%{version}-root +URL: http://slrn.sourceforge.net/ +Summary: A threaded Internet news reader. + +%description +SLRN is a threaded Internet news reader. SLRN is highly customizable +and allows users to design complex filters for sorting or killing news +articles. SLRN works well over slow network lines. A helper utility +for reading news offline is provided in the slrn-pull package. + +%package pull +Summary: Offline news reading support for the SLRN news reader. +Group: contrib +Requires: slrn = %{version} + +%description pull +The slrn-pull package provides the slrnpull utility, which allows you +to set up a small news spool for offline news reading using the SLRN +news reader. You also need to have the slrn package installed to use +the slrnpull utility. + +%prep +%setup -q +%patch0 -p1 -b .config +%patch2 -p1 -b .scorefile +%patch3 -p1 -b .utf8 + +%build +if pkg-config openssl ; then + CPPFLAGS=`pkg-config --cflags openssl`; export CPPFLAGS + LDFLAGS=`pkg-config --libs-only-L openssl`; export LDFLAGS +fi +slrn_cv_domain=no %configure --with-ssl --with-slrnpull \ + --with-ssl-includes=%{_includedir} --with-ssl-library=%{_libdir} \ + --enable-setgid-code +make + +%install +rm -rf $RPM_BUILD_ROOT + +make install DESTDIR=$RPM_BUILD_ROOT +mkdir -p $RPM_BUILD_ROOT/etc +install -m644 doc/slrn.rc $RPM_BUILD_ROOT/etc/slrn.rc + +# slrnpull stuff +mkdir -p $RPM_BUILD_ROOT/etc/{cron.daily,logrotate.d} +install -d $RPM_BUILD_ROOT/var/spool/slrnpull/out.going +install doc/slrnpull/slrnpull.conf $RPM_BUILD_ROOT/var/spool/slrnpull +install $RPM_SOURCE_DIR/slrnpull-expire $RPM_BUILD_ROOT/etc/cron.daily +install $RPM_SOURCE_DIR/slrnpull.log $RPM_BUILD_ROOT/etc/logrotate.d/slrnpull +cp $RPM_SOURCE_DIR/README.rpm-slrnpull doc/slrnpull/README.rpm + +# makes %doc simpler +mv doc/slrnpull slrnpull-docs + +# remove unpackaged files from the buildroot +rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/slrn +rm -rf $RPM_BUILD_ROOT%{_datadir}/locale +rm -f $RPM_BUILD_ROOT%{_mandir}/man1/slrnpull.1* + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root) +%doc COPYING COPYRIGHT changes.txt README +%doc doc/* +%attr(755,root,root) /usr/bin/slrn +/usr/share/slrn +%config(noreplace) /etc/slrn.rc +%{_mandir}/man1/slrn.1* + +%files pull +%defattr(-,root,root) +%doc slrnpull-docs/* +%attr(755,root,root) /etc/cron.daily/slrnpull-expire +%attr(644,root,root) /etc/logrotate.d/slrnpull +%attr(2750,root,news) /usr/bin/slrnpull +%attr(775,news,news) %dir /var/spool/slrnpull +%attr(3777,news,news) %dir /var/spool/slrnpull/out.going +%attr(644,news,news) %config /var/spool/slrnpull/slrnpull.conf + +%changelog +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Tue Jan 7 2003 Nalin Dahyabhai 0.9.7.4-8 +- rebuild + +* Fri Jan 03 2003 Florian La Roche 0.9.7.4-7 +- make /etc/slrn.rc mode 0644 + +* Fri Dec 13 2002 Nalin Dahyabhai +- use openssl pkg-config data, if available + +* Wed Dec 11 2002 Nalin Dahyabhai 0.9.7.4-6 +- configure with --with-ssl-includes=%%{_includedir} and + --with-ssl-library=%%{_libdir}, for multilib systems + +* Wed Dec 11 2002 Tim Powers +- remove unpackaged files from the buildroot + +* Tue Jul 9 2002 Bill Nottingham 0.9.7.4-5 +- fix it to build and work with utf-8 slang + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Fri Jun 14 2002 Bill Nottingham 0.9.7.4-3 +- rebuild against new slang + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Thu Mar 14 2002 Bill Nottingham +- update to 0.9.7.4 + +* Thu Feb 21 2002 Bill Nottingham +- rebuild + +* Wed Jan 09 2002 Tim Powers +- automated rebuild + +* Tue Dec 4 2001 Bill Nottingham +- update to 0.9.7.3, reorganize specfile some +- note that slrn.rc moves from /usr/lib/slrn to /etc + +* Wed Aug 29 2001 Bill Nottingham +- update to 0.9.7.2 + +* Mon Jul 23 2001 Bill Nottingham +- add openssl buildprereq (#49699) + +* Sat Jul 21 2001 Tim Powers +- remove the applnk file. It's cluttering our menus + +* Wed Jul 18 2001 Bill Nottingham +- update to 0.9.7.1 + +* Mon Apr 16 2001 Bill Nottingham +- update to 0.9.7.0a, tweak URLs + +* Fri Mar 2 2001 Nalin Dahyabhai +- rebuild in new environment + +* Tue Nov 28 2000 Bill Nottingham +- update to 0.9.6.4 +- enable SSL +- plug some possible buffer overflows (#12750) +- install sample macros in /usr/lib/slrn + +* Thu Aug 16 2000 Bill Nottingham +- tweak summary/description + +* Fri Aug 4 2000 Bill Nottingham +- add translation to desktop entry + +* Wed Jul 12 2000 Prospector +- automatic rebuild + +* Sun Jun 18 2000 Bill Nottingham +- make slrnpull root.news, not news.news (#12428) + +* Sat Jun 10 2000 Bill Nottingham +- fix startup (#11658) +- fix manpage (#11973) + +* Mon Feb 07 2000 Preston Brown +- wmconfig -> desktop + +* Wed Feb 02 2000 Cristian Gafton +- fix descriptions +- man pages are compressed + +* Thu Jan 6 2000 Bill Nottingham +- fix typo in slrn.rc file + +* Thu Dec 30 1999 Bill Nottingham +- update to 0.9.6.2 + +* Mon Dec 20 1999 Bill Nottingham +- update to 0.9.6.0 + +* Wed Jul 21 1999 Bill Nottingham +- fix perms on slrnpull logrotate + +* Fri Jul 16 1999 Bill Nottingham +- update to 0.9.5.7 + +* Mon May 17 1999 Bill Nottingham +- update to 0.9.5.6 + +* Thu May 6 1999 Bill Nottingham +- update to 0.9.5.5 + +* Fri Apr 23 1999 Bill Nottingham +- make slrnpull setgid news + +* Mon Apr 19 1999 Bill Nottingham +- make slrnpull/log missingok + +* Sun Mar 21 1999 Cristian Gafton +- auto rebuild in the new build environment (release 4) + +* Wed Feb 24 1999 Bill Nottingham +- return of wmconfig + +* Mon Nov 9 1998 Bill Nottingham +- add bugfix patch from jed + +* Fri Nov 6 1998 Bill Nottingham +- update to 0.9.5.4 + +* Thu Oct 29 1998 Bill Nottingham +- built for Raw Hide +- added bugfix patch + +* Tue Sep 8 1998 Manoj Kasichainula +[0.9.5.3-2] +- Fixed a couple of stupid things I did. +- Took out -fno-strength-reduce. AFAIK, gcc on RH5.1 doesn't have this bug. I + use egcs which shouldn't have this bug. And if you have this bug, *and* are + recompiling on your own machin, you should have -fno-strength-reduce in your + RPM_OPT_FLAGS anyway. + +* Tue Sep 8 1998 Manoj Kasichainula +[0.9.5.3-1] +- Updated to 0.9.5.3 + +* Mon Jun 1 1998 Manoj Kasichainula +- added translations from RH 5.1 (still none for slrn-pull package) + +* Mon May 4 1998 Manoj Kasichainula +[0.9.5.2-1] +- updated to 0.9.5.2 + +* Wed Apr 22 1998 Manoj Kasichainula +[0.9.5.1-1] +- updated to 0.9.5.1 + +* Mon Apr 12 1998 Manoj Kasichainula +[0.9.4.6-3] +- updated to require slang 1.2.1 + +* Sun Apr 12 1998 Manoj Kasichainula +[0.9.4.6-2] +- updated to require slang 1.2.0 + +* Wed Feb 11 1998 Manoj Kasichainula +(my unreleased 0.9.4.6-1) +- updated to 0.9.4.6 + +* Tue Feb 3 1998 Manoj Kasichainula +- docs are now forced to 644 to prevent including /bin/sh as a requirement +- added macros in the doc directory +- should now be buildable by non-root + +* Thu Jan 29 1998 Bill Nottingham +- updated to 0.9.4.5 +- added wmconfig entry + +* Sat Sep 13 1997 Manoj Kasichainula (0.9.4.3-2) +- Fixes from JED +- default mode for slrnpull posts set to 0640, so slrnpull can read it as + non-root +- lots of pre-setup for slrnpull + - directories set up + - automatic daily expiration + - moved slrnpull directory to /var/spool/slrnpull, to match (most) docs + - more +- minor spec file changes + +* Sat Jul 12 1997 Manoj Kasichainula (0.9.4.3-1) +- Initial release for 0.9.4.3 From svn at tinysofa.org Wed Sep 15 05:48:56 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 15 Sep 2004 15:48:56 +1000 (EST) Subject: [tinysofa-svn] r4783 - tinysofa/releases/1.1/kernel/current/sources Message-ID: <20040915054856.D79D24E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-15 15:48:55 +1000 (Wed, 15 Sep 2004) New Revision: 4783 Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config Log: - enable more sata drivers Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config 2004-09-14 22:10:11 UTC (rev 4782) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config 2004-09-15 05:48:55 UTC (rev 4783) @@ -370,13 +370,13 @@ CONFIG_SCSI_SATA=y CONFIG_SCSI_SATA_SVW=m CONFIG_SCSI_ATA_PIIX=m -# CONFIG_SCSI_SATA_NV is not set +CONFIG_SCSI_SATA_NV=m CONFIG_SCSI_SATA_PROMISE=m -# CONFIG_SCSI_SATA_SX4 is not set +CONFIG_SCSI_SATA_SX4=m CONFIG_SCSI_SATA_SIL=m -# CONFIG_SCSI_SATA_SIS is not set +CONFIG_SCSI_SATA_SIS=m CONFIG_SCSI_SATA_VIA=m -# CONFIG_SCSI_SATA_VITESSE is not set +CONFIG_SCSI_SATA_VITESSE=m CONFIG_SCSI_BUSLOGIC=m # CONFIG_SCSI_OMIT_FLASHPOINT is not set # CONFIG_SCSI_CPQFCTS is not set From svn at tinysofa.org Wed Sep 15 12:33:01 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 15 Sep 2004 22:33:01 +1000 (EST) Subject: [tinysofa-svn] r4784 - in contrib/1.1: . cgdb cgdb/current cgdb/current/sources cgdb/current/specs Message-ID: <20040915123301.996884E872E@minbar.tinysofa.org> Author: gda Date: 2004-09-15 22:33:00 +1000 (Wed, 15 Sep 2004) New Revision: 4784 Added: contrib/1.1/cgdb/ contrib/1.1/cgdb/current/ contrib/1.1/cgdb/current/sources/ contrib/1.1/cgdb/current/sources/cgdb-0.5.0.tar.gz contrib/1.1/cgdb/current/specs/ contrib/1.1/cgdb/current/specs/cgdb.spec Log: new in contrib Added: contrib/1.1/cgdb/current/sources/cgdb-0.5.0.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/cgdb/current/sources/cgdb-0.5.0.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/cgdb/current/specs/cgdb.spec =================================================================== --- contrib/1.1/cgdb/current/specs/cgdb.spec 2004-09-15 05:48:55 UTC (rev 4783) +++ contrib/1.1/cgdb/current/specs/cgdb.spec 2004-09-15 12:33:00 UTC (rev 4784) @@ -0,0 +1,50 @@ +Summary: CGDB is a curses-based interface to the GNU Debugger (GDB) +Name: cgdb +Version: 0.5.0 +Release: 1gd +License: GPL +Group: conrib +URL: http://cgdb.sourceforge.net +Source: %{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-root +Requires: readline, gdb, ncurses +BuildRequires: readline-devel ncurses-devel + + +%description +CGDB is a curses-based interface to the GNU Debugger (GDB). The goal of CGDB is to be lightweight and responsive; not encumbered with unnecessary features. +The interface is designed to deliver the familiar GDB text interface, with a split screen showing the source as it executes. The UI is modeled on the classic Unix text editor, vi. Those familiar with vi should feel right at home using CGDB. + +The library responsible for communicating with GDB is called Trivial GDB (tgdb, or more accurately, libtgdb). This abstraction allows the UI code to be independent of the debugger, as well as greatly simplifying its implementation. + +Those wanting to develop other interfaces to GDB are welcome to use libtgdb as the basis for their program. Many of the headaches of parsing GDB's output and annotations can be avoided by using it. + +Some features offered by CGDB are: + + +Syntax-highlighted source window +Visual breakpoint setting +Keyboard shortcuts for common functions +Searching source window (using regexp) + +%prep +%setup -q + +%build +%configure +%make + +%install +%makeinstall + +%clean +%clean_buildroot + +%files +%defattr(-,root,root) +%{_bindir}/cgdb +%doc AUTHORS INSTALL COPYING NEWS ChangeLog README + +%changelog +* Tue Sep 14 2004 Gerald Dachs 0.5.0-1gd +- Initial build for tinysofa contrib From svn at tinysofa.org Thu Sep 16 05:50:02 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 16 Sep 2004 15:50:02 +1000 (EST) Subject: [tinysofa-svn] r4785 - in tinysofa/releases/1.1/hwdata/current: sources specs Message-ID: <20040916055002.7D9504E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-16 15:50:01 +1000 (Thu, 16 Sep 2004) New Revision: 4785 Modified: tinysofa/releases/1.1/hwdata/current/sources/hwdata-module-info tinysofa/releases/1.1/hwdata/current/specs/hwdata.spec Log: - add hpt drivers to module-info Modified: tinysofa/releases/1.1/hwdata/current/sources/hwdata-module-info =================================================================== --- tinysofa/releases/1.1/hwdata/current/sources/hwdata-module-info 2004-09-15 12:33:00 UTC (rev 4784) +++ tinysofa/releases/1.1/hwdata/current/sources/hwdata-module-info 2004-09-16 05:50:01 UTC (rev 4785) @@ -658,6 +658,15 @@ scsi_hostadapter "ICP RAID Controller" +# drivers/ide +hpt34x + scsi_hostadapter + "Highpoint 34x IDE" + +hpt366 + scsi_hostadapter + "Highpoint HPT366 IDE" + # not a module # gvp11 i2o_pci Modified: tinysofa/releases/1.1/hwdata/current/specs/hwdata.spec =================================================================== --- tinysofa/releases/1.1/hwdata/current/specs/hwdata.spec 2004-09-15 12:33:00 UTC (rev 4784) +++ tinysofa/releases/1.1/hwdata/current/specs/hwdata.spec 2004-09-16 05:50:01 UTC (rev 4785) @@ -1,7 +1,7 @@ Name: hwdata Summary: Hardware identification and configuration data Version: 0.44 -Release: 21jh +Release: 22jh License: GPL Group: main Source: hwdata-%{version}.tar.gz @@ -62,7 +62,7 @@ %changelog -* Tue Sep 14 2004 Jaakko Heinonen 0.44-21jh +* Tue Sep 14 2004 Jaakko Heinonen 0.44-22jh - add module information for hpt ide-controllers * Thu Aug 05 2004 tsintegrate 0.44-20ts From svn at tinysofa.org Thu Sep 16 06:52:17 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 16 Sep 2004 16:52:17 +1000 (EST) Subject: [tinysofa-svn] r4786 - tinysofa/releases/1.1/kernel/current/sources Message-ID: <20040916065217.6A5C44E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-16 16:52:16 +1000 (Thu, 16 Sep 2004) New Revision: 4786 Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config Log: - build hpt drivers in kernel Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config 2004-09-16 05:50:01 UTC (rev 4785) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config 2004-09-16 06:52:16 UTC (rev 4786) @@ -280,9 +280,9 @@ CONFIG_BLK_DEV_TRIFLEX=m # CONFIG_BLK_DEV_CY82C693 is not set # CONFIG_BLK_DEV_CS5530 is not set -CONFIG_BLK_DEV_HPT34X=m +CONFIG_BLK_DEV_HPT34X=y # CONFIG_HPT34X_AUTODMA is not set -CONFIG_BLK_DEV_HPT366=m +CONFIG_BLK_DEV_HPT366=y CONFIG_BLK_DEV_PIIX=y # CONFIG_BLK_DEV_NS87415 is not set # CONFIG_BLK_DEV_OPTI621 is not set Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config 2004-09-16 05:50:01 UTC (rev 4785) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config 2004-09-16 06:52:16 UTC (rev 4786) @@ -434,9 +434,9 @@ CONFIG_BLK_DEV_TRIFLEX=m CONFIG_BLK_DEV_CY82C693=m CONFIG_BLK_DEV_CS5530=m -CONFIG_BLK_DEV_HPT34X=m +CONFIG_BLK_DEV_HPT34X=y # CONFIG_HPT34X_AUTODMA is not set -CONFIG_BLK_DEV_HPT366=m +CONFIG_BLK_DEV_HPT366=y CONFIG_BLK_DEV_PIIX=y CONFIG_BLK_DEV_NS87415=m CONFIG_BLK_DEV_OPTI621=m Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config 2004-09-16 05:50:01 UTC (rev 4785) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config 2004-09-16 06:52:16 UTC (rev 4786) @@ -422,9 +422,9 @@ CONFIG_BLK_DEV_TRIFLEX=m CONFIG_BLK_DEV_CY82C693=m CONFIG_BLK_DEV_CS5530=m -CONFIG_BLK_DEV_HPT34X=m +CONFIG_BLK_DEV_HPT34X=y # CONFIG_HPT34X_AUTODMA is not set -CONFIG_BLK_DEV_HPT366=m +CONFIG_BLK_DEV_HPT366=y CONFIG_BLK_DEV_PIIX=y CONFIG_BLK_DEV_NS87415=m CONFIG_BLK_DEV_OPTI621=m From svn at tinysofa.org Thu Sep 16 07:27:01 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 16 Sep 2004 17:27:01 +1000 (EST) Subject: [tinysofa-svn] r4787 - in contrib/1.1/gdk-pixbuf/current: sources specs Message-ID: <20040916072701.702834E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-16 17:27:01 +1000 (Thu, 16 Sep 2004) New Revision: 4787 Added: contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-bmp-colormap.patch contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-bmploop.patch contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-ico-width.patch contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-loaders.patch Modified: contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec Log: - add gdk-pixbuf-0.22.0-bmp-colormap.patch, gdk-pixbuf-0.22.0-bmploop.patch, gdk-pixbuf-0.22.0-ico-width.patch, gdk-pixbuf-0.22.0-loaders.patch Added: contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-bmp-colormap.patch =================================================================== --- contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-bmp-colormap.patch 2004-09-16 06:52:16 UTC (rev 4786) +++ contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-bmp-colormap.patch 2004-09-16 07:27:01 UTC (rev 4787) @@ -0,0 +1,85 @@ +--- gdk-pixbuf-0.22.0/gdk-pixbuf/io-bmp.c.bmp-colormap 2002-09-27 17:12:40.000000000 -0400 ++++ gdk-pixbuf-0.22.0/gdk-pixbuf/io-bmp.c 2004-03-03 08:58:43.000000000 -0500 +@@ -129,6 +129,7 @@ + guint depth; + guint Negative; /* Negative = 1 -> top down BMP, + Negative = 0 -> bottom up BMP */ ++ guint n_colors; + }; + + /* Data needed for the "state" during decompression */ +@@ -153,8 +154,8 @@ + guint Lines; /* # of finished lines */ + + guchar *buff; +- gint BufferSize; +- gint BufferDone; ++ guint BufferSize; ++ guint BufferDone; + + guchar (*Colormap)[3]; + +@@ -258,6 +259,8 @@ + DecodeHeader (unsigned char *BFH, unsigned char *BIH, + struct bmp_progressive_state *State) + { ++ gint clrUsed; ++ + g_assert (State->read_state == READ_STATE_HEADERS); + + /* FIXME this is totally unrobust against bogus image data. */ +@@ -295,6 +298,23 @@ + return FALSE; + } + ++ clrUsed = (int) (BIH[35] << 24) + (BIH[34] << 16) + (BIH[33] << 8) + (BIH[32]); ++ if (clrUsed != 0) ++ State->Header.n_colors = clrUsed; ++ else ++ State->Header.n_colors = 1 << State->Header.depth; ++ ++ if (State->Header.n_colors > 1 << State->Header.depth) { ++#if 0 ++ g_set_error (error, ++ GDK_PIXBUF_ERROR, ++ GDK_PIXBUF_ERROR_CORRUPT_IMAGE, ++ _("BMP image has bogus header data")); ++#endif ++ State->read_state = READ_STATE_ERROR; ++ return FALSE; ++ } ++ + State->Type = State->Header.depth; /* This may be less trivial someday */ + + /* Negative heights indicates bottom-down pixelorder */ +@@ -422,16 +442,25 @@ + struct bmp_progressive_state *State) + { + gint i; +- ++ gint samples; ++ + g_assert (State->read_state == READ_STATE_PALETTE); + ++ samples = (State->Header.size == 12 ? 3 : 4); ++ if (State->BufferSize < State->Header.n_colors * samples) { ++ State->BufferSize = State->Header.n_colors * samples; ++ if (!grow_buffer (State)) ++ return FALSE; ++ return TRUE; ++ } ++ + State->Colormap = g_malloc ((1 << State->Header.depth) * sizeof (*State->Colormap)); + +- for (i = 0; i < (1 << State->Header.depth); i++) ++ for (i = 0; i < State->Header.n_colors; i++) + { +- State->Colormap[i][0] = buff[i * (State->Header.size == 12 ? 3 : 4)]; +- State->Colormap[i][1] = buff[i * (State->Header.size == 12 ? 3 : 4) + 1]; +- State->Colormap[i][2] = buff[i * (State->Header.size == 12 ? 3 : 4) + 2]; ++ State->Colormap[i][0] = buff[i * samples]; ++ State->Colormap[i][1] = buff[i * samples + 1]; ++ State->Colormap[i][2] = buff[i * samples + 2]; + } + + State->read_state = READ_STATE_DATA; Added: contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-bmploop.patch =================================================================== --- contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-bmploop.patch 2004-09-16 06:52:16 UTC (rev 4786) +++ contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-bmploop.patch 2004-09-16 07:27:01 UTC (rev 4787) @@ -0,0 +1,22 @@ +--- gdk-pixbuf-0.22.0/gdk-pixbuf/io-bmp.c.bmploop 2004-08-20 14:18:30.178162560 -0400 ++++ gdk-pixbuf-0.22.0/gdk-pixbuf/io-bmp.c 2004-08-20 14:18:42.997213768 -0400 +@@ -899,8 +899,18 @@ + guchar c; + gint idx; + +- if (context->compr.y >= context->Header.height) ++ /* context->compr.y might be past the last line because we are ++ * on padding past the end of a valid data, or we might have hit ++ * out-of-bounds data. Either way we just eat-and-ignore the ++ * rest of the file. Doing the check only here and not when ++ * we change y below is fine since BufferSize is always 2 here ++ * and the BMP file format always starts new data on 16-bit ++ * boundaries. ++ */ ++ if (context->compr.y >= context->Header.height) { ++ context->BufferDone = 0; + return TRUE; ++ } + + y = context->compr.y; + Added: contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-ico-width.patch =================================================================== --- contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-ico-width.patch 2004-09-16 06:52:16 UTC (rev 4786) +++ contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-ico-width.patch 2004-09-16 07:27:01 UTC (rev 4787) @@ -0,0 +1,11 @@ +--- gdk-pixbuf-0.22.0/gdk-pixbuf/io-ico.c.miscfix 2002-09-27 18:19:15.000000000 -0400 ++++ gdk-pixbuf-0.22.0/gdk-pixbuf/io-ico.c 2004-03-03 09:30:00.000000000 -0500 +@@ -360,7 +360,7 @@ + else if (State->Type == 24) + State->LineWidth = State->Header.width * 3; + else if (State->Type == 16) +- State->LineWidth = State->Header.height * 2; ++ State->LineWidth = State->Header.width * 2; + else if (State->Type == 8) + State->LineWidth = State->Header.width * 1; + else if (State->Type == 4) Added: contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-loaders.patch =================================================================== --- contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-loaders.patch 2004-09-16 06:52:16 UTC (rev 4786) +++ contrib/1.1/gdk-pixbuf/current/sources/gdk-pixbuf-0.22.0-loaders.patch 2004-09-16 07:27:01 UTC (rev 4787) @@ -0,0 +1,83 @@ +--- gdk-pixbuf-0.22.0/gdk-pixbuf/io-ico.c.loaders 2004-09-15 13:32:28.397302000 -0400 ++++ gdk-pixbuf-0.22.0/gdk-pixbuf/io-ico.c 2004-09-15 13:32:28.441258000 -0400 +@@ -330,6 +330,9 @@ + + State->HeaderSize+=I; + ++ if (State->HeaderSize < 0) ++ return FALSE; ++ + if (State->HeaderSize>State->BytesInHeaderBuf) { + guchar *tmp=realloc(State->HeaderBuf,State->HeaderSize); + if (!tmp) +--- gdk-pixbuf-0.22.0/gdk-pixbuf/io-xpm.c.loaders 2001-03-01 15:16:28.000000000 -0500 ++++ gdk-pixbuf-0.22.0/gdk-pixbuf/io-xpm.c 2004-09-15 13:41:09.804373000 -0400 +@@ -243,8 +243,8 @@ + break; + else { + if (numnames > 0) { +- space -= 1; +- strcat (color, " "); ++ strncat (color, " ", space); ++ space -= MIN (space, 1); + } + + strncat (color, temp, space); +@@ -352,16 +352,31 @@ + return NULL; + } + sscanf (buffer, "%d %d %d %d", &w, &h, &n_col, &cpp); +- if (cpp >= 32) { +- g_warning ("XPM has more than 31 chars per pixel."); ++ if (cpp <= 0 || cpp >= 32) { ++ g_warning ("XPM has invalid number of chars per pixel."); + return NULL; + } ++ if (n_col <= 0 || n_col >= G_MAXINT / (cpp + 1)) { ++ g_warning ("XPM file has invalid number of colors"); ++ return NULL; ++ } + + /* The hash is used for fast lookups of color from chars */ + color_hash = g_hash_table_new (g_str_hash, g_str_equal); + +- name_buf = g_new (gchar, n_col * (cpp + 1)); +- colors = g_new (_XPMColor, n_col); ++ name_buf = malloc (n_col * (cpp + 1)); ++ if (!name_buf) { ++ g_warning ("Cannot allocate memory for loading XPM image"); ++ g_hash_table_destroy (color_hash); ++ return NULL; ++ } ++ colors = (_XPMColor *) malloc (sizeof (_XPMColor) * n_col); ++ if (!colors) { ++ g_warning ("Cannot allocate memory for loading XPM image"); ++ g_hash_table_destroy (color_hash); ++ free (name_buf); ++ return NULL; ++ } + + for (cnt = 0; cnt < n_col; cnt++) { + gchar *color_name; +@@ -404,8 +419,8 @@ + + if (!pixels) { + g_hash_table_destroy (color_hash); +- g_free (colors); +- g_free (name_buf); ++ free (colors); ++ free (name_buf); + return NULL; + } + +@@ -440,8 +455,8 @@ + } + + g_hash_table_destroy (color_hash); +- g_free (colors); +- g_free (name_buf); ++ free (colors); ++ free (name_buf); + + return gdk_pixbuf_new_from_data (pixels, GDK_COLORSPACE_RGB, is_trans, 8, + w, h, is_trans ? (w * 4) : (w * 3), Modified: contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec =================================================================== --- contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec 2004-09-16 06:52:16 UTC (rev 4786) +++ contrib/1.1/gdk-pixbuf/current/specs/gdk-pixbuf.spec 2004-09-16 07:27:01 UTC (rev 4787) @@ -1,10 +1,14 @@ Name: gdk-pixbuf Summary: The GdkPixBuf image handling library Version: 0.22.0 -Release: 1jh +Release: 2jh Copyright: LGPL Group: contrib Source: ftp://ftp.gnome.org/pub/GNOME/sources/%{name}/%{name}-%{version}.tar.bz2 +Patch0: gdk-pixbuf-0.22.0-bmp-colormap.patch +Patch1: gdk-pixbuf-0.22.0-bmploop.patch +Patch2: gdk-pixbuf-0.22.0-ico-width.patch +Patch3: gdk-pixbuf-0.22.0-loaders.patch URL: http://www.gnome.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-root Requires: gtk12+, glib12 @@ -36,6 +40,10 @@ %prep %setup -q +%patch0 -p1 +%patch1 -p1 +%patch2 -p1 +%patch3 -p1 %build export LDFLAGS="-L${PWD}/gdk-pixbuf/.libs" @@ -75,6 +83,10 @@ %{_datadir}/gnome/html/* %changelog +* Thu Sep 16 2004 Jaakko Heinonen 0.22.0-2jh +- add gdk-pixbuf-0.22.0-bmp-colormap.patch, gdk-pixbuf-0.22.0-bmploop.patch, + gdk-pixbuf-0.22.0-ico-width.patch, gdk-pixbuf-0.22.0-loaders.patch + * Mon Sep 13 2004 tsintegrate 0.22.0-1jh - current (0.22.0-1jh) integrated as 0.22.0-1jh From svn at tinysofa.org Thu Sep 16 07:40:14 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 16 Sep 2004 17:40:14 +1000 (EST) Subject: [tinysofa-svn] r4788 - contrib/1.1/imlib/current/specs Message-ID: <20040916074014.37C134E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-16 17:40:13 +1000 (Thu, 16 Sep 2004) New Revision: 4788 Modified: contrib/1.1/imlib/current/specs/imlib.spec Log: - correct -devel requirements - fix %defattr - add imlib-1.9.14-bounds.patch Modified: contrib/1.1/imlib/current/specs/imlib.spec =================================================================== --- contrib/1.1/imlib/current/specs/imlib.spec 2004-09-16 07:27:01 UTC (rev 4787) +++ contrib/1.1/imlib/current/specs/imlib.spec 2004-09-16 07:40:13 UTC (rev 4788) @@ -1,15 +1,16 @@ Summary: Imlib is an advanced replacement library for libraries like libXpm Name: imlib Version: 1.9.14 -Release: 1gd +Release: 2jh License: GPL Group: contrib Source0: http://ftp.gnome.org/pub/GNOME/sources/imlib/1.9/%{name}-%{version}.tar.bz2 +Patch0: imlib-1.9.14-bounds.patch BuildRequires: libtiff-devel libjpeg-devel libungif-devel glib12 glib12-devel BuildRequires: gtk12+ gtk12+-devel xorg-x11-devel libpng-devel Requires: libtiff libjpeg libungif glib12 gtk12+ xorg-x11-libs Requires: libpng -BuildRoot: %{_tmppath}/%{name}-root +BuildRoot: %{_tmppath}/%{name}-%{version}-root %description Imlib is an advanced replacement library for libraries like libXpm that @@ -19,22 +20,23 @@ %package devel Summary: imlib development libraries Group: contrib -Requires: %{name} = %{version} +Requires: %{name} = %{version}-%{release} +Requires: libtiff-devel libjpeg-devel libungif-devel libpng-devel +Requires: glib12-devel gtk12+-devel xorg-x11-devel %description devel -imlib development libraries +Imlib development libraries and headers. %prep %setup -q +%patch0 -p1 %build %configure -make +%make %install - -mkdir -p $RPM_BUILD_ROOT %makeinstall %post -p /sbin/ldconfig @@ -45,7 +47,7 @@ %clean_buildroot %files -%defattr(0755,root,root) +%defattr(-,root,root,755) %doc README AUTHORS ChangeLog NEWS %config(noreplace) %{_sysconfdir}/* %{_libdir}/*.so.* @@ -53,7 +55,7 @@ %{_mandir}/man1/* %files devel -%defattr(0755,root,root) +%defattr(-,root,root,755) %doc doc/*.gif doc/*.html %{_bindir}/imlib-config %{_libdir}/*.so @@ -64,6 +66,11 @@ %changelog +* Thu Sep 16 2004 Jaakko Heinonen 1.9.14-2jh +- correct -devel requirements +- fix %defattr +- add imlib-1.9.14-bounds.patch + * Mon Sep 13 2004 tsintegrate 1.9.14-1gd - current (1.9.14-1gd) integrated as 1.9.14-1gd From svn at tinysofa.org Thu Sep 16 08:59:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 16 Sep 2004 18:59:35 +1000 (EST) Subject: [tinysofa-svn] r4789 - in tinysofa/releases/1.1/apr-util/current: sources specs Message-ID: <20040916085935.088D94E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-16 18:59:34 +1000 (Thu, 16 Sep 2004) New Revision: 4789 Added: tinysofa/releases/1.1/apr-util/current/sources/apr-util-0.9.4-CAN-2004-0786.patch Modified: tinysofa/releases/1.1/apr-util/current/specs/apr-util.spec Log: - CAN-2004-0786 security fix Added: tinysofa/releases/1.1/apr-util/current/sources/apr-util-0.9.4-CAN-2004-0786.patch =================================================================== --- tinysofa/releases/1.1/apr-util/current/sources/apr-util-0.9.4-CAN-2004-0786.patch 2004-09-16 07:40:13 UTC (rev 4788) +++ tinysofa/releases/1.1/apr-util/current/sources/apr-util-0.9.4-CAN-2004-0786.patch 2004-09-16 08:59:34 UTC (rev 4789) @@ -0,0 +1,32 @@ +--- apr-util/test/testuri.c ++++ apr-util/test/testuri.c +@@ -36,6 +37,10 @@ + + struct aup_test aup_tests[] = + { ++ { "http://[/::1]/index.html", APR_EGENERAL }, ++ { "http://[", APR_EGENERAL }, ++ { "http://[?::1]/index.html", APR_EGENERAL }, ++ + { + "http://127.0.0.1:9999/asdf.html", + 0, "http", "127.0.0.1:9999", NULL, NULL, "127.0.0.1", "9999", "/asdf.html", NULL, NULL, 9999 +--- apr-util/uri/apr_uri.c ++++ apr-util/uri/apr_uri.c +@@ -307,11 +307,11 @@ + if (*hostinfo == '[') { + v6_offset1 = 1; + v6_offset2 = 2; +- s = uri; +- do { +- --s; +- } while (s >= hostinfo && *s != ':' && *s != ']'); +- if (s < hostinfo || *s == ']') { ++ s = memchr(hostinfo, ']', uri - hostinfo); ++ if (s == NULL) { ++ return APR_EGENERAL; ++ } ++ if (*++s != ':') { + s = NULL; /* no port */ + } + } Modified: tinysofa/releases/1.1/apr-util/current/specs/apr-util.spec =================================================================== --- tinysofa/releases/1.1/apr-util/current/specs/apr-util.spec 2004-09-16 07:40:13 UTC (rev 4788) +++ tinysofa/releases/1.1/apr-util/current/specs/apr-util.spec 2004-09-16 08:59:34 UTC (rev 4789) @@ -4,7 +4,7 @@ Summary: Apache Portable Runtime Utility library Name: apr-util Version: 0.9.4 -Release: 1ts +Release: 2jh Epoch: 1 License: Apache Software License Group: main @@ -18,6 +18,7 @@ Patch5: apr-util-0.9.4-sdbmnames.patch Patch6: apr-util-0.9.4-xlate.patch Patch7: apr-util-0.9.4-shapass.patch +Patch8: apr-util-0.9.4-CAN-2004-0786.patch BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildPrereq: autoconf, libtool, apr-devel >= 1:0.9.4-1 BuildPrereq: openldap-devel, db4-devel, expat-devel, cyrus-sasl-devel, openssl-devel @@ -96,6 +97,9 @@ %{_includedir}/apr-%{apuver}/*.h %changelog +* Thu Sep 16 2004 Jaakko Heinonen 0.9.4-2jh +- CAN-2004-0786 security fix + * Thu Aug 05 2004 tsintegrate 0.9.4-1ts - current (0.9.4-1jh) integrated as 0.9.4-1ts for release 1.1 From svn at tinysofa.org Thu Sep 16 10:23:05 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 16 Sep 2004 20:23:05 +1000 (EST) Subject: [tinysofa-svn] r4791 - tinysofa/releases/1.1/httpd/current/sources Message-ID: <20040916102305.15BB14E873C@minbar.tinysofa.org> Author: jh Date: 2004-09-16 20:23:04 +1000 (Thu, 16 Sep 2004) New Revision: 4791 Added: tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0747.patch tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0748.patch tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0751.patch tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0786.patch tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0809.patch Log: - add actually CAN* patches Added: tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0747.patch =================================================================== --- tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0747.patch 2004-09-16 10:22:31 UTC (rev 4790) +++ tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0747.patch 2004-09-16 10:23:04 UTC (rev 4791) @@ -0,0 +1,132 @@ +diff -Nur httpd-2.0~/server/util.c httpd-2.0/server/util.c +--- httpd-2.0~/server/util.c ++++ httpd-2.0/server/util.c +@@ -722,7 +722,7 @@ + + *resp++ = '\0'; + #if RESOLVE_ENV_PER_TOKEN +- return ap_resolve_env(p,result); ++ return (char *)ap_resolve_env(p,result); + #else + return result; + #endif +@@ -782,39 +782,87 @@ + */ + AP_DECLARE(const char *) ap_resolve_env(apr_pool_t *p, const char * word) + { +- char tmp[ MAX_STRING_LEN ]; +- const char *s, *e; +- tmp[0] = '\0'; +- +- if (!(s=ap_strchr_c(word,'$'))) +- return word; +- +- do { +- /* XXX - relies on strncat() to add '\0' +- */ +- strncat(tmp,word,s - word); +- if ((s[1] == '{') && (e=ap_strchr_c(s,'}'))) { +- const char *e2 = e; +- char *var; +- word = e + 1; +- var = apr_pstrndup(p, s+2, e2-(s+2)); +- e = getenv(var); +- if (e) { +- strcat(tmp,e); +- } else { +- strncat(tmp, s, e2-s); +- strcat(tmp,"}"); +- } +- } else { +- /* ignore invalid strings */ +- word = s+1; +- strcat(tmp,"$"); +- }; +- } while ((s=ap_strchr_c(word,'$'))); +- strcat(tmp,word); ++# define SMALL_EXPANSION 5 ++ struct sll { ++ struct sll *next; ++ const char *string; ++ apr_size_t len; ++ } *result, *current, sresult[SMALL_EXPANSION]; ++ char *res_buf, *cp; ++ const char *s, *e, *ep; ++ unsigned spc; ++ apr_size_t outlen; ++ ++ s = ap_strchr_c(word, '$'); ++ if (!s) { ++ return word; ++ } ++ ++ /* well, actually something to do */ ++ ep = word + strlen(word); ++ spc = 0; ++ result = current = &(sresult[spc++]); ++ current->next = NULL; ++ current->string = word; ++ current->len = s - word; ++ outlen = current->len; ++ ++ do { ++ /* prepare next entry */ ++ if (current->len) { ++ current->next = (spc < SMALL_EXPANSION) ++ ? &(sresult[spc++]) ++ : (struct sll *)apr_palloc(p, ++ sizeof(*current->next)); ++ current = current->next; ++ current->next = NULL; ++ current->len = 0; ++ } + +- return apr_pstrdup(p,tmp); ++ if (*s == '$') { ++ if (s[1] == '{' && (e = ap_strchr_c(s, '}'))) { ++ word = getenv(apr_pstrndup(p, s+2, e-s-2)); ++ if (word) { ++ current->string = word; ++ current->len = strlen(word); ++ outlen += current->len; ++ } ++ else { ++ current->string = s; ++ current->len = e - s + 1; ++ outlen += current->len; ++ } ++ s = e + 1; ++ } ++ else { ++ current->string = s++; ++ current->len = 1; ++ ++outlen; ++ } ++ } ++ else { ++ word = s; ++ s = ap_strchr_c(s, '$'); ++ current->string = word; ++ current->len = s ? s - word : ep - word; ++ outlen += current->len; ++ } ++ } while (s && *s); ++ ++ /* assemble result */ ++ res_buf = cp = apr_palloc(p, outlen + 1); ++ do { ++ if (result->len) { ++ memcpy(cp, result->string, result->len); ++ cp += result->len; ++ } ++ result = result->next; ++ } while (result); ++ res_buf[outlen] = '\0'; ++ ++ return res_buf; + } ++ + AP_DECLARE(int) ap_cfg_closefile(ap_configfile_t *cfp) + { + #ifdef DEBUG + Added: tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0748.patch =================================================================== --- tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0748.patch 2004-09-16 10:22:31 UTC (rev 4790) +++ tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0748.patch 2004-09-16 10:23:04 UTC (rev 4791) @@ -0,0 +1,18 @@ +=================================================================== +RCS file: /home/cvspublic/httpd-2.0/modules/ssl/ssl_engine_io.c,v +retrieving revision 1.100.2.14 +retrieving revision 1.100.2.15 +diff -u -r1.100.2.14 -r1.100.2.15 +--- httpd-2.0/modules/ssl/ssl_engine_io.c 2004/04/15 19:41:39 1.100.2.14 ++++ httpd-2.0/modules/ssl/ssl_engine_io.c 2004/08/23 14:59:52 1.100.2.15 +@@ -587,6 +587,10 @@ + while (1) { + + if (!inctx->filter_ctx->pssl) { ++ /* Ensure a non-zero error code is returned */ ++ if (inctx->rc == APR_SUCCESS) { ++ inctx->rc = APR_EGENERAL; ++ } + break; + } + Added: tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0751.patch =================================================================== --- tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0751.patch 2004-09-16 10:22:31 UTC (rev 4790) +++ tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0751.patch 2004-09-16 10:23:04 UTC (rev 4791) @@ -0,0 +1,22 @@ +=================================================================== +RCS file: /home/cvspublic/httpd-2.0/modules/ssl/ssl_engine_io.c,v +retrieving revision 1.100.2.15 +retrieving revision 1.100.2.16 +diff -u -r1.100.2.15 -r1.100.2.16 +--- httpd-2.0/modules/ssl/ssl_engine_io.c 2004/08/23 14:59:52 1.100.2.15 ++++ httpd-2.0/modules/ssl/ssl_engine_io.c 2004/08/27 09:03:24 1.100.2.16 +@@ -562,8 +562,12 @@ + *len = bytes; + if (inctx->mode == AP_MODE_SPECULATIVE) { + /* We want to rollback this read. */ +- inctx->cbuf.value -= bytes; +- inctx->cbuf.length += bytes; ++ if (inctx->cbuf.length > 0) { ++ inctx->cbuf.value -= bytes; ++ inctx->cbuf.length += bytes; ++ } else { ++ char_buffer_write(&inctx->cbuf, buf, (int)bytes); ++ } + return APR_SUCCESS; + } + /* This could probably be *len == wanted, but be safe from stray Added: tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0786.patch =================================================================== --- tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0786.patch 2004-09-16 10:22:31 UTC (rev 4790) +++ tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0786.patch 2004-09-16 10:23:04 UTC (rev 4791) @@ -0,0 +1,32 @@ +--- 2.0/srclib/apr-util/test/testuri.c ++++ 2.0/srclib/apr-util/test/testuri.c +@@ -36,6 +37,10 @@ + + struct aup_test aup_tests[] = + { ++ { "http://[/::1]/index.html", APR_EGENERAL }, ++ { "http://[", APR_EGENERAL }, ++ { "http://[?::1]/index.html", APR_EGENERAL }, ++ + { + "http://127.0.0.1:9999/asdf.html", + 0, "http", "127.0.0.1:9999", NULL, NULL, "127.0.0.1", "9999", "/asdf.html", NULL, NULL, 9999 +--- 2.0/srclib/apr-util/uri/apr_uri.c ++++ 2.0/srclib/apr-util/uri/apr_uri.c +@@ -307,11 +307,11 @@ + if (*hostinfo == '[') { + v6_offset1 = 1; + v6_offset2 = 2; +- s = uri; +- do { +- --s; +- } while (s >= hostinfo && *s != ':' && *s != ']'); +- if (s < hostinfo || *s == ']') { ++ s = memchr(hostinfo, ']', uri - hostinfo); ++ if (s == NULL) { ++ return APR_EGENERAL; ++ } ++ if (*++s != ':') { + s = NULL; /* no port */ + } + } Added: tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0809.patch =================================================================== --- tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0809.patch 2004-09-16 10:22:31 UTC (rev 4790) +++ tinysofa/releases/1.1/httpd/current/sources/CAN-2004-0809.patch 2004-09-16 10:23:04 UTC (rev 4791) @@ -0,0 +1,27 @@ +=================================================================== +RCS file: /home/cvspublic/httpd-2.0/modules/dav/fs/lock.c,v +retrieving revision 1.32 +retrieving revision 1.33 +diff -u -r1.32 -r1.33 +--- httpd-2.0/modules/dav/fs/lock.c 2004/09/12 22:14:57 1.32 ++++ httpd-2.0/modules/dav/fs/lock.c 2004/09/12 22:24:05 1.33 +@@ -1469,13 +1469,13 @@ + } + if (dav_fs_do_refresh(dp_scan, ltl, new_time)) { + /* the lock was refreshed. return the lock. */ +- newlock = dav_fs_alloc_lock(lockdb, ip->key, dp->locktoken); ++ newlock = dav_fs_alloc_lock(lockdb, ip->key, dp_scan->locktoken); + newlock->is_locknull = !resource->exists; +- newlock->scope = dp->f.scope; +- newlock->type = dp->f.type; +- newlock->depth = dp->f.depth; +- newlock->timeout = dp->f.timeout; +- newlock->owner = dp->owner; ++ newlock->scope = dp_scan->f.scope; ++ newlock->type = dp_scan->f.type; ++ newlock->depth = dp_scan->f.depth; ++ newlock->timeout = dp_scan->f.timeout; ++ newlock->owner = dp_scan->owner; + newlock->auth_user = dp_scan->auth_user; + + newlock->next = *locks; From svn at tinysofa.org Thu Sep 16 10:37:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 16 Sep 2004 20:37:30 +1000 (EST) Subject: [tinysofa-svn] r4792 - tinysofa/releases/1.1/httpd/current/specs Message-ID: <20040916103730.6B2804E873C@minbar.tinysofa.org> Author: jh Date: 2004-09-16 20:37:30 +1000 (Thu, 16 Sep 2004) New Revision: 4792 Modified: tinysofa/releases/1.1/httpd/current/specs/httpd.spec Log: - patch with -p1 - update changelog Modified: tinysofa/releases/1.1/httpd/current/specs/httpd.spec =================================================================== --- tinysofa/releases/1.1/httpd/current/specs/httpd.spec 2004-09-16 10:23:04 UTC (rev 4791) +++ tinysofa/releases/1.1/httpd/current/specs/httpd.spec 2004-09-16 10:37:30 UTC (rev 4792) @@ -7,7 +7,7 @@ Summary: Apache HTTP Server Name: httpd Version: 2.0.50 -Release: 3ts +Release: 4jh URL: http://httpd.apache.org/ Source0: http://www.apache.org/dist/httpd/httpd-%{version}.tar.gz Source1: index.html.tinysofa @@ -190,11 +190,11 @@ %patch90 -p1 -b .workerstack %patch91 -p1 -b .suexecmsg -%patch100 -%patch101 -%patch102 -%patch103 -%patch104 +%patch100 -p1 +%patch101 -p1 +%patch102 -p1 +%patch103 -p1 +%patch104 -p1 # Patch in vendor/release string sed "s/@RELEASE@/%{vstring}/" < %{PATCH70} | patch -p1 @@ -587,6 +587,12 @@ %{_mandir}/man8/suexec.8* %changelog +* Thu Sep 16 2004 Jaakko Heinonen 2.0.50-4jh +- CAN-2004-0747, CAN-2004-0748, CAN-2004-0751, CAN-2004-0786 and CAN-2004-0809 + fixes +- add sysconfig template +- httpd-2.0.50-userdir.patch + * Thu Aug 05 2004 tsintegrate 2.0.50-3ts - current (2.0.50-3jh) integrated as 2.0.50-3ts for release 1.1 From svn at tinysofa.org Thu Sep 16 10:22:32 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 16 Sep 2004 20:22:32 +1000 (EST) Subject: [tinysofa-svn] r4790 - in tinysofa/releases/1.1/httpd/current: sources specs Message-ID: <20040916102232.0C44E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-16 20:22:31 +1000 (Thu, 16 Sep 2004) New Revision: 4790 Added: tinysofa/releases/1.1/httpd/current/sources/httpd-2.0.50-userdir.patch tinysofa/releases/1.1/httpd/current/sources/httpd.sysconf Modified: tinysofa/releases/1.1/httpd/current/specs/httpd.spec Log: - CAN-2004-0747, CAN-2004-0748, CAN-2004-0751, CAN-2004-0786, CAN-2004-0809 fixes - add sysconfig template - httpd-2.0.50-userdir.patch Added: tinysofa/releases/1.1/httpd/current/sources/httpd-2.0.50-userdir.patch =================================================================== --- tinysofa/releases/1.1/httpd/current/sources/httpd-2.0.50-userdir.patch 2004-09-16 08:59:34 UTC (rev 4789) +++ tinysofa/releases/1.1/httpd/current/sources/httpd-2.0.50-userdir.patch 2004-09-16 10:22:31 UTC (rev 4790) @@ -0,0 +1,11 @@ +--- httpd-2.0.50/modules/mappers/mod_userdir.c.userdir ++++ httpd-2.0.50/modules/mappers/mod_userdir.c +@@ -350,7 +350,7 @@ + + ap_hook_translate_name(translate_userdir,aszPre,aszSucc,APR_HOOK_MIDDLE); + #ifdef HAVE_UNIX_SUEXEC +- ap_hook_get_suexec_identity(get_suexec_id_doer,NULL,NULL,APR_HOOK_MIDDLE); ++ ap_hook_get_suexec_identity(get_suexec_id_doer,NULL,NULL,APR_HOOK_FIRST); + #endif + } + Added: tinysofa/releases/1.1/httpd/current/sources/httpd.sysconf =================================================================== --- tinysofa/releases/1.1/httpd/current/sources/httpd.sysconf 2004-09-16 08:59:34 UTC (rev 4789) +++ tinysofa/releases/1.1/httpd/current/sources/httpd.sysconf 2004-09-16 10:22:31 UTC (rev 4790) @@ -0,0 +1,22 @@ +# Configuration file for the httpd service. + +# +# The default processing model (MPM) is the process-based +# 'prefork' model. A thread-based model, 'worker', is also +# available, but does not work with some modules (such as PHP). +# The service must be stopped before changing this variable. +# +#HTTPD=/usr/sbin/httpd.worker + +# +# To pass additional options (for instance, -D definitions) to the +# httpd binary at startup, set OPTIONS here. +# +#OPTIONS= + +# +# By default, the httpd process is started in the C locale; to +# change the locale in which the server runs, the HTTPD_LANG +# variable can be set. +# +#HTTPD_LANG=C Modified: tinysofa/releases/1.1/httpd/current/specs/httpd.spec =================================================================== --- tinysofa/releases/1.1/httpd/current/specs/httpd.spec 2004-09-16 08:59:34 UTC (rev 4789) +++ tinysofa/releases/1.1/httpd/current/specs/httpd.spec 2004-09-16 10:22:31 UTC (rev 4790) @@ -46,6 +46,7 @@ Patch32: httpd-2.0.48-vhost.patch Patch35: httpd-2.0.49-eocbucket.patch Patch37: httpd-2.0.46-autoindex.patch +Patch38: httpd-2.0.50-userdir.patch # Features/functional changes Patch70: httpd-2.0.48-release.patch Patch71: httpd-2.0.40-xfsz.patch @@ -66,6 +67,14 @@ Patch89: httpd-2.0.49-headerssl.patch Patch90: httpd-2.0.49-workerstack.patch Patch91: httpd-2.0.49-suexecmsg.patch + +# post 2.0.51 security patches updates +Patch100: http://www.apache.org/dist/httpd/patches/apply_to_2.0.50/CAN-2004-0747.patch +Patch101: http://www.apache.org/dist/httpd/patches/apply_to_2.0.50/CAN-2004-0748.patch +Patch102: http://www.apache.org/dist/httpd/patches/apply_to_2.0.50/CAN-2004-0751.patch +Patch103: http://www.apache.org/dist/httpd/patches/apply_to_2.0.50/CAN-2004-0786.patch +Patch104: http://www.apache.org/dist/httpd/patches/apply_to_2.0.50/CAN-2004-0809.patch + License: Apache Software License Group: main BuildRoot: %{_tmppath}/%{name}-%{version-}-root @@ -104,6 +113,7 @@ %package manual Group: documentation Summary: Documentation for the Apache HTTP server. +Requires: httpd = %{version}-%{release} Obsoletes: secureweb-manual, apache-manual %description manual @@ -128,7 +138,7 @@ %package suexec Group: main Summary: suexec binary for the Apache HTTP server -Requires: httpd = %{version}-%{release} +PreReq: httpd = %{version}-%{release} %description suexec This package includes the /usr/sbin/suexec binary which can be installed @@ -180,6 +190,12 @@ %patch90 -p1 -b .workerstack %patch91 -p1 -b .suexecmsg +%patch100 +%patch101 +%patch102 +%patch103 +%patch104 + # Patch in vendor/release string sed "s/@RELEASE@/%{vstring}/" < %{PATCH70} | patch -p1 @@ -315,6 +331,10 @@ install -m 644 $RPM_SOURCE_DIR/httpd.conf \ $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf/httpd.conf +mkdir $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig +install -m 644 $RPM_SOURCE_DIR/httpd.sysconf \ + $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/httpd + # mod_ssl bits for suffix in crl crt csr key prm; do mkdir $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf/ssl.${suffix} From svn at tinysofa.org Thu Sep 16 10:49:16 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 16 Sep 2004 20:49:16 +1000 (EST) Subject: [tinysofa-svn] r4793 - tinysofa/releases/1.1/httpd/current/specs Message-ID: <20040916104916.5245A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-16 20:49:16 +1000 (Thu, 16 Sep 2004) New Revision: 4793 Modified: tinysofa/releases/1.1/httpd/current/specs/httpd.spec Log: - Source5: httpd.sysconf Modified: tinysofa/releases/1.1/httpd/current/specs/httpd.spec =================================================================== --- tinysofa/releases/1.1/httpd/current/specs/httpd.spec 2004-09-16 10:37:30 UTC (rev 4792) +++ tinysofa/releases/1.1/httpd/current/specs/httpd.spec 2004-09-16 10:49:16 UTC (rev 4793) @@ -13,6 +13,7 @@ Source1: index.html.tinysofa Source3: httpd.logrotate Source4: httpd.init +Source5: httpd.sysconf Source6: tinysofa_cs.png Source7: imagine.png Source10: httpd.conf From svn at tinysofa.org Thu Sep 16 11:17:58 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 16 Sep 2004 21:17:58 +1000 (EST) Subject: [tinysofa-svn] r4794 - tinysofa/releases/1.1/httpd/current/specs Message-ID: <20040916111758.F29084E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-16 21:17:58 +1000 (Thu, 16 Sep 2004) New Revision: 4794 Modified: tinysofa/releases/1.1/httpd/current/specs/httpd.spec Log: - add %{_sysconfdir}/sysconfig/httpd to files Modified: tinysofa/releases/1.1/httpd/current/specs/httpd.spec =================================================================== --- tinysofa/releases/1.1/httpd/current/specs/httpd.spec 2004-09-16 10:49:16 UTC (rev 4793) +++ tinysofa/releases/1.1/httpd/current/specs/httpd.spec 2004-09-16 11:17:58 UTC (rev 4794) @@ -522,6 +522,8 @@ %dir %{_sysconfdir}/httpd/conf.d %{_sysconfdir}/httpd/conf.d/README +%config(noreplace) %{_sysconfdir}/sysconfig/httpd + %{_bindir}/ab %{_bindir}/ht* %{_bindir}/logresolve From svn at tinysofa.org Thu Sep 16 14:44:16 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 17 Sep 2004 00:44:16 +1000 (EST) Subject: [tinysofa-svn] r4795 - in tinysofa/releases/1.1/linux-headers/current: sources specs Message-ID: <20040916144416.8EAAC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-17 00:44:16 +1000 (Fri, 17 Sep 2004) New Revision: 4795 Added: tinysofa/releases/1.1/linux-headers/current/sources/glibc-kernheaders.tar.bz2 tinysofa/releases/1.1/linux-headers/current/specs/linux-libc-headers.spec Removed: tinysofa/releases/1.1/linux-headers/current/sources/kernel-headers-2.4.tar.bz2 tinysofa/releases/1.1/linux-headers/current/specs/linux-headers.spec Log: - change package name to linux-libc-headers - update glibc-kernheaders.tar.bz2 from Fedora Added: tinysofa/releases/1.1/linux-headers/current/sources/glibc-kernheaders.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/linux-headers/current/sources/glibc-kernheaders.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Deleted: tinysofa/releases/1.1/linux-headers/current/sources/kernel-headers-2.4.tar.bz2 =================================================================== (Binary files differ) Deleted: tinysofa/releases/1.1/linux-headers/current/specs/linux-headers.spec =================================================================== --- tinysofa/releases/1.1/linux-headers/current/specs/linux-headers.spec 2004-09-16 11:17:58 UTC (rev 4794) +++ tinysofa/releases/1.1/linux-headers/current/specs/linux-headers.spec 2004-09-16 14:44:16 UTC (rev 4795) @@ -1,282 +0,0 @@ -Summary: Header files for the Linux kernel for use by glibc -Name: linux-headers -Version: 2.4.26 -Release: 8ts -License: GPL -Group: development -ExclusiveOS: Linux -Provides: kernel-headers glibc-kernheaders -Prereq: coreutils initscripts bash - -BuildRoot: %{_tmppath}/%{name}-%{version}-root - -%ifarch i386 i586 i686 athlon -%define _arch i386 -%endif - -Source0: kernel-headers-2.4.tar.bz2 - - -%description -Kernel-headers includes the C header files that specify the interface -between the Linux kernel and userspace libraries and programs. The -header files define structures and constants that are needed for -building most standard programs and are also needed for rebuilding the -glibc package - - - -%prep -%setup -q -c - -%build - -%install -mkdir -p $RPM_BUILD_ROOT -tar -cf - usr | tar -xf - -C $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT/usr/include/asm -pushd $RPM_BUILD_ROOT/usr/include -d1=asm-%{_arch} -d2=asm -%ifarch x86_64 -p1='defined __x86_64__' -d2=asm-i386 -p2='defined __i386__' -%endif -%ifarch sparc sparc64 -d1=asm-sparc -p1='defined __sparc__ && !defined __arch64__' -d2=asm-sparc64 -p2='defined __sparc__ && defined __arch64__' -%endif -%ifarch ppc ppc64 -d1=asm-ppc -p1='defined __powerpc__ && !defined __powerpc64__' -d2=asm-ppc64 -p2='defined __powerpc64__' -%endif -%ifarch s390 s390x -d1=asm-s390 -p1='defined __s390__ && !defined __s390x__' -d2=asm-s390x -p2='defined __s390x__' -%endif -for i in asm-*; do - case $i in $d1|$d2) ;; *) rm -rf $i;; esac -done -if [ "$d2" = "asm" ]; then - rm -rf asm - mv $d1 asm -else - for f in `find $d1 $d2 -name \*.h -exec basename {} \; | sort -u`; do - F=`echo $f | tr a-z. A-Z_` - ( cat <" - else - echo "# error <$d1/$f> does not exist" - fi - echo "# endif" - echo "# if $p2" - if [ -f $d2/$f ]; then - echo "# include <$d2/$f>" - else - echo "# error <$d2/$f> does not exist" - fi - echo "# endif" - echo "#endif" - ) > asm/$f - done -fi -popd - -%clean -%clean_buildroot - - -%pre -[ -L /usr/include/linux ] && rm -f /usr/include/linux || : -[ -L /usr/include/asm ] && rm -f /usr/include/asm || : -%ifarch sparc -[ -L /usr/include/asm-sparc ] && rm -f /usr/include/asm-sparc -[ -L /usr/include/asm-sparc64 ] && rm -f /usr/include/asm-sparc64 -%endif -exit 0 - -%post -exit 0 - -### -### file lists -### - -%files -%defattr(-,root,root) -/usr/include/linux -/usr/include/asm* - - -%changelog -* Thu Aug 05 2004 tsintegrate 2.4.26-8ts -- current (2.4.26-8jh) integrated as 2.4.26-8ts for release 1.1 - -* Thu Jul 1 2004 Jaakko Heinonen 2.4.26-8jh -- provide glibc-kernheaders - -* Fri Jun 18 2004 tsintegrate 2.4.26-7ts -- current (2.4.26-7ts) integrated as 2.4.26-7ts for release 1.0-U2 - -* Wed Apr 21 2004 Jakub Jelinek 2.4-8.46 -- ppc/ppc64 mq_* syscall numbers - -* Fri Apr 16 2004 Jakub Jelinek 2.4-8.45 -- update syscall numbers from latest kernel -- remove ia32.h and ia32_unistd.h on x86-64 - -* Mon Mar 15 2004 Bill Nottingham 2.4-8.44 -- update wireless.h - -* Tue Dec 09 2003 Arjan van de Ven 2.4-8.38 -- remove a lot of kernel-only crud - -* Tue Dec 2 2003 Jeremy Katz 2.4-8.37 -- add BLKGETSIZE64 - -* Wed Oct 22 2003 Arjan van de Ven 2.4-8.35 -- fix broken shift_hz -* Wed Sep 24 2003 Jakub Jelinek 2.4-8.34 -- fix ppc64 sigcontext.h (#104915) - -* Mon Sep 8 2003 Bill Nottingham -- oops, bring arp_tables.h back - -* Wed Sep 3 2003 Bill Nottingham -- remove some exports of __constant_hton* - -* Sat Aug 23 2003 Arjan van de Ven -- fix typo in netdevice.h as per #102951 - -* Thu Aug 21 2003 Arjan van de Ven -- update personality.h for the amd64 3Gb 32 bit personality - -* Tue Aug 19 2003 Arjan van de Ven -- add asm/types.h to a few .h files that need it -- remove unistd.h from linux/limits.h; it breaks samba builds - -* Tue Aug 19 2003 Doug Ledford -- Add updated prctl.h file that includes process timing defines - -* Sat Aug 16 2003 Jakub Jelinek 2.4-8.27 -- add tgkill to unistd.h on ppc64, x86_64 and alpha - -* Thu Jul 31 2003 Jakub Jelinek 2.4-8.26 -- update ia64/sigcontext.h from 2.5.73+ (#101344) - -* Wed Jul 30 2003 Arjan van de Ven 2.4-8.25 -- make ppc64/uaccess.h match the upstream ABI - -* Mon Jul 28 2003 Jakub Jelinek 2.4-8.24 -- rebuilt - -* Mon Jul 28 2003 Jakub Jelinek 2.4-8.23 -- add tgkill to unistd.h on i386, ia64 and ppc32 -- remove __KERNEL_SYSCALLS__ cruft on ia64/ppc32 - -* Mon Jul 14 2003 Arjan van de Ven 2.4-8.22 -- add arptables headers - -* Fri Jun 27 2003 Arjan van de Ven 2.4.8.20 -- update ptrace headers for amd64 - -* Wed Jun 18 2003 Arjan van de Ven 2.4-8.19 -- update for new bonding interface - -* Fri Jun 06 2003 Arjan van de Ven 2.4-8.18 -- change syscall stubs to use the glibc ones - -* Thu Jun 5 2003 Jakub Jelinek 2.4-8.17 -- rebuilt - -* Mon Jun 2 2003 Jakub Jelinek 2.4-8.16 -- add new scsi majors to (#91696) - -* Fri May 30 2003 Arjan van de Ven 2.4-8.15 -- add amd64 nptl syscalls - -* Tue May 27 2003 Arjan van de Ven 2.4-8.14 -- unifdef'd a bunch of header files for __KERNEL__ - -* Sun Apr 13 2003 Arjan van de Ven 2.4-8.13 -- remove more kernel private files - -* Fri Apr 11 2003 Jakub Jelinek 2.4-8.12 -- update header -- remove i386 , replace it with a warning and include - (Arjan van de Ven) - -* Mon Feb 10 2003 Jakub Jelinek 2.4-8.11 -- update syscall numbers for all arches from 2.5.64 headers - -* Fri Feb 7 2003 Bill Nottingham 2.4-8.10 -- update more wireless headers - -* Wed Feb 5 2003 Bill Nottingham 2.4-8.9 -- update wireless headers - -* Thu Jan 30 2003 Jakub Jelinek 2.4-8.7 -- make /usr/include/asm during build if it doesn't exist - -* Thu Jan 30 2003 Jakub Jelinek 2.4-8.6 -- remove unpackaged file - -* Thu Jan 30 2003 Bill Nottingham -- update netfilter headers - -* Thu Jan 30 2003 Jakub Jelinek 2.4-8.5 -- don't include etc. in - -* Thu Jan 16 2003 Jakub Jelinek 2.4-8.4 -- updated s390 headers, added s390x headers -- HTB in -- no -debuginfo subpackage - -* Thu Dec 12 2002 Jakub Jelinek 2.4-8.3 -- update version.h from kernel-2.4.20-0.pp.6 - -* Tue Nov 26 2002 Jakub Jelinek 2.4-8.2 -- update unistd.h from kernel-2.4.19-0.pp.19 - -* Thu Oct 10 2002 Jakub Jelinek -- generate stubs automatically -- remove /usr/include/scsi from file list - -* Thu Oct 10 2002 Arjan van de Ven -- fix #warning in and - -* Thu Dec 6 2001 Arjan van de Ven -- fix misplaced #endif - -* Tue Dec 4 2001 Arjan van de Ven -- fix version.h to not include /boot/kernel.h - -* Wed Oct 31 2001 Arjan van de Ven -- Initial packaging Copied: tinysofa/releases/1.1/linux-headers/current/specs/linux-libc-headers.spec (from rev 4235, tinysofa/releases/1.1/linux-headers/current/specs/linux-headers.spec) =================================================================== --- tinysofa/releases/1.1/linux-headers/current/specs/linux-headers.spec 2004-09-03 13:11:54 UTC (rev 4235) +++ tinysofa/releases/1.1/linux-headers/current/specs/linux-libc-headers.spec 2004-09-16 14:44:16 UTC (rev 4795) @@ -0,0 +1,286 @@ +Summary: Header files for the Linux kernel for use by glibc +Name: linux-libc-headers +Version: 2.4 +Release: 1jh +License: GPL +Group: development +ExclusiveOS: Linux +Provides: kernel-headers glibc-kernheaders linux-libc-headers +Obsoletes: linux-headers +Provides: linux-headers = %{version}.26 +Prereq: coreutils initscripts bash + +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%ifarch i386 i586 i686 athlon +%define _arch i386 +%endif + +Source0: glibc-kernheaders.tar.bz2 + + +%description +Kernel-headers includes the C header files that specify the interface +between the Linux kernel and userspace libraries and programs. The +header files define structures and constants that are needed for +building most standard programs and are also needed for rebuilding the +glibc package + + +%prep +%setup -q -c + +%build + +%install +mkdir -p $RPM_BUILD_ROOT/usr/include/asm +tar -cf - usr | tar -xf - -C $RPM_BUILD_ROOT +pushd $RPM_BUILD_ROOT/usr/include +d1=asm-%{_arch} +d2=asm +%ifarch x86_64 +p1='defined __x86_64__' +d2=asm-i386 +p2='defined __i386__' +%endif +%ifarch sparc sparc64 +d1=asm-sparc +p1='defined __sparc__ && !defined __arch64__' +d2=asm-sparc64 +p2='defined __sparc__ && defined __arch64__' +%endif +%ifarch ppc ppc64 +d1=asm-ppc +p1='defined __powerpc__ && !defined __powerpc64__' +d2=asm-ppc64 +p2='defined __powerpc64__' +%endif +%ifarch s390 s390x +d1=asm-s390 +p1='defined __s390__ && !defined __s390x__' +d2=asm-s390x +p2='defined __s390x__' +%endif +for i in asm-*; do + case $i in $d1|$d2) ;; *) rm -rf $i;; esac +done +if [ "$d2" = "asm" ]; then + rm -rf asm + mv $d1 asm +else + for f in `find $d1 $d2 -name \*.h -exec basename {} \; | sort -u`; do + F=`echo $f | tr a-z. A-Z_` + ( cat <" + else + echo "# error <$d1/$f> does not exist" + fi + echo "# endif" + echo "# if $p2" + if [ -f $d2/$f ]; then + echo "# include <$d2/$f>" + else + echo "# error <$d2/$f> does not exist" + fi + echo "# endif" + echo "#endif" + ) > asm/$f + done +fi +popd + +%clean +%clean_buildroot + + +%pre +[ -L /usr/include/linux ] && rm -f /usr/include/linux || : +[ -L /usr/include/asm ] && rm -f /usr/include/asm || : +%ifarch sparc +[ -L /usr/include/asm-sparc ] && rm -f /usr/include/asm-sparc +[ -L /usr/include/asm-sparc64 ] && rm -f /usr/include/asm-sparc64 +%endif +exit 0 + +%post +exit 0 + +### +### file lists +### + +%files +%defattr(-,root,root) +/usr/include/linux +/usr/include/asm* + + +%changelog +* Thu Sep 16 2004 Jaakko Heinonen 2.4-1jh +- change package name to linux-libc-headers +- update glibc-kernheaders.tar.bz2 from Fedora + +* Thu Aug 05 2004 tsintegrate 2.4.26-8ts +- current (2.4.26-8jh) integrated as 2.4.26-8ts for release 1.1 + +* Thu Jul 1 2004 Jaakko Heinonen 2.4.26-8jh +- provide glibc-kernheaders + +* Fri Jun 18 2004 tsintegrate 2.4.26-7ts +- current (2.4.26-7ts) integrated as 2.4.26-7ts for release 1.0-U2 + +* Wed Apr 21 2004 Jakub Jelinek 2.4-8.46 +- ppc/ppc64 mq_* syscall numbers + +* Fri Apr 16 2004 Jakub Jelinek 2.4-8.45 +- update syscall numbers from latest kernel +- remove ia32.h and ia32_unistd.h on x86-64 + +* Mon Mar 15 2004 Bill Nottingham 2.4-8.44 +- update wireless.h + +* Tue Dec 09 2003 Arjan van de Ven 2.4-8.38 +- remove a lot of kernel-only crud + +* Tue Dec 2 2003 Jeremy Katz 2.4-8.37 +- add BLKGETSIZE64 + +* Wed Oct 22 2003 Arjan van de Ven 2.4-8.35 +- fix broken shift_hz +* Wed Sep 24 2003 Jakub Jelinek 2.4-8.34 +- fix ppc64 sigcontext.h (#104915) + +* Mon Sep 8 2003 Bill Nottingham +- oops, bring arp_tables.h back + +* Wed Sep 3 2003 Bill Nottingham +- remove some exports of __constant_hton* + +* Sat Aug 23 2003 Arjan van de Ven +- fix typo in netdevice.h as per #102951 + +* Thu Aug 21 2003 Arjan van de Ven +- update personality.h for the amd64 3Gb 32 bit personality + +* Tue Aug 19 2003 Arjan van de Ven +- add asm/types.h to a few .h files that need it +- remove unistd.h from linux/limits.h; it breaks samba builds + +* Tue Aug 19 2003 Doug Ledford +- Add updated prctl.h file that includes process timing defines + +* Sat Aug 16 2003 Jakub Jelinek 2.4-8.27 +- add tgkill to unistd.h on ppc64, x86_64 and alpha + +* Thu Jul 31 2003 Jakub Jelinek 2.4-8.26 +- update ia64/sigcontext.h from 2.5.73+ (#101344) + +* Wed Jul 30 2003 Arjan van de Ven 2.4-8.25 +- make ppc64/uaccess.h match the upstream ABI + +* Mon Jul 28 2003 Jakub Jelinek 2.4-8.24 +- rebuilt + +* Mon Jul 28 2003 Jakub Jelinek 2.4-8.23 +- add tgkill to unistd.h on i386, ia64 and ppc32 +- remove __KERNEL_SYSCALLS__ cruft on ia64/ppc32 + +* Mon Jul 14 2003 Arjan van de Ven 2.4-8.22 +- add arptables headers + +* Fri Jun 27 2003 Arjan van de Ven 2.4.8.20 +- update ptrace headers for amd64 + +* Wed Jun 18 2003 Arjan van de Ven 2.4-8.19 +- update for new bonding interface + +* Fri Jun 06 2003 Arjan van de Ven 2.4-8.18 +- change syscall stubs to use the glibc ones + +* Thu Jun 5 2003 Jakub Jelinek 2.4-8.17 +- rebuilt + +* Mon Jun 2 2003 Jakub Jelinek 2.4-8.16 +- add new scsi majors to (#91696) + +* Fri May 30 2003 Arjan van de Ven 2.4-8.15 +- add amd64 nptl syscalls + +* Tue May 27 2003 Arjan van de Ven 2.4-8.14 +- unifdef'd a bunch of header files for __KERNEL__ + +* Sun Apr 13 2003 Arjan van de Ven 2.4-8.13 +- remove more kernel private files + +* Fri Apr 11 2003 Jakub Jelinek 2.4-8.12 +- update header +- remove i386 , replace it with a warning and include + (Arjan van de Ven) + +* Mon Feb 10 2003 Jakub Jelinek 2.4-8.11 +- update syscall numbers for all arches from 2.5.64 headers + +* Fri Feb 7 2003 Bill Nottingham 2.4-8.10 +- update more wireless headers + +* Wed Feb 5 2003 Bill Nottingham 2.4-8.9 +- update wireless headers + +* Thu Jan 30 2003 Jakub Jelinek 2.4-8.7 +- make /usr/include/asm during build if it doesn't exist + +* Thu Jan 30 2003 Jakub Jelinek 2.4-8.6 +- remove unpackaged file + +* Thu Jan 30 2003 Bill Nottingham +- update netfilter headers + +* Thu Jan 30 2003 Jakub Jelinek 2.4-8.5 +- don't include etc. in + +* Thu Jan 16 2003 Jakub Jelinek 2.4-8.4 +- updated s390 headers, added s390x headers +- HTB in +- no -debuginfo subpackage + +* Thu Dec 12 2002 Jakub Jelinek 2.4-8.3 +- update version.h from kernel-2.4.20-0.pp.6 + +* Tue Nov 26 2002 Jakub Jelinek 2.4-8.2 +- update unistd.h from kernel-2.4.19-0.pp.19 + +* Thu Oct 10 2002 Jakub Jelinek +- generate stubs automatically +- remove /usr/include/scsi from file list + +* Thu Oct 10 2002 Arjan van de Ven +- fix #warning in and + +* Thu Dec 6 2001 Arjan van de Ven +- fix misplaced #endif + +* Tue Dec 4 2001 Arjan van de Ven +- fix version.h to not include /boot/kernel.h + +* Wed Oct 31 2001 Arjan van de Ven +- Initial packaging From svn at tinysofa.org Thu Sep 16 14:47:52 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 17 Sep 2004 00:47:52 +1000 (EST) Subject: [tinysofa-svn] r4796 - tinysofa/releases/1.1 Message-ID: <20040916144752.35C4F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-17 00:47:52 +1000 (Fri, 17 Sep 2004) New Revision: 4796 Added: tinysofa/releases/1.1/linux-libc-headers/ Removed: tinysofa/releases/1.1/linux-headers/ Log: - rename to linux-libc-headers Copied: tinysofa/releases/1.1/linux-libc-headers (from rev 4795, tinysofa/releases/1.1/linux-headers) From svn at tinysofa.org Thu Sep 16 15:53:26 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 17 Sep 2004 01:53:26 +1000 (EST) Subject: [tinysofa-svn] r4797 - in tinysofa/releases/1.1/foomatic-filters/current: sources specs Message-ID: <20040916155326.87A894E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-17 01:53:26 +1000 (Fri, 17 Sep 2004) New Revision: 4797 Removed: tinysofa/releases/1.1/foomatic-filters/current/sources/foomatic-filters-3.0.1.tar.gz Modified: tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec Log: - 3.0.2 which fixes a privilege escalation vulnerability - spec cleanup Deleted: tinysofa/releases/1.1/foomatic-filters/current/sources/foomatic-filters-3.0.1.tar.gz =================================================================== (Binary files differ) Modified: tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec =================================================================== --- tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec 2004-09-16 14:47:52 UTC (rev 4796) +++ tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec 2004-09-16 15:53:26 UTC (rev 4797) @@ -1,13 +1,11 @@ -%define foomaticversion 3.0.1 - -Summary: Foomatic is a database-driven system for integrating free software printer drivers with common spoolers under Unix. +Summary: Foomatic is a database-driven system for integrating free software printer drivers with common spoolers under Unix. Name: foomatic-filters -Version: 3.0.1 -Release: 5ts +Version: 3.0.2 +Release: 1jh BuildArch: noarch License: GPL Group: extra -Source: http://www.linuxprinting.org/download/foomatic/foomatic-filters-%{foomaticversion}.tar.gz +Source: http://www.linuxprinting.org/download/foomatic/foomatic-filters-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-root BuildRequires: cups ghostscript-cups Requires: cups @@ -23,31 +21,44 @@ %prep %setup -q + %build %configure -make +%make + %install -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != "/" ] && rm -rf "$RPM_BUILD_ROOT" -mkdir -p $RPM_BUILD_ROOT/{usr/{{bin,lib/{cups/filter,ppr/{lib,interfaces}},share/man/man1}},etc/foomatic} -make DESTDIR=$RPM_BUILD_ROOT install +%{__mkdir_p} \ + $RPM_BUILD_ROOT%{_bindir} \ + $RPM_BUILD_ROOT%{_libdir}/{cups/filter,ppr/{lib,interfaces}} \ + $RPM_BUILD_ROOT%{_mandir}/man1 \ + $RPM_BUILD_ROOT%{_sysconfdir}/foomatic +%makeinstall_std + + %clean -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != "/" ] && rm -rf "$RPM_BUILD_ROOT" +%clean_buildroot + %files %defattr(-,root,root) %doc README USAGE -%config(noreplace) /etc/foomatic/filter.conf -/usr/bin/* -/usr/lib/cups/filter/* -/usr/lib/ppr/interfaces/* -/usr/lib/ppr/lib/* +%config(noreplace) %{_sysconfdir}/foomatic/filter.conf +%{_bindir}/* +%{_libdir}/cups/filter/* +%{_libdir}/ppr/interfaces/* +%{_libdir}/ppr/lib/* %{_mandir}/man1/* %exclude %{_sysconfdir}/foomatic/filter.conf.sample + %changelog +* Thu Sep 16 2004 Jaakko Heinonen 3.0.2-1jh +- 3.0.2 which fixes a privilege escalation vulnerability +- spec cleanup + * Thu Aug 05 2004 tsintegrate 3.0.1-5ts - current (3.0.1-5jh) integrated as 3.0.1-5ts for release 1.1 From svn at tinysofa.org Fri Sep 17 05:48:34 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 17 Sep 2004 15:48:34 +1000 (EST) Subject: [tinysofa-svn] r4798 - tinysofa/releases/1.1/foomatic-filters/current/specs Message-ID: <20040917054834.1230C4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-17 15:48:33 +1000 (Fri, 17 Sep 2004) New Revision: 4798 Modified: tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec Log: - %doc permission fix Modified: tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec =================================================================== --- tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec 2004-09-16 15:53:26 UTC (rev 4797) +++ tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec 2004-09-17 05:48:33 UTC (rev 4798) @@ -43,12 +43,13 @@ %files %defattr(-,root,root) -%doc README USAGE %config(noreplace) %{_sysconfdir}/foomatic/filter.conf %{_bindir}/* %{_libdir}/cups/filter/* %{_libdir}/ppr/interfaces/* %{_libdir}/ppr/lib/* +%defattr(644,root,root,755) +%doc README USAGE %{_mandir}/man1/* %exclude %{_sysconfdir}/foomatic/filter.conf.sample From svn at tinysofa.org Sun Sep 19 09:28:40 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 19 Sep 2004 19:28:40 +1000 (EST) Subject: [tinysofa-svn] r4799 - in tinysofa/releases/1.1/sed/current: sources specs Message-ID: <20040919092840.746304E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-19 19:28:39 +1000 (Sun, 19 Sep 2004) New Revision: 4799 Added: tinysofa/releases/1.1/sed/current/sources/sed-4.1.2.tar.gz Removed: tinysofa/releases/1.1/sed/current/sources/sed-4.1.tar.gz Modified: tinysofa/releases/1.1/sed/current/specs/sed.spec Log: - 4.1.2 - spec cleanup Added: tinysofa/releases/1.1/sed/current/sources/sed-4.1.2.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/sed/current/sources/sed-4.1.2.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Deleted: tinysofa/releases/1.1/sed/current/sources/sed-4.1.tar.gz =================================================================== (Binary files differ) Modified: tinysofa/releases/1.1/sed/current/specs/sed.spec =================================================================== --- tinysofa/releases/1.1/sed/current/specs/sed.spec 2004-09-17 05:48:33 UTC (rev 4798) +++ tinysofa/releases/1.1/sed/current/specs/sed.spec 2004-09-19 09:28:39 UTC (rev 4799) @@ -1,14 +1,17 @@ +%ifos linux +%define _bindir /bin +%endif + Summary: A GNU stream text editor. Name: sed -Version: 4.1 -Release: 2ts +Version: 4.1.2 +Release: 1jh License: GPL Group: main Source0: ftp://ftp.gnu.org/gnu/sed/sed-%{version}.tar.gz -Prereq: htmlinfo -BuildRequires: texinfo +%info_requires Prefix: %{_prefix} -BuildRoot: %{_tmppath}/%{name}-root +BuildRoot: %{_tmppath}/%{name}-%{version}-root %description The sed (Stream EDitor) editor is a stream or batch (non-interactive) @@ -21,51 +24,38 @@ %setup -q %build -%configure --exec-prefix=%{_prefix} \ - --mandir='%{_mandir}' \ - --bindir=/bin -make LDFLAGS=-s -cd doc -makeinfo --html --no-split sed.texi +%configure +%make %install -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != "/" ] && rm -rf "$RPM_BUILD_ROOT" -mkdir -p $RPM_BUILD_ROOT/usr/share/html/sed +%makeinstall -make prefix=$RPM_BUILD_ROOT/%{_prefix} \ - exec_prefix=$RPM_BUILD_ROOT/%{_prefix} \ - DESTDIR=$RPM_BUILD_ROOT install +%install_info doc/sed.texi +%nuke_info -install -m644 doc/sed.html $RPM_BUILD_ROOT/usr/share/html/sed/ - -( cd $RPM_BUILD_ROOT - mkdir ./bin - mv ./usr/bin/sed ./bin/sed - rmdir ./usr/bin - rm -f ./usr/share/info/dir -) - -rm -rf $RPM_BUILD_ROOT/usr/share/info - %find_lang %{name} %post -/usr/sbin/htmlinfo_update.sh +%info_post %postun -/usr/sbin/htmlinfo_update.sh +%info_postun %clean -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT +%clean_buildroot %files -f %{name}.lang %defattr(-,root,root) %doc BUGS NEWS README THANKS -/bin/sed -/usr/share/html/sed -/usr/share/man/man1/sed.1* +%{_bindir}/sed +%{_htmldir}/%{name} +%{_mandir}/man1/sed.1* %changelog +* Sun Sep 19 2004 Jaakko Heinonen 4.1.2-1jh +- 4.1.2 +- spec cleanup + * Thu Aug 05 2004 tsintegrate 4.1-2ts - current (4.1-2jh) integrated as 4.1-2ts for release 1.1 From svn at tinysofa.org Sun Sep 19 10:01:46 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 19 Sep 2004 20:01:46 +1000 (EST) Subject: [tinysofa-svn] r4800 - contrib/1.1/dnsmasq/current/specs Message-ID: <20040919100146.CDBFE4E872E@minbar.tinysofa.org> Author: gda Date: 2004-09-19 20:01:43 +1000 (Sun, 19 Sep 2004) New Revision: 4800 Modified: contrib/1.1/dnsmasq/current/specs/dnsmasq.spec Log: new upstream version Modified: contrib/1.1/dnsmasq/current/specs/dnsmasq.spec =================================================================== --- contrib/1.1/dnsmasq/current/specs/dnsmasq.spec 2004-09-19 09:28:39 UTC (rev 4799) +++ contrib/1.1/dnsmasq/current/specs/dnsmasq.spec 2004-09-19 10:01:43 UTC (rev 4800) @@ -1,8 +1,8 @@ Summary: A lightweight caching nameserver Name: dnsmasq -Version: 2.13 -Release: 1gd -Group: contrib +Version: 2.14 +Release: 1gd +Group: Network/Services Source: http://www.thekelleys.org.uk/dnsmasq/%{name}-%{version}.tar.gz Source1: %{name}.initd Source2: %{name}.conf @@ -63,8 +63,8 @@ %changelog -* Mon Sep 13 2004 tsintegrate 2.13-1gd -- current (2.13-1gd) integrated as 2.13-1gd +* Sun Sep 19 2004 Gerald Dachs 2.14-1gd +- new upstream version * Sat Aug 14 2004 Gerald Dachs 2.13-1gd - new upstream version From svn at tinysofa.org Sun Sep 19 10:02:35 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 19 Sep 2004 20:02:35 +1000 (EST) Subject: [tinysofa-svn] r4801 - contrib/1.1/dnsmasq/current/sources Message-ID: <20040919100235.704BB4E872E@minbar.tinysofa.org> Author: gda Date: 2004-09-19 20:02:32 +1000 (Sun, 19 Sep 2004) New Revision: 4801 Added: contrib/1.1/dnsmasq/current/sources/dnsmasq-2.14.tar.gz Removed: contrib/1.1/dnsmasq/current/sources/dnsmasq-2.13.tar.gz Log: new upstream version Deleted: contrib/1.1/dnsmasq/current/sources/dnsmasq-2.13.tar.gz =================================================================== (Binary files differ) Added: contrib/1.1/dnsmasq/current/sources/dnsmasq-2.14.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/dnsmasq/current/sources/dnsmasq-2.14.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream From svn at tinysofa.org Sun Sep 19 10:28:11 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 19 Sep 2004 20:28:11 +1000 (EST) Subject: [tinysofa-svn] r4802 - in tinysofa/releases/1.1/gawk/current: sources specs Message-ID: <20040919102811.4E6A24E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-19 20:28:10 +1000 (Sun, 19 Sep 2004) New Revision: 4802 Added: tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.4-doc.tar.gz tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.4-ps.tar.gz tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.4.tar.bz2 Removed: tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.3-doc.tar.gz tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.3-ps.tar.gz tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.3.tar.bz2 Modified: tinysofa/releases/1.1/gawk/current/specs/gawk.spec Log: - 3.1.4 - spec cleanup - install more doc files - use standard libexec dir Deleted: tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.3-doc.tar.gz =================================================================== (Binary files differ) Deleted: tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.3-ps.tar.gz =================================================================== (Binary files differ) Deleted: tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.3.tar.bz2 =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.4-doc.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.4-doc.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.4-ps.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.4-ps.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.4.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/gawk/current/sources/gawk-3.1.4.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/gawk/current/specs/gawk.spec =================================================================== --- tinysofa/releases/1.1/gawk/current/specs/gawk.spec 2004-09-19 10:02:32 UTC (rev 4801) +++ tinysofa/releases/1.1/gawk/current/specs/gawk.spec 2004-09-19 10:28:10 UTC (rev 4802) @@ -1,14 +1,13 @@ Summary: The GNU version of the awk text processing utility. Name: gawk -Version: 3.1.3 -Release: 6ts +Version: 3.1.4 +Release: 1jh License: GPL Group: main Source0: ftp://ftp.gnu.org/gnu/gawk/gawk-%{version}.tar.bz2 Source1: ftp://ftp.gnu.org/gnu/gawk/gawk-%{version}-ps.tar.gz Source2: ftp://ftp.gnu.org/gnu/gawk/gawk-%{version}-doc.tar.gz -BuildRequires: texinfo >= 4.6 -BuildRoot: %{_tmppath}/%{name}-root +BuildRoot: %{_tmppath}/%{name}-%{version}-root Provides: awk %description @@ -25,70 +24,73 @@ %package doc Summary: GAWK documents Group: main -Prereq: htmlinfo +%info_requires %description doc The documentation for the gawk package + %prep %setup -q -b 1 -b 2 + %build -%configure --bindir=/bin --libexecdir=/usr/lib -make -cd doc -makeinfo --html --force --no-split gawk.texi || exit 0 +%configure --bindir=/bin +%make + %install -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != "/" ] && rm -rf "$RPM_BUILD_ROOT" -mkdir -p $RPM_BUILD_ROOT/usr/share/html/{gawk,gawkinet} -make DESTDIR=${RPM_BUILD_ROOT} install -strip ${RPM_BUILD_ROOT}/bin/gawk || : -strip ${RPM_BUILD_ROOT}%{_prefix}/lib/awk/* || : +%makeinstall_std -install -m 644 doc/gawk.html $RPM_BUILD_ROOT/usr/share/html/gawk/ +%{__mkdir_p} %{buildroot}%{_htmldir}/%{name} +%makeinfo_html --force -o %{buildroot}%{_htmldir}/%{name}/%{name}.html \ + doc/gawk.texi || : +%nuke_info -( cd $RPM_BUILD_ROOT - rm -f .%{_infodir}/dir - mkdir -p .%{_prefix}/bin - ln -sf gawk.1 .%{_mandir}/man1/awk.1 -) -( cd $RPM_BUILD_ROOT - mkdir -p usr/bin - cd usr/bin - ln -s ../../bin/gawk awk -) -rm -f $RPM_BUILD_ROOT/bin/*-%{version} || : +%{__mkdir_p} %{buildroot}%{_bindir} +ln -sf gawk.1 $RPM_BUILD_ROOT%{_mandir}/man1/awk.1 +ln -sf ../../bin/gawk $RPM_BUILD_ROOT%{_bindir}/awk +ln -sf ../../bin/gawk $RPM_BUILD_ROOT%{_bindir}/gawk -rm -rf $RPM_BUILD_ROOT/usr/share/info +rm -f $RPM_BUILD_ROOT/bin/*gawk-%{version} %find_lang %{name} + %clean -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT +%clean_buildroot + %post doc -/usr/sbin/htmlinfo_update.sh +%info_post %postun doc -/usr/sbin/htmlinfo_update.sh +%info_postun + %files -f %{name}.lang %defattr(-,root,root) /bin/* -/usr/bin/awk +%{_bindir}/awk %{_mandir}/man1/* -%{_prefix}/lib/awk -%{_prefix}/share/awk +%{_libexecdir}/awk +%{_datadir} %files doc %defattr(-,root,root) %doc README COPYING FUTURES INSTALL LIMITATIONS NEWS %doc README_d POSIX.STD -/usr/share/html/gawk +%doc doc/gawk.ps doc/awkcard.ps +%{_htmldir}/%{name} %changelog +* Sun Sep 19 2004 Jaakko Heinonen 3.1.4-1jh +- 3.1.4 +- spec cleanup +- install more doc files +- use standard libexec dir + * Thu Aug 05 2004 tsintegrate 3.1.3-6ts - current (3.1.3-6jh) integrated as 3.1.3-6ts for release 1.1 From svn at tinysofa.org Sun Sep 19 10:41:01 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 19 Sep 2004 20:41:01 +1000 (EST) Subject: [tinysofa-svn] r4803 - tinysofa/releases/1.1/gawk/current/specs Message-ID: <20040919104101.CD0FF4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-19 20:41:01 +1000 (Sun, 19 Sep 2004) New Revision: 4803 Modified: tinysofa/releases/1.1/gawk/current/specs/gawk.spec Log: - get all files from bindir Modified: tinysofa/releases/1.1/gawk/current/specs/gawk.spec =================================================================== --- tinysofa/releases/1.1/gawk/current/specs/gawk.spec 2004-09-19 10:28:10 UTC (rev 4802) +++ tinysofa/releases/1.1/gawk/current/specs/gawk.spec 2004-09-19 10:41:01 UTC (rev 4803) @@ -71,7 +71,7 @@ %files -f %{name}.lang %defattr(-,root,root) /bin/* -%{_bindir}/awk +%{_bindir}/* %{_mandir}/man1/* %{_libexecdir}/awk %{_datadir} From svn at tinysofa.org Sun Sep 19 10:56:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 19 Sep 2004 20:56:28 +1000 (EST) Subject: [tinysofa-svn] r4804 - in tinysofa/releases/1.1/openswan/current: sources specs Message-ID: <20040919105628.184BB4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-19 20:56:26 +1000 (Sun, 19 Sep 2004) New Revision: 4804 Added: tinysofa/releases/1.1/openswan/current/sources/openswan-2.2.0.tar.gz Removed: tinysofa/releases/1.1/openswan/current/sources/openswan-2.1.4.tar.gz Modified: tinysofa/releases/1.1/openswan/current/specs/openswan.spec Log: - 2.2.0 Deleted: tinysofa/releases/1.1/openswan/current/sources/openswan-2.1.4.tar.gz =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/openswan/current/sources/openswan-2.2.0.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/openswan/current/sources/openswan-2.2.0.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/openswan/current/specs/openswan.spec =================================================================== --- tinysofa/releases/1.1/openswan/current/specs/openswan.spec 2004-09-19 10:41:01 UTC (rev 4803) +++ tinysofa/releases/1.1/openswan/current/specs/openswan.spec 2004-09-19 10:56:26 UTC (rev 4804) @@ -1,7 +1,7 @@ Summary: A free ipsec VPN solution for Linux Name: openswan -Version: 2.1.4 -Release: 1ts +Version: 2.2.0 +Release: 1jh License: GPL Group: main URL: http://www.openswan.org/ @@ -14,7 +14,7 @@ %service_requires Requires: gmp ipsec-tools PreReq: coreutils -BuildRequires: gmp-devel +BuildRequires: gmp-devel bison flex Obsoletes: freeswan @@ -111,6 +111,9 @@ %changelog +* Sun Sep 19 2004 Jaakko Heinonen 2.2.0-1jh +- 2.2.0 + * Thu Aug 05 2004 tsintegrate 2.1.4-1ts - current (2.1.4-1jh) integrated as 2.1.4-1ts for release 1.1 From svn at tinysofa.org Sun Sep 19 11:03:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 19 Sep 2004 21:03:49 +1000 (EST) Subject: [tinysofa-svn] r4805 - in contrib/1.1/subversion/current: sources specs Message-ID: <20040919110349.7CBBD4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-19 21:03:49 +1000 (Sun, 19 Sep 2004) New Revision: 4805 Added: contrib/1.1/subversion/current/sources/subversion-1.0.7.tar.bz2 Removed: contrib/1.1/subversion/current/sources/subversion-1.0.5.tar.bz2 Modified: contrib/1.1/subversion/current/specs/subversion.spec Log: - 1.0.7 Deleted: contrib/1.1/subversion/current/sources/subversion-1.0.5.tar.bz2 =================================================================== (Binary files differ) Added: contrib/1.1/subversion/current/sources/subversion-1.0.7.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/subversion/current/sources/subversion-1.0.7.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: contrib/1.1/subversion/current/specs/subversion.spec =================================================================== --- contrib/1.1/subversion/current/specs/subversion.spec 2004-09-19 10:56:26 UTC (rev 4804) +++ contrib/1.1/subversion/current/specs/subversion.spec 2004-09-19 11:03:49 UTC (rev 4805) @@ -5,8 +5,8 @@ Summary: A Concurrent Versioning system similar to but better than CVS. Name: subversion -Version: 1.0.5 -Release: 2jh +Version: 1.0.7 +Release: 1jh License: BSD Group: contrib URL: http://subversion.tigris.org @@ -475,6 +475,9 @@ %changelog +* Sun Sep 19 2004 Jaakko Heinonen 1.0.7-1jh +- 1.0.7 + * Mon Sep 13 2004 tsintegrate 1.0.5-2jh - current (1.0.5-2jh) integrated as 1.0.5-2jh From svn at tinysofa.org Sun Sep 19 11:04:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 19 Sep 2004 21:04:27 +1000 (EST) Subject: [tinysofa-svn] r4806 - contrib/1.1/imlib/current/sources Message-ID: <20040919110427.D48A44E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-19 21:04:27 +1000 (Sun, 19 Sep 2004) New Revision: 4806 Added: contrib/1.1/imlib/current/sources/imlib-1.9.14-bounds.patch Log: - add missing patch Added: contrib/1.1/imlib/current/sources/imlib-1.9.14-bounds.patch =================================================================== --- contrib/1.1/imlib/current/sources/imlib-1.9.14-bounds.patch 2004-09-19 11:03:49 UTC (rev 4805) +++ contrib/1.1/imlib/current/sources/imlib-1.9.14-bounds.patch 2004-09-19 11:04:27 UTC (rev 4806) @@ -0,0 +1,320 @@ +diff -uprk.orig imlib-1.9.14.orig/gdk_imlib/io-bmp.c imlib-1.9.14/gdk_imlib/io-bmp.c +--- imlib-1.9.14.orig/gdk_imlib/io-bmp.c 2002-03-04 20:06:29 +0300 ++++ imlib-1.9.14/gdk_imlib/io-bmp.c 2004-08-30 13:38:02 +0400 +@@ -42,12 +42,12 @@ loader_bmp (FILE *file, int *w, int *h, + fread(dbuf, 4, 2, file); + *w = (int)dbuf[0]; + *h = (int)dbuf[1]; +- if (*w > 32767) ++ if ((*w < 0) || (*w > 32767)) + { + fprintf(stderr, "IMLIB ERROR: Image width > 32767 pixels for file\n"); + return NULL; + } +- if (*h > 32767) ++ if ((*h < 0) || (*h > 32767)) + { + fprintf(stderr, "IMLIB ERROR: Image height > 32767 pixels for file\n"); + return NULL; +@@ -72,6 +72,9 @@ loader_bmp (FILE *file, int *w, int *h, + ncolors = (int)dbuf[0]; + if (ncolors == 0) + ncolors = 1 << bpp; ++ if ((ncolors < 0) || (ncolors > (1 << bpp))) ++ ncolors = 1 << bpp; ++ + /* some more sanity checks */ + if (((comp == BI_RLE4) && (bpp != 4)) || ((comp == BI_RLE8) && (bpp != 8)) || ((comp == BI_BITFIELDS) && (bpp != 16 && bpp != 32))) + { +@@ -197,9 +200,13 @@ loader_bmp (FILE *file, int *w, int *h, + for (bit = 0; bit < 8; bit++) + { + index = ((byte & (0x80 >> bit)) ? 1 : 0); +- ptr[poffset] = cmap[index].r; +- ptr[poffset + 1] = cmap[index].g; +- ptr[poffset + 2] = cmap[index].b; ++ /* possibly corrupted file? */ ++ if (index < ncolors && poffset < *w * *h * 3) ++ { ++ ptr[poffset] = cmap[index].r; ++ ptr[poffset + 1] = cmap[index].g; ++ ptr[poffset + 2] = cmap[index].b; ++ } + column++; + } + } +@@ -221,9 +228,13 @@ loader_bmp (FILE *file, int *w, int *h, + index = ((byte & (0xF0 >> nibble * 4)) >> (!nibble * 4)); + if (index >= 16) + index = 15; +- ptr[poffset] = cmap[index].r; +- ptr[poffset + 1] = cmap[index].g; +- ptr[poffset + 2] = cmap[index].b; ++ /* possibly corrupted file? */ ++ if (index < ncolors && poffset < *w * *h * 3) ++ { ++ ptr[poffset] = cmap[index].r; ++ ptr[poffset + 1] = cmap[index].g; ++ ptr[poffset + 2] = cmap[index].b; ++ } + column++; + } + } +@@ -263,9 +274,13 @@ loader_bmp (FILE *file, int *w, int *h, + { + linepos++; + byte = getc(file); +- ptr[poffset] = cmap[byte].r; +- ptr[poffset + 1] = cmap[byte].g; +- ptr[poffset + 2] = cmap[byte].b; ++ /* possibly corrupted file? */ ++ if (byte < ncolors && poffset < *w * *h * 3) ++ { ++ ptr[poffset] = cmap[byte].r; ++ ptr[poffset + 1] = cmap[byte].g; ++ ptr[poffset + 2] = cmap[byte].b; ++ } + column++; + } + if (absolute & 0x01) +@@ -276,9 +291,13 @@ loader_bmp (FILE *file, int *w, int *h, + { + for (i = 0; i < first; i++) + { +- ptr[poffset] = cmap[byte].r; +- ptr[poffset + 1] = cmap[byte].g; +- ptr[poffset + 2] = cmap[byte].b; ++ /* possibly corrupted file? */ ++ if (byte < ncolors && poffset < *w * *h * 3) ++ { ++ ptr[poffset] = cmap[byte].r; ++ ptr[poffset + 1] = cmap[byte].g; ++ ptr[poffset + 2] = cmap[byte].b; ++ } + column++; + linepos++; + } +@@ -286,9 +305,13 @@ loader_bmp (FILE *file, int *w, int *h, + } + else + { +- ptr[poffset] = cmap[byte].r; +- ptr[poffset + 1] = cmap[byte].g; +- ptr[poffset + 2] = cmap[byte].b; ++ /* possibly corrupted file? */ ++ if (byte < ncolors && poffset < *w * *h * 3) ++ { ++ ptr[poffset] = cmap[byte].r; ++ ptr[poffset + 1] = cmap[byte].g; ++ ptr[poffset + 2] = cmap[byte].b; ++ } + column++; + linepos += size; + } +@@ -297,9 +320,13 @@ loader_bmp (FILE *file, int *w, int *h, + else if (bpp == 24) + { + linepos += fread(&bbuf, 1, 3, file); +- ptr[poffset] = (unsigned char)bbuf[2]; +- ptr[poffset + 1] = (unsigned char)bbuf[1]; +- ptr[poffset + 2] = (unsigned char)bbuf[0]; ++ /* possibly corrupted file? */ ++ if (poffset < *w * *h * 3) ++ { ++ ptr[poffset] = (unsigned char)bbuf[2]; ++ ptr[poffset + 1] = (unsigned char)bbuf[1]; ++ ptr[poffset + 2] = (unsigned char)bbuf[0]; ++ } + column++; + } + else if (bpp == 16) +@@ -307,12 +334,16 @@ loader_bmp (FILE *file, int *w, int *h, + unsigned char temp; + + linepos += fread(&word, 2, 1, file); +- temp = (word & rmask) >> rshift; +- ptr[poffset] = temp; +- temp = (word & gmask) >> gshift; +- ptr[poffset + 1] = temp; +- temp = (word & bmask) >> gshift; +- ptr[poffset + 2] = temp; ++ /* possibly corrupted file? */ ++ if (poffset < *w * *h * 3) ++ { ++ temp = (word & rmask) >> rshift; ++ ptr[poffset] = temp; ++ temp = (word & gmask) >> gshift; ++ ptr[poffset + 1] = temp; ++ temp = (word & bmask) >> gshift; ++ ptr[poffset + 2] = temp; ++ } + column++; + } + else +@@ -320,12 +351,16 @@ loader_bmp (FILE *file, int *w, int *h, + unsigned char temp; + + linepos += fread(&dword, 4, 1, file); +- temp = (dword & rmask) >> rshift; +- ptr[poffset] = temp; +- temp = (dword & gmask) >> gshift; +- ptr[poffset + 1] = temp; +- temp = (dword & bmask) >> bshift; +- ptr[poffset + 2] = temp; ++ /* possibly corrupted file? */ ++ if (poffset < *w * *h * 3) ++ { ++ temp = (dword & rmask) >> rshift; ++ ptr[poffset] = temp; ++ temp = (dword & gmask) >> gshift; ++ ptr[poffset + 1] = temp; ++ temp = (dword & bmask) >> bshift; ++ ptr[poffset + 2] = temp; ++ } + column++; + } + } +--- imlib-1.9.10/Imlib/load.c.xx 2004-09-02 10:17:48.738898822 +0200 ++++ imlib-1.9.10/Imlib/load.c 2004-09-02 10:18:32.698181227 +0200 +@@ -631,12 +631,12 @@ + fread(dbuf, 4, 2, file); + *w = (int)dbuf[0]; + *h = (int)dbuf[1]; +- if (*w > 32767) ++ if ((*w < 0) || (*w > 32767)) + { + fprintf(stderr, "IMLIB ERROR: Image width > 32767 pixels for file\n"); + return NULL; + } +- if (*h > 32767) ++ if ((*h < 0) || (*h > 32767)) + { + fprintf(stderr, "IMLIB ERROR: Image height > 32767 pixels for file\n"); + return NULL; +@@ -661,6 +661,9 @@ + ncolors = (int)dbuf[0]; + if (ncolors == 0) + ncolors = 1 << bpp; ++ if ((ncolors < 0) || (ncolors > (1 << bpp))) ++ ncolors = 1 << bpp; ++ + /* some more sanity checks */ + if (((comp == BI_RLE4) && (bpp != 4)) || ((comp == BI_RLE8) && (bpp != 8)) || ((comp == BI_BITFIELDS) && (bpp != 16 && bpp != 32))) + { +@@ -786,9 +789,13 @@ + for (bit = 0; bit < 8; bit++) + { + index = ((byte & (0x80 >> bit)) ? 1 : 0); ++ /* possibly corrupted file? */ ++ if (index < ncolors && poffset < *w * *h * 3) ++ { + ptr[poffset] = cmap[index].r; + ptr[poffset + 1] = cmap[index].g; + ptr[poffset + 2] = cmap[index].b; ++ } + column++; + } + } +@@ -810,9 +817,13 @@ + index = ((byte & (0xF0 >> nibble * 4)) >> (!nibble * 4)); + if (index >= 16) + index = 15; ++ /* possibly corrupted file? */ ++ if (index < ncolors && poffset < *w * *h * 3) ++ { + ptr[poffset] = cmap[index].r; + ptr[poffset + 1] = cmap[index].g; + ptr[poffset + 2] = cmap[index].b; ++ } + column++; + } + } +@@ -851,9 +862,13 @@ + { + linepos++; + byte = getc(file); ++ /* possibly corrupted file? */ ++ if (byte < ncolors && poffset < *w * *h * 3) ++ { + ptr[poffset] = cmap[byte].r; + ptr[poffset + 1] = cmap[byte].g; + ptr[poffset + 2] = cmap[byte].b; ++ } + column++; + } + if (absolute & 0x01) +@@ -864,9 +879,13 @@ + { + for (i = 0; i < first; i++) + { ++ /* possibly corrupted file? */ ++ if (byte < ncolors && poffset < *w * *h * 3) ++ { + ptr[poffset] = cmap[byte].r; + ptr[poffset + 1] = cmap[byte].g; + ptr[poffset + 2] = cmap[byte].b; ++ } + column++; + linepos++; + } +@@ -874,9 +893,13 @@ + } + else + { ++ /* possibly corrupted file? */ ++ if (byte < ncolors && poffset < *w * *h * 3) ++ { + ptr[poffset] = cmap[byte].r; + ptr[poffset + 1] = cmap[byte].g; + ptr[poffset + 2] = cmap[byte].b; ++ } + column++; + } + } +@@ -884,9 +907,12 @@ + else if (bpp == 24) + { + linepos += fread(bbuf, 1, 3, file); ++ if (poffset< *w * *h * 3) ++ { + ptr[poffset] = (unsigned char)bbuf[2]; + ptr[poffset + 1] = (unsigned char)bbuf[1]; + ptr[poffset + 2] = (unsigned char)bbuf[0]; ++ } + column++; + } + else if (bpp == 16) +@@ -894,12 +920,16 @@ + unsigned char temp; + + linepos += fread(&word, 2, 1, file); ++ /* possibly corrupted file? */ ++ if (poffset < *w * *h * 3) ++ { + temp = (word & rmask) >> rshift; + ptr[poffset] = temp; + temp = (word & gmask) >> gshift; + ptr[poffset + 1] = temp; + temp = (word & bmask) >> gshift; + ptr[poffset + 2] = temp; ++ } + column++; + } + else +@@ -907,12 +937,16 @@ + unsigned char temp; + + linepos += fread(&dword, 4, 1, file); ++ /* possibly corrupted file? */ ++ if (poffset < *w * *h * 3) ++ { + temp = (dword & rmask) >> rshift; + ptr[poffset] = temp; + temp = (dword & gmask) >> gshift; + ptr[poffset + 1] = temp; + temp = (dword & bmask) >> bshift; + ptr[poffset + 2] = temp; ++ } + column++; + } + } From svn at tinysofa.org Sun Sep 19 11:41:33 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 19 Sep 2004 21:41:33 +1000 (EST) Subject: [tinysofa-svn] r4807 - contrib/1.1/subversion/current/specs Message-ID: <20040919114133.2FC724E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-19 21:41:32 +1000 (Sun, 19 Sep 2004) New Revision: 4807 Modified: contrib/1.1/subversion/current/specs/subversion.spec Log: - no libsvn_ra_dav-1.so.* Modified: contrib/1.1/subversion/current/specs/subversion.spec =================================================================== --- contrib/1.1/subversion/current/specs/subversion.spec 2004-09-19 11:04:27 UTC (rev 4806) +++ contrib/1.1/subversion/current/specs/subversion.spec 2004-09-19 11:41:32 UTC (rev 4807) @@ -396,7 +396,7 @@ %defattr(-,root,root) %{_libdir}/libsvn_client-1.so.* %{_libdir}/libsvn_ra-1.so.* -%{_libdir}/libsvn_ra_dav-1.so.* +#%{_libdir}/libsvn_ra_dav-1.so.* %{_libdir}/libsvn_ra_local-1.so.* %{_libdir}/libsvn_wc-1.so.* From svn at tinysofa.org Sun Sep 19 11:44:01 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 19 Sep 2004 21:44:01 +1000 (EST) Subject: [tinysofa-svn] r4808 - contrib/1.1/subversion/current/specs Message-ID: <20040919114401.3E0BE4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-19 21:44:01 +1000 (Sun, 19 Sep 2004) New Revision: 4808 Modified: contrib/1.1/subversion/current/specs/subversion.spec Log: - revert the change Modified: contrib/1.1/subversion/current/specs/subversion.spec =================================================================== --- contrib/1.1/subversion/current/specs/subversion.spec 2004-09-19 11:41:32 UTC (rev 4807) +++ contrib/1.1/subversion/current/specs/subversion.spec 2004-09-19 11:44:01 UTC (rev 4808) @@ -396,7 +396,7 @@ %defattr(-,root,root) %{_libdir}/libsvn_client-1.so.* %{_libdir}/libsvn_ra-1.so.* -#%{_libdir}/libsvn_ra_dav-1.so.* +%{_libdir}/libsvn_ra_dav-1.so.* %{_libdir}/libsvn_ra_local-1.so.* %{_libdir}/libsvn_wc-1.so.* From svn at tinysofa.org Sun Sep 19 11:48:14 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 19 Sep 2004 21:48:14 +1000 (EST) Subject: [tinysofa-svn] r4809 - in contrib/1.1/neon/current: sources specs Message-ID: <20040919114814.448214E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-19 21:48:13 +1000 (Sun, 19 Sep 2004) New Revision: 4809 Added: contrib/1.1/neon/current/sources/neon-0.24.7.tar.gz Removed: contrib/1.1/neon/current/sources/neon-0.24.6.tar.gz Modified: contrib/1.1/neon/current/specs/neon.spec Log: - 0.24.7 Deleted: contrib/1.1/neon/current/sources/neon-0.24.6.tar.gz =================================================================== (Binary files differ) Added: contrib/1.1/neon/current/sources/neon-0.24.7.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/neon/current/sources/neon-0.24.7.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: contrib/1.1/neon/current/specs/neon.spec =================================================================== --- contrib/1.1/neon/current/specs/neon.spec 2004-09-19 11:44:01 UTC (rev 4808) +++ contrib/1.1/neon/current/specs/neon.spec 2004-09-19 11:48:13 UTC (rev 4809) @@ -1,7 +1,7 @@ Summary: C language HTTP and WebDAV client library. Name: neon -Version: 0.24.6 -Release: 3bg +Version: 0.24.7 +Release: 1jh License: LGPL Group: contrib URL: http://www.webdav.org/neon @@ -54,10 +54,11 @@ [ -n "%{buildroot}" -a "%{buildroot}" != "/" ] && rm -rf %{buildroot} -%post -/sbin/ldconfig +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + %files %defattr(-,root,root) %{_libdir}/*.so.* @@ -78,6 +79,9 @@ %changelog +* Sun Sep 19 2004 Jaakko Heinonen 0.24.7-1jh +- 0.24.7 + * Mon Sep 13 2004 tsintegrate 0.24.6-3bg - current (0.24.6-3bg) integrated as 0.24.6-3bg From svn at tinysofa.org Sun Sep 19 12:48:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 19 Sep 2004 22:48:21 +1000 (EST) Subject: [tinysofa-svn] r4810 - in tinysofa/releases/1.1/freetype/current: sources specs Message-ID: <20040919124821.6E37B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-19 22:48:21 +1000 (Sun, 19 Sep 2004) New Revision: 4810 Added: tinysofa/releases/1.1/freetype/current/sources/freetype-2.1.9.tar.bz2 tinysofa/releases/1.1/freetype/current/sources/ft2demos-2.1.9.tar.bz2 tinysofa/releases/1.1/freetype/current/sources/ftdocs-2.1.9.tar.bz2 Removed: tinysofa/releases/1.1/freetype/current/sources/freetype-2.1.7.tar.bz2 tinysofa/releases/1.1/freetype/current/sources/ft2demos-2.1.7.tar.bz2 tinysofa/releases/1.1/freetype/current/sources/ftdocs-2.1.7.tar.bz2 Modified: tinysofa/releases/1.1/freetype/current/specs/freetype.spec Log: - 2.1.9 Deleted: tinysofa/releases/1.1/freetype/current/sources/freetype-2.1.7.tar.bz2 =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/freetype/current/sources/freetype-2.1.9.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/freetype/current/sources/freetype-2.1.9.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Deleted: tinysofa/releases/1.1/freetype/current/sources/ft2demos-2.1.7.tar.bz2 =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/freetype/current/sources/ft2demos-2.1.9.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/freetype/current/sources/ft2demos-2.1.9.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Deleted: tinysofa/releases/1.1/freetype/current/sources/ftdocs-2.1.7.tar.bz2 =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/freetype/current/sources/ftdocs-2.1.9.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/freetype/current/sources/ftdocs-2.1.9.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/freetype/current/specs/freetype.spec =================================================================== --- tinysofa/releases/1.1/freetype/current/specs/freetype.spec 2004-09-19 11:48:13 UTC (rev 4809) +++ tinysofa/releases/1.1/freetype/current/specs/freetype.spec 2004-09-19 12:48:21 UTC (rev 4810) @@ -1,18 +1,17 @@ # Disables freetype 1 and 2 bytecode interpreter. Setting to 0 enables # the bytecode interpreter in both freetype 1 and 2. -%define without_bytecode_interpreter 1 +%define without_bytecode_interpreter 0 %define with_freetype1 1 %define ft1 freetype-pre1.4 -# %{!?with_xfree86:%define with_xfree86 0} -%define with_xfree86 0 +%{!?with_xfree86:%define with_xfree86 0} Summary: A free and portable TrueType font rendering engine. Name: freetype -Version: 2.1.7 -Release: 2ts +Version: 2.1.9 +Release: 1jh License: BSD/GPL dual license Group: extra URL: http://www.freetype.org @@ -24,9 +23,6 @@ # Fix build of freetype-1.4 with gcc 3.3 Patch3: freetype-1.4-ac25.patch Patch4: freetype-1.4-gcc33.patch -# Patch from freetype CVS to fix handling of eexec -# https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=117743 -Patch5: freetype-2.1.7-eexec.patch Patch20: freetype-2.1.3-enable-ft2-bci.patch Patch21: freetype-1.4-disable-ft1-bci.patch @@ -105,8 +101,6 @@ %patch20 -p0 -b .enable-ft2-bci %endif -%patch5 -p1 -b .eexec - # Need to update libtool to get deplibs right for x86_64 pushd builds/unix libtoolize --force @@ -264,6 +258,9 @@ %{_libdir}/pkgconfig/ %changelog +* Sun Sep 19 2004 Jaakko Heinonen 2.1.9-1jh +- 2.1.9 + * Sat Sep 04 2004 tsintegrate 2.1.7-2ts - current (2.1.7-2gd) integrated as 2.1.7-2ts for release 1.1-U1 From svn at tinysofa.org Mon Sep 20 04:30:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 20 Sep 2004 14:30:27 +1000 (EST) Subject: [tinysofa-svn] r4812 - tinysofa/releases/1.1/foomatic-filters/current/specs Message-ID: <20040920043027.CCD9F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-20 14:30:26 +1000 (Mon, 20 Sep 2004) New Revision: 4812 Modified: tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec Log: - fix %%{_libdir}/ppr permissions Modified: tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec =================================================================== --- tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec 2004-09-19 17:38:07 UTC (rev 4811) +++ tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec 2004-09-20 04:30:26 UTC (rev 4812) @@ -1,7 +1,7 @@ Summary: Foomatic is a database-driven system for integrating free software printer drivers with common spoolers under Unix. Name: foomatic-filters Version: 3.0.2 -Release: 1jh +Release: 2jh BuildArch: noarch License: GPL Group: extra @@ -42,12 +42,11 @@ %files -%defattr(-,root,root) +%defattr(-,root,root, 755) %config(noreplace) %{_sysconfdir}/foomatic/filter.conf %{_bindir}/* %{_libdir}/cups/filter/* -%{_libdir}/ppr/interfaces/* -%{_libdir}/ppr/lib/* +%{_libdir}/ppr %defattr(644,root,root,755) %doc README USAGE %{_mandir}/man1/* @@ -56,6 +55,9 @@ %changelog +* Mon Sep 20 2004 Jaakko Heinonen 3.0.2-2jh +- fix %%{_libdir}/ppr permissions + * Thu Sep 16 2004 Jaakko Heinonen 3.0.2-1jh - 3.0.2 which fixes a privilege escalation vulnerability - spec cleanup From svn at tinysofa.org Mon Sep 20 09:17:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 20 Sep 2004 19:17:57 +1000 (EST) Subject: [tinysofa-svn] r4813 - in contrib/1.1: . automake14 automake14/current automake14/current/sources automake14/current/specs Message-ID: <20040920091757.682454E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-20 19:17:56 +1000 (Mon, 20 Sep 2004) New Revision: 4813 Added: contrib/1.1/automake14/ contrib/1.1/automake14/current/ contrib/1.1/automake14/current/sources/ contrib/1.1/automake14/current/sources/automake-1.4-backslash.patch contrib/1.1/automake14/current/sources/automake-1.4-libtoolize.patch contrib/1.1/automake14/current/sources/automake-1.4-p6.tar.gz contrib/1.1/automake14/current/sources/automake-1.4-subdir.patch contrib/1.1/automake14/current/sources/automake-1.4-subdirs-89656.patch contrib/1.1/automake14/current/sources/automake-1.4-tags.patch contrib/1.1/automake14/current/specs/ contrib/1.1/automake14/current/specs/automake14.spec contrib/1.1/automake14/pristine/ contrib/1.1/automake14/releases/ Log: - add automake14 Added: contrib/1.1/automake14/current/sources/automake-1.4-backslash.patch =================================================================== --- contrib/1.1/automake14/current/sources/automake-1.4-backslash.patch 2004-09-20 04:30:26 UTC (rev 4812) +++ contrib/1.1/automake14/current/sources/automake-1.4-backslash.patch 2004-09-20 09:17:56 UTC (rev 4813) @@ -0,0 +1,102 @@ +2001-04-10 H.J. Lu + + * automake.in (AM_EXEEXT): Fix a typo. + (quote_cond_val): Fix backslashes. + (unquote_cond_val): Fix backslashes. + (value_to_list): Fix backslashes. + (read_am_file): Fix backslashes. + (read_main_am_file): Fix backslashes. + +--- automake-1.4/automake.in.backsplash Tue Apr 10 23:36:17 2001 ++++ automake-1.4/automake.in Tue Apr 10 23:36:19 2001 +@@ -279,7 +279,7 @@ $cygnus_mode = 0; + 'fp_FUNC_FNMATCH', "use \`AC_FUNC_FNMATCH'", + 'AM_SANITY_CHECK_CC', "automatically done by \`AC_PROG_CC'", + 'AM_PROG_INSTALL', "use \`AC_PROG_INSTALL'", +- 'AM_EXEEEXT', "use \`AC_EXEEXT'", ++ 'AM_EXEEXT', "use \`AC_EXEEXT'", + 'AM_CYGWIN32', "use \`AC_CYGWIN32'", + 'AM_MINGW32', "use \`AC_MINGW32'", + +@@ -5196,8 +5196,7 @@ sub examine_variable + sub quote_cond_val + { + local ($val) = @_; +- $val =~ s/ /\001/g; +- $val =~ s/\t/\003/g; ++ $val =~ tr/ \t\n/\001\003\004/; + $val = "\002" if $val eq ''; + return $val; + } +@@ -5206,8 +5205,7 @@ sub quote_cond_val + sub unquote_cond_val + { + local ($val) = @_; +- $val =~ s/\001/ /g; +- $val =~ s/\003/\t/g; ++ $val =~ tr/\001\003\004/ \t\n/; + $val =~ s/\002//g; + return $val; + } +@@ -5514,6 +5512,9 @@ sub value_to_list + local ($var, $val, $cond) = @_; + local (@result); + ++ # Strip backslashes ++ $val =~ s/\\(\n|$)/ /g; ++ + foreach (split (' ', $val)) + { + # If a comment seen, just leave. +@@ -5820,10 +5821,6 @@ sub read_am_file + else + { + $saw_bk = /\\$/; +- # Chop newline and backslash if this line is +- # continued. ensure trailing whitespace exists. +- chop if $saw_bk; +- chop if $saw_bk; + $contents{$last_var_name} .= ' ' + unless $contents{$last_var_name} =~ /\s$/; + $contents{$last_var_name} .= $_; +@@ -5934,7 +5931,7 @@ sub read_am_file + local ($value); + if ($3 ne '' && substr ($3, -1) eq "\\") + { +- $value = substr ($3, 0, length ($3) - 1); ++ $value = $3 . "\n"; + } + else + { +@@ -5948,6 +5945,12 @@ sub read_am_file + { + $contents{$last_var_name} = '@' . $last_var_name . '@'; + } ++ if (substr ($contents{$last_var_name}, -1) eq "\n") ++ { ++ # Insert a backslash before a trailing newline. ++ $contents{$last_var_name} ++ = substr ($contents{$last_var_name}, 0, -1) . "\\\n"; ++ } + $contents{$last_var_name} .= ' ' . $value; + } + else +@@ -6150,9 +6153,15 @@ sub read_main_am_file + { + local ($vcond) = shift (@cond_vals); + local ($val) = &unquote_cond_val (shift (@cond_vals)); +- $output_vars .= ($vcond . $curs +- . ' ' . $def_type{$curs} . '= ' +- . $val . "\n"); ++ $output_vars .= ($vcond . $curs . ' ' ++ . $def_type{$curs} . "= "); ++ local ($line); ++ foreach $line (split ("\n", $val)) ++ { ++ $output_vars .= $vcond . $line . "\n"; ++ } ++ $output_vars .= "\n" ++ if $val eq ''; + } + } + else Added: contrib/1.1/automake14/current/sources/automake-1.4-libtoolize.patch =================================================================== --- contrib/1.1/automake14/current/sources/automake-1.4-libtoolize.patch 2004-09-20 04:30:26 UTC (rev 4812) +++ contrib/1.1/automake14/current/sources/automake-1.4-libtoolize.patch 2004-09-20 09:17:56 UTC (rev 4813) @@ -0,0 +1,15 @@ +--- automake.in Wed Jul 12 11:40:03 2000 ++++ automake.in Thu Nov 9 07:04:46 2000 +@@ -6882,9 +6882,11 @@ + $suppress = 1; + + # Maybe run libtoolize. ++ @libtoolize_args = ('--automake'); ++ push @libtoolize_args, '-c' if $copy_missing; + if ($seen_libtool + && grep ($_ eq $file, @libtoolize_files) +- && system ('libtoolize', '--automake')) ++ && system ('libtoolize', @libtoolize_args)) + { + $message = "installing \`$errfile'"; + $suppress = 0; Added: contrib/1.1/automake14/current/sources/automake-1.4-p6.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/automake14/current/sources/automake-1.4-p6.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/automake14/current/sources/automake-1.4-subdir.patch =================================================================== --- contrib/1.1/automake14/current/sources/automake-1.4-subdir.patch 2004-09-20 04:30:26 UTC (rev 4812) +++ contrib/1.1/automake14/current/sources/automake-1.4-subdir.patch 2004-09-20 09:17:56 UTC (rev 4813) @@ -0,0 +1,22 @@ +2001-04-07 H.J. Lu + + * automake.in (handle_single_transform_list): Don't warn source + in subdirectory. + +--- automake-1.4/automake.in.ylwrap Sat Apr 7 23:04:45 2001 ++++ automake-1.4/automake.in Sat Apr 7 23:17:32 2001 +@@ -1072,9 +1072,11 @@ sub handle_single_transform_list + # the directory. Later. + if (/\//) + { +- &am_error +- ("not supported: source file `$_' is in subdirectory"); +- next; ++ # It breaks gas/Makefile.in in binutils. For now, we ++ # turn off this warning. ++ # &am_error ++ # ("not supported: source file `$_' is in subdirectory"); ++ # next; + } + + # Split file name into base and extension. Added: contrib/1.1/automake14/current/sources/automake-1.4-subdirs-89656.patch =================================================================== --- contrib/1.1/automake14/current/sources/automake-1.4-subdirs-89656.patch 2004-09-20 04:30:26 UTC (rev 4812) +++ contrib/1.1/automake14/current/sources/automake-1.4-subdirs-89656.patch 2004-09-20 09:17:56 UTC (rev 4813) @@ -0,0 +1,20 @@ +--- automake-1.4-p6/subdirs.am.subdirs 2001-07-16 22:47:36.000000000 -0700 ++++ automake-1.4-p6/subdirs.am 2003-04-25 08:24:35.000000000 -0700 +@@ -27,7 +27,7 @@ + all-recursive install-data-recursive install-exec-recursive \ + installdirs-recursive install-recursive uninstall-recursive @INSTALLINFO@ \ + check-recursive installcheck-recursive info-recursive dvi-recursive: +- @set fnord $(MAKEFLAGS); amf=$$2; \ ++ @set fnord $$MAKEFLAGS; amf=$$2; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -55,7 +55,7 @@ check-recursive installcheck-recursive i + ## bombs. + mostlyclean-recursive clean-recursive distclean-recursive \ + maintainer-clean-recursive: +- @set fnord $(MAKEFLAGS); amf=$$2; \ ++ @set fnord $$MAKEFLAGS; amf=$$2; \ + dot_seen=no; \ + rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \ + rev="$$subdir $$rev"; \ Added: contrib/1.1/automake14/current/sources/automake-1.4-tags.patch =================================================================== --- contrib/1.1/automake14/current/sources/automake-1.4-tags.patch 2004-09-20 04:30:26 UTC (rev 4812) +++ contrib/1.1/automake14/current/sources/automake-1.4-tags.patch 2004-09-20 09:17:56 UTC (rev 4813) @@ -0,0 +1,14 @@ +diff -u automake-1.4-p6/Makefile.am~ automake-1.4-p6/Makefile.am +--- automake-1.4-p6/Makefile.am~ 2002-07-29 21:10:39.000000000 +0900 ++++ automake-1.4-p6/Makefile.am 2002-07-29 21:10:39.000000000 +0900 +@@ -151,8 +151,8 @@ + + ## Just get the .am files into TAGS. We don't really care too much if + ## any interesting tags show up. +-ETAGS_ARGS = $(amfiles) +-TAGS_DEPENDENCIES = $(ETAGS_ARGS) ++#ETAGS_ARGS = $(amfiles) ++#TAGS_DEPENDENCIES = $(ETAGS_ARGS) + + ## A temporary hack for the release. + DISTCLEANFILES = automake.cm automake.ov Added: contrib/1.1/automake14/current/specs/automake14.spec =================================================================== --- contrib/1.1/automake14/current/specs/automake14.spec 2004-09-20 04:30:26 UTC (rev 4812) +++ contrib/1.1/automake14/current/specs/automake14.spec 2004-09-20 09:17:56 UTC (rev 4813) @@ -0,0 +1,192 @@ +%define tarname automake-1.4-p6 + +Summary: A GNU tool for automatically creating Makefiles. +Name: automake14 +Version: 1.4p6 +Release: 1jh +License: GPL +Group: contrib +URL: http://sources.redhat.com/automake +Source: ftp://ftp.gnu.org/gnu/automake/%{tarname}.tar.gz +Patch1: automake-1.4-libtoolize.patch +Patch2: automake-1.4-subdir.patch +Patch3: automake-1.4-backslash.patch +Patch6: automake-1.4-tags.patch +Patch7: automake-1.4-subdirs-89656.patch +Conflicts: automake < 1.5 +Requires: perl +Buildrequires: autoconf texinfo +BuildArchitectures: noarch +Buildroot: %{_tmppath}/%{name}-%{version}-root + +%description +Automake is a tool for automatically generating +`Makefile.in' files compliant with the GNU Coding Standards. + +This package contains Automake 1.4, an older version of Automake. +You should install it if you need to run automake in a project that +has not yet been updated to work with newer versions of Automake. + +%prep +%setup -q -n %{tarname} +%patch1 -p0 +%patch2 -p1 -b .subdir +%patch3 -p1 -b .backslash +%patch6 -p1 -b .tags +%patch7 -p1 -b .dollar + +%build +# patch 6 touches Makefile.am +autoreconf + +%configure +make + +## 5 of 194 tests fail +## (cygwin32.test error.test pluseq2.test pluseq3.test xsource.test) +#make check + +%install +rm -rf ${RPM_BUILD_ROOT} +%makeinstall + +gzip -9nf automake.info* +mkdir -p info +mv automake.info* info + +## create this dir empty so we can own it +mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/aclocal + +rm %buildroot%{_bindir}/automake %buildroot%{_bindir}/aclocal +rm -rf $RPM_BUILD_ROOT%{_infodir} + +%clean +rm -rf ${RPM_BUILD_ROOT} + + +%files +%defattr(-,root,root) +%doc AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO info +%{_bindir}/*-1.4 +%{_datadir}/aclocal* +%{_datadir}/automake-1.4 + +%changelog +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Tue Dec 9 2003 Jens Petersen - 1.4p6-8 +- buildrequire texinfo (#111170) [mvd at mylinux.com.ua] + +* Sat Apr 26 2003 Jens Petersen - 1.4p6-7 +- add automake-1.4-subdirs-89656.patch (#89656) [thanks to hjl at gnu.org] +- License not Copyright +- update source url +- don't prerequire install-info +- remove unwanted files rather than excluding them + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Sat Nov 23 2002 Jens Petersen 1.4p6-4.1 +- exclude unwanted files rather than removing them + +* Sat Nov 23 2002 Jens Petersen 1.4p6-4 +- remove bin and info files not for manifest +- update url (#77325) + +* Fri Sep 5 2002 Jens Petersen 1.4p6-3 +- bring back COPYING and INSTALL in datadir + +* Fri Aug 16 2002 Jens Petersen 1.4p6-2 +- conflict with automake < 1.5, to prevent both automake-1.4 and automake14 + from being installed at the same time (#71626) + +* Mon Jul 29 2002 Jens Petersen - 1.4p6-1 +- 1.4-p6 with versioning from upstream +- versioning and lisp patches no longer required +- include the info files in the docs dir +- remove doc files from the automake-1.4 datadir. + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Tue Jan 18 2002 Jens Petersen - 1.4p5-1 +- new package based on automake-1.4p5-3 +- add version suffix to prgram names and data directories +- no info files, since only 1.5 info files will be installed + +* Wed Nov 14 2001 Jakub Jelinek - 1.4p5-3 +- fix lisp.am bug + +* Fri Aug 24 2001 Jens Petersen - 1.4p5-2 +- dont raise error when there is source in a subdirectory (bug #35156). + This was preventing automake from working in binutuls/gas + [patch from HJ Lu ] +- format long lines of output properly with backslash + newlines as in 1.4 + (bug #35259) [patch from HJ Lu ] + +* Sat Jul 21 2001 Florian La Roche +- 1.4-p5, fixes #48788 + +* Tue Jun 12 2001 Florian La Roche +- add the patch from #20559 +- really update to 1.4-p4 + +* Mon Jun 11 2001 Florian La Roche +- update to 1.4-p4 + +* Sat May 12 2001 Owen Taylor +- Version 1.4-p1 to work with libtool-1.4 + +* Wed Jul 12 2000 Prospector +- automatic rebuild + +* Mon Jun 5 2000 Jeff Johnson +- FHS packaging. + +* Fri Feb 04 2000 Nalin Dahyabhai +- fix bug #8870 + +* Sat Aug 21 1999 Jeff Johnson +- revert to pristine automake-1.4. + +* Mon Mar 22 1999 Preston Brown +- arm netwinder patch + +* Wed Feb 24 1999 Preston Brown +- Injected new description and group. + +* Mon Feb 8 1999 Jeff Johnson +- add patches from CVS for 6.0beta1 + +* Sun Jan 17 1999 Jeff Johnson +- update to 1.4. + +* Mon Nov 23 1998 Jeff Johnson +- update to 1.3b. +- add URL. + +* Fri Apr 24 1998 Prospector System +- translations modified for de, fr, tr + +* Tue Apr 07 1998 Erik Troan +- updated to 1.3 + +* Tue Oct 28 1997 Cristian Gafton +- added BuildRoot; added aclocal files + +* Fri Oct 24 1997 Erik Troan +- made it a noarch package + +* Thu Oct 16 1997 Michael Fulbright +- Fixed some tag lines to conform to 5.0 guidelines. + +* Thu Jul 17 1997 Erik Troan +- updated to 1.2 + +* Wed Mar 5 1997 msf at redhat.com +- first version (1.0) From svn at tinysofa.org Mon Sep 20 11:19:13 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 20 Sep 2004 21:19:13 +1000 (EST) Subject: [tinysofa-svn] r4814 - contrib/1.1 Message-ID: <20040920111913.9DB314E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-20 21:19:12 +1000 (Mon, 20 Sep 2004) New Revision: 4814 Removed: contrib/1.1/automake14/ Log: - remove automake14 From svn at tinysofa.org Mon Sep 20 15:33:20 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 21 Sep 2004 01:33:20 +1000 (EST) Subject: [tinysofa-svn] r4815 - in contrib/1.1/gtk12+/current: contrib/1.1/gtk12+/current/sources contrib/1.1/gtk12+/current/specs Message-ID: <20040920153320.C7E974E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-21 01:33:20 +1000 (Tue, 21 Sep 2004) New Revision: 4815 Added: contrib/1.1/gtk12+/current/sources/gtk+-1.2.10-Makefile.in.patch Modified: contrib/1.1/gtk12+/current/specs/gtk12+.spec Log: - enable native locale and xinput - fix various library permissions - nuke info documents - build with proper i18n support (gtk+-1.2.10-Makefile.in.patch added) Added: contrib/1.1/gtk12+/current/sources/gtk+-1.2.10-Makefile.in.patch =================================================================== --- contrib/1.1/gtk12+/current/sources/gtk+-1.2.10-Makefile.in.patch 2004-09-20 11:19:12 UTC (rev 4814) +++ contrib/1.1/gtk12+/current/sources/gtk+-1.2.10-Makefile.in.patch 2004-09-20 15:33:20 UTC (rev 4815) @@ -0,0 +1,51 @@ +--- gtk/gtk/Makefile.in 2001-04-02 06:14:13.000000000 +0300 ++++ gtk/gtk/Makefile.in 2004-09-20 18:00:25.000000000 +0300 +@@ -191,7 +479,14 @@ + CLEANFILES = $(gen_sources) + + gtkconfdir = $(sysconfdir)/gtk +-gtkconf_DATA = gtkrc.az gtkrc.el gtkrc.eo gtkrc.he gtkrc.hy gtkrc.ja gtkrc.ko gtkrc.ru gtkrc.tr gtkrc.th gtkrc.uk gtkrc.iso-8859-2 gtkrc.iso-8859-5 gtkrc.iso-8859-13 gtkrc.iso-8859-14 gtkrc.iso-8859-15 gtkrc.zh_CN gtkrc.zh_TW.big5 gtkrc.ka_GE.georgianacademy gtkrc.ka_GE.georgianps gtkrc.vi_VN.tcvn gtkrc.vi_VN.viscii gtkrc.cp1251 gtkrc.cp1255 ++gtkconf_DATA = gtkrc.az gtkrc.he gtkrc.hy gtkrc.ja \ ++ gtkrc.ko gtkrc.ru gtkrc.th gtkrc.uk \ ++ gtkrc.utf8 gtkrc.iso88592 \ ++ gtkrc.iso88593 gtkrc.iso88595 gtkrc.iso88597 \ ++ gtkrc.iso88599 gtkrc.iso885913 gtkrc.iso885914 \ ++ gtkrc.iso885915 gtkrc.zh_CN gtkrc.zh_TW.big5 \ ++ gtkrc.ka_GE.georgianacademy gtkrc.ka_GE.georgianps \ ++ gtkrc.vi_VN.tcvn gtkrc.vi_VN.viscii gtkrc.cp1251 gtkrc.cp1255 + + + # +@@ -1486,11 +997,11 @@ + cd $(DESTDIR)$(gtkconfdir) && \ + for i in cs hr hu pl ro sk sl sq sr ; do \ + rm -f gtkrc.$$i ; \ +- ln -s gtkrc.iso-8859-2 gtkrc.$$i ; \ ++ ln -s gtkrc.iso88592 gtkrc.$$i ; \ + done ; \ + for i in bg_BG.iso88595 mk sp ru_RU.iso88595 ; do \ + rm -f gtkrc.$$i ; \ +- ln -s gtkrc.iso-8859-5 gtkrc.$$i ; \ ++ ln -s gtkrc.iso88595 gtkrc.$$i ; \ + done ; \ + for i in he_IL.cp1255 he_IL.microsoftcp1255 yi ; do \ + rm -f gtkrc.$$i ; \ +@@ -1499,12 +1010,12 @@ + rm -f gtkrc.lt gtkrc.lv gtkrc.cy gtkrc.ga gtkrc.et gtkrc.ka \ + gtkrc.vi_VN.viscii111 gtkrc.vi_VN.tcvn5712 gtkrc.vi \ + gtkrc.be gtkrc.bg gtkrc.mi ; \ +- ln -s gtkrc.iso-8859-13 gtkrc.mi ; \ +- ln -s gtkrc.iso-8859-13 gtkrc.lt ; \ +- ln -s gtkrc.iso-8859-13 gtkrc.lv ; \ +- ln -s gtkrc.iso-8859-14 gtkrc.cy ; \ +- ln -s gtkrc.iso-8859-14 gtkrc.ga ; \ +- ln -s gtkrc.iso-8859-15 gtkrc.et ; \ ++ ln -s gtkrc.iso885913 gtkrc.mi ; \ ++ ln -s gtkrc.iso885913 gtkrc.lt ; \ ++ ln -s gtkrc.iso885913 gtkrc.lv ; \ ++ ln -s gtkrc.iso885914 gtkrc.cy ; \ ++ ln -s gtkrc.iso885914 gtkrc.ga ; \ ++ ln -s gtkrc.iso885915 gtkrc.et ; \ + ln -s gtkrc.ka_GE.georgianps gtkrc.ka ; \ + ln -s gtkrc.vi_VN.viscii gtkrc.vi_VN.viscii111 ; \ + ln -s gtkrc.vi_VN.tcvn gtkrc.vi ; \ Modified: contrib/1.1/gtk12+/current/specs/gtk12+.spec =================================================================== --- contrib/1.1/gtk12+/current/specs/gtk12+.spec 2004-09-20 11:19:12 UTC (rev 4814) +++ contrib/1.1/gtk12+/current/specs/gtk12+.spec 2004-09-20 15:33:20 UTC (rev 4815) @@ -1,7 +1,7 @@ Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X. Name: gtk12+ Version: 1.2.10 -Release: 3jh +Release: 4jh License: LGPL Group: contrib Source: ftp://ftp.gimp.org/pub/gtk/v1.2/gtk+-%{version}.tar.gz @@ -53,10 +53,10 @@ # Add a dependency on libgdk to libgtk Patch30: gtk+-1.2.10-gtkgdkdep.patch Patch31: gtk+-underquoted.patch +Patch32: gtk+-1.2.10-Makefile.in.patch BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: glib12-devel >= %{version}, xorg-x11-devel, gettext-devel -Requires: glib12, xorg-x11-libs Provides: gtk+ = %{version} %define libname libgtk+ @@ -112,17 +112,24 @@ %patch28 -p1 -b .bellvolume %patch29 -p1 -b .libtool %patch31 -p1 -b .underquoted +%patch32 -p1 -b .Makefile.in %build -%configure --with-glib-prefix=%{_prefix} +%configure \ + --with-glib-prefix=%{_prefix} \ + --with-native-locale \ + --with-xinput=xfree + %make %install %makeinstall +%nuke_info + %clean %clean_buildroot @@ -136,7 +143,8 @@ %defattr(-, root, root, 755) %doc INSTALL ABOUT-NLS %{_libdir}/lib*.so.* -%{_datadir}/themes/Default +%{_datadir}/themes +%dir %{_sysconfdir}/gtk %config(noreplace) %{_sysconfdir}/gtk/* %files devel @@ -147,13 +155,18 @@ %{_libdir}/pkgconfig/* %{_includedir}/* %{_datadir}/aclocal/* -%{_datadir}/info/* %{_datadir}/locale/* %{_bindir}/* %{_mandir} %changelog +* Mon Sep 20 2004 Jaakko Heinonen 1.2.10-4jh +- enable native locale and xinput +- fix various library permissions +- nuke info documents +- build with proper i18n support (gtk+-1.2.10-Makefile.in.patch added) + * Sun Sep 19 2004 Jaakko Heinonen 1.2.10-3jh - get patches from Fedora - fix permissions From svn at tinysofa.org Mon Sep 20 18:06:50 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 21 Sep 2004 04:06:50 +1000 (EST) Subject: [tinysofa-svn] r4816 - in tinysofa/releases/1.1/sudo/current: sources specs Message-ID: <20040920180650.BA93A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-21 04:06:50 +1000 (Tue, 21 Sep 2004) New Revision: 4816 Added: tinysofa/releases/1.1/sudo/current/sources/sudo-1.6.8p1.tar.gz Removed: tinysofa/releases/1.1/sudo/current/sources/sudo-1.6.7p5.tar.gz Modified: tinysofa/releases/1.1/sudo/current/specs/sudo.spec Log: - 1.6.8p1 - rationalize file permissions - spec cleanups Deleted: tinysofa/releases/1.1/sudo/current/sources/sudo-1.6.7p5.tar.gz =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/sudo/current/sources/sudo-1.6.8p1.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/sudo/current/sources/sudo-1.6.8p1.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/sudo/current/specs/sudo.spec =================================================================== --- tinysofa/releases/1.1/sudo/current/specs/sudo.spec 2004-09-20 15:33:20 UTC (rev 4815) +++ tinysofa/releases/1.1/sudo/current/specs/sudo.spec 2004-09-20 18:06:50 UTC (rev 4816) @@ -1,12 +1,12 @@ Summary: Allows restricted root access for specified users. Name: sudo -Version: 1.6.7p5 -Release: 7ts +Version: 1.6.8p1 +Release: 1jh License: BSD Group: main Source: http://www.courtesan.com/sudo/dist/sudo-%{version}.tar.gz URL: http://www.courtesan.com/sudo/ -BuildRoot: %{_tmppath}/%{name}-root +BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: pam-devel groff %description @@ -25,6 +25,7 @@ %build %configure \ + --libexecdir=%{_libdir} \ --with-logging=syslog \ --with-logfac=authpriv \ --with-pam \ @@ -32,18 +33,15 @@ --with-env-editor \ --with-ignore-dot \ --with-tty-tickets -make +%make %install -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != "/" ] && rm -rf "$RPM_BUILD_ROOT" -mkdir $RPM_BUILD_ROOT +%makeinstall_std -%makeinstall +install -d -m 700 $RPM_BUILD_ROOT/%{_localstatedir}/run/sudo -install -d -m 700 $RPM_BUILD_ROOT/var/run/sudo - -mkdir -p $RPM_BUILD_ROOT/etc/pam.d -cat > $RPM_BUILD_ROOT/etc/pam.d/sudo << EOF +mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/pam.d +cat > $RPM_BUILD_ROOT/%{_sysconfdir}/pam.d/sudo << EOF #%PAM-1.0 auth required pam_stack.so service=system-auth account required pam_stack.so service=system-auth @@ -52,21 +50,31 @@ EOF %clean -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT +%clean_buildroot %files %defattr(-,root,root) %doc BUGS CHANGES HISTORY LICENSE README RUNSON TODO TROUBLESHOOTING *.pod -%config(noreplace) %attr(0440,root,root) /etc/sudoers -%config(noreplace) /etc/pam.d/sudo -%dir %attr(0700,root,root) /var/run/sudo -%attr(4111,root,root) /usr/bin/sudo -%attr(0111,root,root) /usr/sbin/visudo -%attr(0644,root,root) /usr/share/man/man5/sudoers.5* -%attr(0644,root,root) /usr/share/man/man8/sudo.8* -%attr(0644,root,root) /usr/share/man/man8/visudo.8* +%config(noreplace) %attr(0440,root,root) %{_sysconfdir}/sudoers +%config(noreplace) %{_sysconfdir}/pam.d/sudo +%dir %attr(0700,root,root) %{_localstatedir}/run/sudo +%attr(4755,root,root) %{_bindir}/sudo +%attr(4755,root,root) %{_bindir}/sudoedit +%attr(0755,root,root) %{_sbindir}/visudo +%attr(0644,root,root) %{_mandir}/man5/sudoers.5* +%attr(0644,root,root) %{_mandir}/man8/sudo.8* +%attr(0644,root,root) %{_mandir}/man8/visudo.8* +%attr(0644,root,root) %{_mandir}/man8/sudoedit.8* +%attr(0755,root,root) %{_libdir}/sudo_noexec.so +%exclude %attr(0755,root,root) %{_libdir}/sudo_noexec.la %changelog +* Mon Sep 20 2004 Jaakko Heinonen 1.6.8p1-1jh +- 1.6.8p1 +- rationalize file permissions +- spec cleanups + + * Thu Aug 05 2004 tsintegrate 1.6.7p5-7ts - current (1.6.7p5-7jh) integrated as 1.6.7p5-7ts for release 1.1 From svn at tinysofa.org Tue Sep 21 07:55:25 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 21 Sep 2004 17:55:25 +1000 (EST) Subject: [tinysofa-svn] r4817 - tinysofa/releases/1.1/libpcap/current/specs Message-ID: <20040921075525.CCE974E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-21 17:55:24 +1000 (Tue, 21 Sep 2004) New Revision: 4817 Modified: tinysofa/releases/1.1/libpcap/current/specs/libpcap.spec Log: - spec cleanup Modified: tinysofa/releases/1.1/libpcap/current/specs/libpcap.spec =================================================================== --- tinysofa/releases/1.1/libpcap/current/specs/libpcap.spec 2004-09-20 18:06:50 UTC (rev 4816) +++ tinysofa/releases/1.1/libpcap/current/specs/libpcap.spec 2004-09-21 07:55:24 UTC (rev 4817) @@ -6,8 +6,8 @@ Source: http://www.tcpdump.org/release/libpcap-%{version}.tar.gz Group: main Conflicts: kernel < 2.2.20 -BuildRequires: bison, flex -BuildRoot: %{_tmppath}/%{name}-root +BuildRequires: bison, flex, gawk +BuildRoot: %{_tmppath}/%{name}-%{version}-root %description Libpcap provides a portable framework for low-level network @@ -21,35 +21,42 @@ Install libpcap if you need to do low-level network traffic monitoring on your network. + %prep %setup -q + %build export CFLAGS="$RPM_OPT_FLAGS -fPIC" -%configure --includedir=/usr/include/pcap \ - --enable-ipv6 --enable-yydebug -make all +%configure \ + --includedir=%{_includedir}/pcap \ + --enable-ipv6 \ + --enable-yydebug +%make export MAJOR=$(echo %{version} | awk -F. '{ print $1 }') export MINOR=$(echo %{version} | awk -F. '{ print $2 }') -gcc -Wl,-soname,libpcap.so.0 -shared -fpic -o libpcap.so.$MAJOR.$MINOR *.o +%{__cc} -Wl,-soname,libpcap.so.0 -shared -fpic -o libpcap.so.$MAJOR.$MINOR *.o + %install -[ -n "$RPM_BUILD_ROOT" -a "RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT export MAJOR=$(echo %{version} | awk -F. '{ print $1 }') export MINOR=$(echo %{version} | awk -F. '{ print $2 }') -make install DESTDIR=$RPM_BUILD_ROOT/ -install -m755 libpcap.so.$MAJOR.$MINOR $RPM_BUILD_ROOT%{_libdir} +%makeinstall_std +install -m 755 libpcap.so.$MAJOR.$MINOR $RPM_BUILD_ROOT%{_libdir} + pushd $RPM_BUILD_ROOT%{_libdir} ln -s %{name}.so.$MAJOR.$MINOR %{name}.so.$MAJOR ln -s %{name}.so.$MAJOR.$MINOR %{name}.so popd + %clean -[ -n "$RPM_BUILD_ROOT" -a "RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT +%clean_buildroot + %files %defattr(-,root,root) %doc README README.linux CHANGES TODO @@ -58,7 +65,11 @@ %attr(755,root,root) %{_libdir}/*.so* %{_mandir}/man3/pcap.3* + %changelog +* Tue Sep 21 2004 Jaakko Heinonen +- spec cleanup + * Thu Aug 05 2004 tsintegrate 0.8.3-4ts - current (0.8.3-4jh) integrated as 0.8.3-4ts for release 1.1 From svn at tinysofa.org Tue Sep 21 08:00:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 21 Sep 2004 18:00:49 +1000 (EST) Subject: [tinysofa-svn] r4818 - tinysofa/releases/1.1/tcpdump/current/specs Message-ID: <20040921080049.D1D1B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-21 18:00:49 +1000 (Tue, 21 Sep 2004) New Revision: 4818 Modified: tinysofa/releases/1.1/tcpdump/current/specs/tcpdump.spec Log: - spec cleanup Modified: tinysofa/releases/1.1/tcpdump/current/specs/tcpdump.spec =================================================================== --- tinysofa/releases/1.1/tcpdump/current/specs/tcpdump.spec 2004-09-21 07:55:24 UTC (rev 4817) +++ tinysofa/releases/1.1/tcpdump/current/specs/tcpdump.spec 2004-09-21 08:00:49 UTC (rev 4818) @@ -7,7 +7,7 @@ Source: http://www.tcpdump.org/release/tcpdump-%{version}.tar.gz BuildRequires: libpcap >= 0.8.1 Conflicts: kernel < 2.2.20 -BuildRoot: %{_tmppath}/%{name}-root +BuildRoot: %{_tmppath}/%{name}-%{version}-root %description Tcpdump is a command-line tool for monitoring network traffic. @@ -17,36 +17,43 @@ Install tcpdump if you need a program to monitor network traffic. + %prep %setup -q + %build #libtoolize --copy --force -CFLAGS="$RPM_OPT_FLAGS -DIP_MAX_MEMBERSHIPS=20 -I/usr/include/pcap" \ +CFLAGS="$RPM_OPT_FLAGS -DIP_MAX_MEMBERSHIPS=20 -I%{_includedir}/pcap" \ %configure --enable-ipv6 -make +%make %install -[ -n "$RPM_BUILD_ROOT" -a "RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT -mkdir -p ${RPM_BUILD_ROOT}%{_prefix}/{share/man/man8,sbin} +%{__mkdir_p} \ + %{buildroot}%{_mandir}/man8 \ + %{buildroot}%{_sbindir} -install -m755 -s tcpdump ${RPM_BUILD_ROOT}%{_prefix}/sbin -install -m644 tcpdump.1 ${RPM_BUILD_ROOT}%{_prefix}/share/man/man8/tcpdump.8 +install -m 755 -s tcpdump %{buildroot}%{_sbindir} +install -m 644 tcpdump.1 %{buildroot}%{_mandir}/man8 %clean -[ -n "$RPM_BUILD_ROOT" -a "RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT +%clean_buildroot + %files %defattr(-,root,root) -%doc README CHANGES -%{_prefix}/sbin/tcpdump -%{_prefix}/share/man/man8/tcpdump.8* +%doc README CHANGES +%{_sbindir}/tcpdump +%{_mandir}/man8/tcpdump.8* %changelog +* Tue Sep 21 2004 Jaakko Heinonen +- spec cleanup + * Thu Aug 05 2004 tsintegrate 3.8.3-3ts - current (3.8.3-3jh) integrated as 3.8.3-3ts for release 1.1 @@ -83,7 +90,6 @@ - added libpcap to buildrequirements, removed kernel-headers, we need glibc-devel anyway to build something - * Sun Jan 19 2003 Gerald Dachs 3.7.1-2gd - rebuilt against openssl 0.9.7 From svn at tinysofa.org Tue Sep 21 10:06:03 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 21 Sep 2004 20:06:03 +1000 (EST) Subject: [tinysofa-svn] r4819 - in tinysofa/releases/1.1/lsof/current: sources specs Message-ID: <20040921100603.164794E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-21 20:06:02 +1000 (Tue, 21 Sep 2004) New Revision: 4819 Added: tinysofa/releases/1.1/lsof/current/sources/lsof_4.72-sock.patch tinysofa/releases/1.1/lsof/current/sources/lsof_4.72.tar.bz2 Removed: tinysofa/releases/1.1/lsof/current/sources/lsof_4.71.tar.bz2 Modified: tinysofa/releases/1.1/lsof/current/specs/lsof.spec Log: - update from Fedora Deleted: tinysofa/releases/1.1/lsof/current/sources/lsof_4.71.tar.bz2 =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/lsof/current/sources/lsof_4.72-sock.patch =================================================================== --- tinysofa/releases/1.1/lsof/current/sources/lsof_4.72-sock.patch 2004-09-21 08:00:49 UTC (rev 4818) +++ tinysofa/releases/1.1/lsof/current/sources/lsof_4.72-sock.patch 2004-09-21 10:06:02 UTC (rev 4819) @@ -0,0 +1,62 @@ +--- lsof_4.72/lsof_4.72_src/dialects/linux/dsock.c.jj 2004-07-06 21:19:53.000000000 +0200 ++++ lsof_4.72/lsof_4.72_src/dialects/linux/dsock.c 2004-07-30 18:14:13.006628195 +0200 +@@ -110,6 +110,9 @@ struct uxsin { /* UNIX socket informa + unsigned long inode; + char *pcb; + char *path; ++ unsigned long ino; ++ unsigned char dev_def; ++ dev_t dev; + struct uxsin *next; + }; + +@@ -1365,6 +1368,19 @@ get_unix(p) + up->pcb = pcb; + up->path = path; + up->next = Uxsin[h]; ++ up->dev_def = 0; ++ up->dev = 0; ++ up->ino = 0; ++ if (path) { ++ struct stat sb; ++ if (((HasNFS && !statsafely(path, &sb)) ++ || (!HasNFS && !stat(path, &sb))) ++ && S_ISSOCK (sb.st_mode)) { ++ up->dev_def = 1; ++ up->dev = sb.st_dev; ++ up->ino = (unsigned long) sb.st_ino; ++ } ++ } + Uxsin[h] = up; + } + (void) fclose(us); +@@ -1782,16 +1798,21 @@ process_proc_sock(p, s, ss, l, lss) + (void) snpf(Lf->type, sizeof(Lf->type), "unix"); + if (up->pcb) + enter_dev_ch(up->pcb); +- if (ss & SB_INO) { +- Lf->inode = (unsigned long)s->st_ino; +- Lf->inp_ty = 1; +- } ++ Lf->inode = (unsigned long)s->st_ino; ++ Lf->inp_ty = 1; + path = up->path ? up->path : p; + (void) enter_nm(path); +- if (Sfile && is_file_named(path, +- ((ss & SB_MODE) && ((s->st_mode & S_IFMT) == S_IFCHR)) ? 1 : 0)) +- { +- Lf->sf |= SELNM; ++ if (Sfile) { ++ if (up->dev_def) { ++ Lf->dev_def = 1; ++ Lf->dev = up->dev; ++ Lf->inode = up->ino; ++ if (is_file_named (NULL, 0)) ++ Lf->sf |= SELNM; ++ Lf->dev_def = 0; ++ Lf->inode = (unsigned long)s->st_ino; ++ } else if (is_file_named(path, 0)) ++ Lf->sf |= SELNM; + } + return; + } Added: tinysofa/releases/1.1/lsof/current/sources/lsof_4.72.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/lsof/current/sources/lsof_4.72.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/lsof/current/specs/lsof.spec =================================================================== --- tinysofa/releases/1.1/lsof/current/specs/lsof.spec 2004-09-21 08:00:49 UTC (rev 4818) +++ tinysofa/releases/1.1/lsof/current/specs/lsof.spec 2004-09-21 10:06:02 UTC (rev 4819) @@ -1,113 +1,127 @@ -Summary: Lists files open by processes +Summary: A utility which lists open files on a Linux/UNIX system. Name: lsof -Version: 4.71 -Release: 4ts -License: Free +Version: 4.72 +Release: 1jh +Copyright: Free Group: main Source0: ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/lsof_%{version}.tar.bz2 +Patch0: lsof_4.72-sock.patch Prefix: %{_prefix} -BuildRoot: %{_tmppath}/%{name}-root -PreReq: setup +BuildRoot: %{_tmppath}/%{name}-%{version}-root %description -Lsof's name stands for LiSt Open Files, and it does just that. It lists -information about files that are open by the processes running on a UNIX -system. +Lsof stands for LiSt Open Files, and it does just that: it lists +information about files that are open by the processes running on a +UNIX system. + %prep -%setup -q -n lsof_%{version} +%setup -q -n %{name}_%{version} # # Sort out whether this is the wrapped or linux specific tar ball. # +[ -f lsof_%{version}.tar ] && tar xf lsof_%{version}.tar [ -f lsof_%{version}_src.tar ] && tar xf lsof_%{version}_src.tar [ -d lsof_%{version}.linux -a ! -d lsof_%{version} ] && \ mv lsof_%{version}.linux lsof_%{version} +[ -d lsof_%{version} ] && cd lsof_%{version} [ -d lsof_%{version}_src ] && cd lsof_%{version}_src +%patch0 -p2 + + %build -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != "/" ] && rm -rf "$RPM_BUILD_ROOT" + # # ### Sort out whether this is the wrapped or linux specific tar ball. # +[ -d lsof_%{version} ] && cd lsof_%{version} [ -d lsof_%{version}_src ] && cd lsof_%{version}_src #LINUX_KERNEL=`pwd`/../linux LSOF_INCLUDE=`pwd`/../linux/include \ #LSOF_VERS=20036 LSOF_VSTR=2.0.36 LINUX_BASE=/dev/kmem \ -#LSOF_VERS=22010 LSOF_VSTR=2.2.10 LINUX_BASE=/proc \ - +LSOF_VERS=24018 LSOF_VSTR=2.4.18 LINUX_BASE=/proc \ ./Configure -n linux -make +make DEBUG="$RPM_OPT_FLAGS" + %install -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != "/" ] && rm -rf "$RPM_BUILD_ROOT" # # ### Sort out whether this is the wrapped or linux specific tar ball. # +[ -d lsof_%{version} ] && cd lsof_%{version} [ -d lsof_%{version}_src ] && cd lsof_%{version}_src -install -d ${RPM_BUILD_ROOT}%{_prefix}/{sbin,share/man/man8} +mkdir -p ${RPM_BUILD_ROOT}%{_sbindir} install -s lsof ${RPM_BUILD_ROOT}%{_prefix}/sbin +mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man8 install lsof.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/ + %clean -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT +%clean_buildroot + %files -%defattr(-,root,root) +%defattr(644,root,root,755) %doc lsof_%{version}_src/00* -%attr(0755,root,kmem) %{_prefix}/sbin/lsof -%attr(644,root,root) %{_mandir}/man8/lsof.8* +%attr(0755,root,root) %{_sbindir}/* +%{_mandir}/man*/* + %changelog -* Thu Aug 05 2004 tsintegrate 4.71-4ts -- current (4.71-4jh) integrated as 4.71-4ts for release 1.1 +* Fri Jul 30 2004 Jakub Jelinek 4.72-1 +- update to 4.72 +- use st_dev/st_ino comparison for sockets by name if possible + (#126419) -* Mon May 24 2004 tsintegrate 4.71-3ts -- current (4.71-3jh) integrated as 4.71-3ts for release 1.0-U1 +* Fri Jul 18 2003 Jakub Jelinek 4.68-1 +- update to 4.68 (#99064) -* Thu May 20 2004 Jaakko Heinonen 4.71-3jh -- fix manual page permissions +* Wed Jun 04 2003 Elliot Lee +- rebuilt -* Wed May 19 2004 tsintegrate 4.71-2ts -- current (4.71-1ts) integrated as 4.71-2ts for release 1.0-U1 +* Wed Jan 22 2003 Tim Powers +- rebuilt -* Wed Apr 07 2004 Omar Kilani 4.71-1ts -- New upstream. +* Thu Dec 12 2002 Tim Powers 4.63-3 +- rebuild on all arches -* Mon Jun 23 2003 Erlend Midttun 4.56-7tr -- Fixed %defattr. +* Fri Jun 21 2002 Tim Powers +- automated rebuild -* Wed Jun 18 2003 Erlend Midttun 4.56-6tr -- Big rebuild +* Fri Jun 21 2002 Jakub Jelinek 4.63-1 +- update to 4.63 (#66333). -* Thu May 29 2003 Tore Olsen 4.56-5to -- Readded prereq on setup, need /etc/group +* Thu May 23 2002 Tim Powers +- automated rebuild -* Tue May 27 2003 Erlend Midttun 4.56-4em -- Removed PreReq, fixed %defattr. +* Wed Jan 09 2002 Tim Powers +- automated rebuild -* Fri May 2 2003 Chr. H. Toldnes 4.56-3ct -- Added PreReq on setup in main package +* Sun Jun 24 2001 Elliot Lee +- Bump release + rebuild. -* Mon Mar 24 2003 Erlend Midttun 4.56-2em -- Rebuilt against glibc 2.3.2. +* Thu Sep 7 2000 Jeff Johnson +- update to 4.51. -* Wed Jun 6 2001 Oystein Viggen -- New upstream version: 4.56 +* Wed Jul 12 2000 Prospector +- automatic rebuild -* Tue Mar 6 2001 Alexander Reelsen -- Picked up 4.55 +* Wed Jun 14 2000 Jeff Johnson +- FHS packaging. -* Thu Nov 16 2000 Erlend Midttun -- Updated to 4.52 +* Sun Mar 26 2000 Florian La Roche +- change to root:root perms -* Thu Sep 14 2000 Per Ivar Paulsen -- picked up 4.51 +* Wed Feb 02 2000 Cristian Gafton +- fix description +- man pages are compressed -* Mon Feb 28 2000 Lars Gaarden -- moved manpage to /usr/share/man, FHS +* Wed Dec 22 1999 Jeff Johnson +- update to 4.47. * Tue Aug 3 1999 Jeff Johnson - update to 4.45. From svn at tinysofa.org Tue Sep 21 11:27:10 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 21 Sep 2004 21:27:10 +1000 (EST) Subject: [tinysofa-svn] r4820 - in tinysofa/releases/1.1/rdate/current: sources specs Message-ID: <20040921112710.C74174E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-21 21:27:10 +1000 (Tue, 21 Sep 2004) New Revision: 4820 Added: tinysofa/releases/1.1/rdate/current/sources/rdate-1.4.tar.gz Removed: tinysofa/releases/1.1/rdate/current/sources/rdate-1.3.tar.gz Modified: tinysofa/releases/1.1/rdate/current/specs/rdate.spec Log: - 1.4 Deleted: tinysofa/releases/1.1/rdate/current/sources/rdate-1.3.tar.gz =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/rdate/current/sources/rdate-1.4.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/rdate/current/sources/rdate-1.4.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/rdate/current/specs/rdate.spec =================================================================== --- tinysofa/releases/1.1/rdate/current/specs/rdate.spec 2004-09-21 10:06:02 UTC (rev 4819) +++ tinysofa/releases/1.1/rdate/current/specs/rdate.spec 2004-09-21 11:27:10 UTC (rev 4820) @@ -1,86 +1,99 @@ -Summary: Retrieving the date and time from another machine on your network. +Summary: Tool for getting the date/time from a remote machine. Name: rdate -Version: 1.3 -Release: 2ts -License: public domain +Version: 1.4 +Release: 1jh +License: GPL Group: extra -Source: ftp://sunsite.unc.edu/pub/Linux/system/network/misc/rdate-1.3.tar.gz -BuildRoot: %{_tmppath}/%{name}-root +Source: ftp://people.redhat.com/sopwith/rdate-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-root %description -The rdate utility retrieves the date and time from another machine -on your network, using the protocol described in RFC 868. If you -run rdate as root, it will set your machine's local time to the time -of the machine that you queried. Note that rdate isn't scrupulously -accurate. If you are worried about milliseconds, get the xntpd -program instead. +The rdate utility retrieves the date and time from another machine on +your network, using the protocol described in RFC 868. If you run +rdate as root, it will set your machine's local time to the time of +the machine that you queried. + %prep %setup -q + %build -make +%make CFLAGS="$RPM_OPT_FLAGS" + %install -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != "/" ] && rm -rf "$RPM_BUILD_ROOT" -mkdir -p $RPM_BUILD_ROOT/{%{_bindir},%{_mandir}/man1} +mkdir -p ${RPM_BUILD_ROOT}%{_bindir} +%makeinstall -install -m755 -s rdate $RPM_BUILD_ROOT%{_bindir} -install -m644 rdate.1 $RPM_BUILD_ROOT%{_mandir}/man1 %clean -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT +%clean_buildroot + %files %defattr(-,root,root) -%doc COPYING %{_bindir}/rdate %{_mandir}/man1/rdate.1* + %changelog -* Thu Aug 05 2004 tsintegrate 1.3-2ts -- current (1.3-2jh) integrated as 1.3-2ts for release 1.1 +* Tue Jun 15 2004 Elliot Lee +- rebuilt -* Wed May 19 2004 tsintegrate 1.3-1ts -- current (1.3-1ok) integrated as 1.3-1ts for release 1.0-U1 +* Mon Mar 22 2004 Elliot Lee 1.4-1 +- Timeout (-t) patch from Johan Nilsson -* Fri May 14 2004 Omar Kilani 1.3-1ok -- New Upstream. +* Wed Jan 29 2003 Phil Knirsch 1.3-2 +- Bump release and rebuild. -* Sun Dec 7 2003 Erlend Midttun 1.0-5tr -- Big rebuild +* Wed Nov 06 2002 Elliot Lee 1.3-1 +- New release -* Wed Jun 18 2003 Erlend Midttun 1.0-4tr -- Big rebuild +* Fri Jun 21 2002 Tim Powers +- automated rebuild -* Mon Mar 24 2003 Erlend Midttun 1.0-3em -- Rebuilt against glibc 2.3.2. +* Wed Jun 19 2002 Phil Knirsch 1.2-4 +- Don't forcibly strip binaries -* Mon Feb 5 2001 Oystein Viggen -- Minor changes for TSL +* Thu May 23 2002 Tim Powers +- automated rebuild -* Wed Jul 26 2000 Geoffrey Lee 1.0-3mdk -- change copyright to public domain +* Thu Mar 07 2002 Elliot Lee +- Make a 1.2 release, update to it. In the future, please commit changes +to CVS and make a new release, instead of adding patches to the rpm +package. -* Thu Jul 20 2000 Thierry Vignaud 1.0-2mdk -- BM -- use new macros -- let spec-helper compress man-pages and strip binaries : i'm getting bored - to do a mdk7.1 job :-( +* Mon Feb 25 2002 Elliot Lee +- Bump & rebuild for 7.3 -* Fri Apr 07 2000 Christopher Molnar 1.0-1mdk -- updated 1.0 -- changed group to new groups +* Wed Dec 5 2001 Tim Powers +- bump release number and rebuild on alpha. +* Thu Dec 7 2000 Crutcher Dunnavant +- Fixed Bugzilla bug #41119. More of a RFE, but still important. + +* Thu Dec 7 2000 Crutcher Dunnavant +- rebuild for new tree + +* Thu Aug 17 2000 Jeff Johnson +- summaries from specspo. + +* Wed Aug 09 2000 Philipp Knirsch +- Bugfix for missing /etc/services entry for time protocol (#15797) + +* Mon Jul 31 2000 Crutcher Dunnavant +- tracked successful rdate attempts, so that failure returns 1 + +* Wed Jul 12 2000 Prospector +- automatic rebuild + +* Sun Jun 18 2000 Jeff Johnson +- FHS packaging. + * Fri Feb 04 2000 Elliot Lee - Rewrite the stinking thing due to license worries (bug #8619) -* Fri Nov 5 1999 Damien Krotkine -- Mandrake release - -* Wed May 05 1999 Bernhard Rosenkraenzer -- Mandrake adaptions - * Sun Mar 21 1999 Cristian Gafton - auto rebuild in the new build environment (release 8) From svn at tinysofa.org Wed Sep 22 05:37:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 22 Sep 2004 15:37:49 +1000 (EST) Subject: [tinysofa-svn] r4821 - tinysofa/releases/1.1/foomatic-filters/current/specs Message-ID: <20040922053749.EAC0A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-22 15:37:48 +1000 (Wed, 22 Sep 2004) New Revision: 4821 Modified: tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec Log: - add sample config to documentation Modified: tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec =================================================================== --- tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec 2004-09-21 11:27:10 UTC (rev 4820) +++ tinysofa/releases/1.1/foomatic-filters/current/specs/foomatic-filters.spec 2004-09-22 05:37:48 UTC (rev 4821) @@ -48,7 +48,7 @@ %{_libdir}/cups/filter/* %{_libdir}/ppr %defattr(644,root,root,755) -%doc README USAGE +%doc README USAGE filter.conf %{_mandir}/man1/* %exclude %{_sysconfdir}/foomatic/filter.conf.sample @@ -57,6 +57,7 @@ %changelog * Mon Sep 20 2004 Jaakko Heinonen 3.0.2-2jh - fix %%{_libdir}/ppr permissions +- add sample config to documentation * Thu Sep 16 2004 Jaakko Heinonen 3.0.2-1jh - 3.0.2 which fixes a privilege escalation vulnerability From svn at tinysofa.org Wed Sep 22 12:33:18 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 22 Sep 2004 22:33:18 +1000 (EST) Subject: [tinysofa-svn] r4823 - in contrib/1.1: . nedit nedit/current nedit/current/sources nedit/current/specs Message-ID: <20040922123318.A36A44E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-22 22:33:18 +1000 (Wed, 22 Sep 2004) New Revision: 4823 Added: contrib/1.1/nedit/ contrib/1.1/nedit/current/ contrib/1.1/nedit/current/sources/ contrib/1.1/nedit/current/sources/nedit-5.4-makefiles.patch contrib/1.1/nedit/current/sources/nedit-5.4-motif223.patch contrib/1.1/nedit/current/sources/nedit-5.4-security.patch contrib/1.1/nedit/current/sources/nedit-5.4-source.tar.gz contrib/1.1/nedit/current/sources/nedit-5.4-utf8.patch contrib/1.1/nedit/current/sources/nedit-icon.png contrib/1.1/nedit/current/sources/nedit.desktop contrib/1.1/nedit/current/specs/ contrib/1.1/nedit/current/specs/nedit.spec contrib/1.1/nedit/pristine/ contrib/1.1/nedit/releases/ Log: - add nedit Added: contrib/1.1/nedit/current/sources/nedit-5.4-makefiles.patch =================================================================== --- contrib/1.1/nedit/current/sources/nedit-5.4-makefiles.patch 2004-09-22 10:27:15 UTC (rev 4822) +++ contrib/1.1/nedit/current/sources/nedit-5.4-makefiles.patch 2004-09-22 12:33:18 UTC (rev 4823) @@ -0,0 +1,23 @@ +--- nedit-5.4/makefiles/Makefile.linux.makefiles 2003-05-20 02:27:56.000000000 +0200 ++++ nedit-5.4/makefiles/Makefile.linux 2004-03-17 15:28:40.000000000 +0100 +@@ -1,5 +1,5 @@ + # $Id: Makefile.linux,v 1.11 2003/05/20 00:27:56 n8gray Exp $ +-CC=cc ++CC=gcc + AR=ar + + # For editres, add -DEDITRES to CFLAGS and -lXmu to LIBS +@@ -17,11 +17,11 @@ + # To test if the Motif library exports the runtime version + # add -DHAVE__XMVERSIONSTRING to CFLAGS + # +-CFLAGS=-O -I/usr/X11R6/include -DUSE_DIRENT -DUSE_LPR_PRINT_CMD ++CFLAGS=$(RPM_OPT_FLAGS) -I/usr/X11R6/include -DUSE_DIRENT -DUSE_LPR_PRINT_CMD + + ARFLAGS=-urs + +-LIBS= -L/usr/X11R6/lib -Wl,-Bstatic -lXm -Wl,-Bdynamic -lXp -lXpm -lXext -lXt -lSM -lICE -lX11 -lm ++LIBS= -L/usr/X11R6/$(LIB) -lXm -Xmu -lXp -lXpm -lXext -lXt -lSM -lICE -lX11 -lm + + include Makefile.common + Added: contrib/1.1/nedit/current/sources/nedit-5.4-motif223.patch =================================================================== --- contrib/1.1/nedit/current/sources/nedit-5.4-motif223.patch 2004-09-22 10:27:15 UTC (rev 4822) +++ contrib/1.1/nedit/current/sources/nedit-5.4-motif223.patch 2004-09-22 12:33:18 UTC (rev 4823) @@ -0,0 +1,15 @@ +--- nedit-5.4/util/check_lin_tif.c.motif223 2003-11-13 08:09:50.000000000 +0100 ++++ nedit-5.4/util/check_lin_tif.c 2004-03-17 15:18:56.000000000 +0100 +@@ -250,6 +250,12 @@ + exit(0); + } + ++ /* Check for Open Motif 2.2.3 and up */ ++ if (!force_bad && XmVERSION == 2 && XmREVISION == 2 && XmUPDATE_LEVEL > 2) { ++ exit(0); ++ } ++ ++ + /* Check for the dreaded Open Motif 2.2.2 */ + if (force_bad || + (XmVERSION == 2 && XmREVISION == 2 && XmUPDATE_LEVEL <= 3)) { Added: contrib/1.1/nedit/current/sources/nedit-5.4-security.patch =================================================================== --- contrib/1.1/nedit/current/sources/nedit-5.4-security.patch 2004-09-22 10:27:15 UTC (rev 4822) +++ contrib/1.1/nedit/current/sources/nedit-5.4-security.patch 2004-09-22 12:33:18 UTC (rev 4823) @@ -0,0 +1,61 @@ +--- nedit-5.4/source/file.c.security 2003-09-28 16:18:12.000000000 +0200 ++++ nedit-5.4/source/file.c 2004-03-17 15:25:31.000000000 +0100 +@@ -1218,7 +1218,7 @@ + */ + void PrintString(const char *string, int length, Widget parent, const char *jobName) + { +- char tmpFileName[L_tmpnam]; /* L_tmpnam defined in stdio.h */ ++ char *tmpFileName=strdup("/tmp/neditXXXXXX"); + FILE *fp; + int fd; + +@@ -1229,14 +1229,10 @@ + 1. Create a filename + 2. Open the file with the O_CREAT|O_EXCL flags + So all an attacker can do is a DoS on the print function. */ +- tmpnam(tmpFileName); ++ fd = mkstemp(tmpFileName); + + /* open the temporary file */ +-#ifdef VMS +- if ((fp = fopen(tmpFileName, "w", "rfm = stmlf")) == NULL) +-#else +- if ((fd = open(tmpFileName, O_CREAT|O_EXCL|O_WRONLY, S_IRUSR | S_IWUSR)) < 0 || (fp = fdopen(fd, "w")) == NULL) +-#endif /* VMS */ ++ if ((fp = fdopen(fd, "w")) == NULL) + { + DialogF(DF_WARN, parent, 1, "Error while Printing", + "Unable to write file for printing:\n%s", "Dismiss", +@@ -1250,7 +1246,7 @@ + + /* write to the file */ + #ifdef IBM_FWRITE_BUG +- write(fileno(fp), string, length); ++ write(fd, string, length); + #else + fwrite(string, sizeof(char), length, fp); + #endif +@@ -1260,6 +1256,7 @@ + "%s not printed:\n%s", "Dismiss", jobName, errorString()); + fclose(fp); /* should call close(fd) in turn! */ + remove(tmpFileName); ++ free(tmpFileName); + return; + } + +@@ -1270,6 +1267,7 @@ + "Error closing temp. print file:\n%s", "Dismiss", + errorString()); + remove(tmpFileName); ++ free(tmpFileName); + return; + } + +@@ -1281,6 +1279,7 @@ + PrintFile(parent, tmpFileName, jobName); + remove(tmpFileName); + #endif /*VMS*/ ++ free(tmpFileName); + return; + } + Added: contrib/1.1/nedit/current/sources/nedit-5.4-source.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/nedit/current/sources/nedit-5.4-source.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/nedit/current/sources/nedit-5.4-utf8.patch =================================================================== --- contrib/1.1/nedit/current/sources/nedit-5.4-utf8.patch 2004-09-22 10:27:15 UTC (rev 4822) +++ contrib/1.1/nedit/current/sources/nedit-5.4-utf8.patch 2004-09-22 12:33:18 UTC (rev 4823) @@ -0,0 +1,50 @@ +--- nedit-5.4/source/nedit.c.utf8 2003-06-27 19:49:25.000000000 +0200 ++++ nedit-5.4/source/nedit.c 2004-03-17 15:20:10.000000000 +0100 +@@ -86,6 +86,7 @@ + static String neditLanguageProc(Display *dpy, String xnl, XtPointer closure); + static void maskArgvKeywords(int argc, char **argv, const char **maskArgs); + static void unmaskArgvKeywords(int argc, char **argv, const char **maskArgs); ++static void changeLocaleIfUTF8(void); + static void patchResourcesForVisual(void); + static void patchResourcesForKDEbug(void); + static void patchLocaleForMotif(void); +@@ -346,6 +347,8 @@ + /* Save the command which was used to invoke nedit for restart command */ + ArgV0 = argv[0]; + ++ changeLocaleIfUTF8(); ++ + /* Set locale for C library, X, and Motif input functions. + Reverts to "C" if requested locale not available. */ + XtSetLanguageProc(NULL, neditLanguageProc, NULL); +@@ -851,3 +854,30 @@ + + return setlocale(LC_ALL, NULL); /* re-query in case overwritten */ + } ++ ++ ++static void changeLocaleIfUTF8(void) ++{ ++ char *locale; ++ ++ locale = getenv("LANG"); ++ if (!locale) { ++ locale = setlocale(LC_ALL, NULL); ++ } ++ ++ if (locale) { ++ char *ptr; ++ ++ ptr = strstr(locale, ".UTF-8"); ++ if (ptr) { ++ fprintf(stderr, "nedit: the current locale is utf8 (%s)\n", locale); ++ ++ ptr[0] = '\0'; ++ ++ setenv("LC_ALL", locale, 1); ++ locale = setlocale(LC_ALL, locale); ++ ++ fprintf(stderr, "nedit: changed locale to non-utf8 (%s)\n", locale); ++ } ++ } ++} Added: contrib/1.1/nedit/current/sources/nedit-icon.png =================================================================== (Binary files differ) Property changes on: contrib/1.1/nedit/current/sources/nedit-icon.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/nedit/current/sources/nedit.desktop =================================================================== --- contrib/1.1/nedit/current/sources/nedit.desktop 2004-09-22 10:27:15 UTC (rev 4822) +++ contrib/1.1/nedit/current/sources/nedit.desktop 2004-09-22 12:33:18 UTC (rev 4823) @@ -0,0 +1,31 @@ +[Desktop Entry] +BinaryPattern= +Protocols= +MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++; +Comment=Text Editor +Comment[bg]=Nedit ???????? +Comment[ca]=Editor Nedit +Comment[cs]=Editor Nedit +Comment[eo]=redaktilo Nedit +Comment[et]=Tekstiredaktor Nedit +Comment[fi]=Nedit-editori +Comment[fr]=?diteur Nedit +Comment[hu]=Nedit sz?vegszerkeszt? +Comment[is]=Nedit-ritill +Comment[mk]=Nedit - ????? ? ????? ???????? +Comment[pt]=Editor Nedit +Comment[ro]=Editorul Nedit +Comment[ru]=???????? Nedit +Comment[sk]=Editor Nedit +Comment[sl]=Urejevalnik Nedit +Comment[uk]=???????? Nedit +Name=Nedit +Name[et]=Tekstiredaktor Nedit +Name[ru]=NEdit +Exec=nedit %f +Icon=nedit-icon.png +TerminalOptions= +Path= +Type=Application +Terminal=0 +MapNotify=false Added: contrib/1.1/nedit/current/specs/nedit.spec =================================================================== --- contrib/1.1/nedit/current/specs/nedit.spec 2004-09-22 10:27:15 UTC (rev 4822) +++ contrib/1.1/nedit/current/specs/nedit.spec 2004-09-22 12:33:18 UTC (rev 4823) @@ -0,0 +1,202 @@ +%define desktop_file 0 +%if %{desktop_file} +%define desktop_file_utils_version 0.2.93 +%endif +Summary: A GUI text editor for systems with X and Motif. +Name: nedit +Version: 5.4 +Release: 1jh +Source: http://nedit.org/ftp/v5_3/nedit-%{version}-source.tar.gz +Source1: nedit.desktop +Source2: nedit-icon.png +Patch0: nedit-5.4-security.patch +Patch1: nedit-5.4-makefiles.patch +Patch3: nedit-5.4-utf8.patch +Patch4: nedit-5.4-motif223.patch +URL: http://nedit.org +License: distributable +Group: contrib +BuildRoot: %{_tmppath}/%{name}-%{version}-root +BuildRequires: lesstif-devel xorg-x11-devel +%if %{desktop_file} +BuildPrereq: desktop-file-utils >= %{desktop_file_utils_version} +%endif + +%description +NEdit is a GUI text editor for the X Window System and Motif. NEdit is +very easy to use, especially if you are familiar with the +Macintosh(TM) or Microsoft(TM) Windows(TM) style of interface. + + +%prep +%setup -q +%patch0 -p1 -b .security +%patch1 -p1 -b .makefiles +%patch3 -p1 -b .utf8 +%patch4 -p1 -b .motif223 + + +%build +export RPM_OPT_FLAGS="$RPM_OPT_FLAGS -I/usr/X11R6/LessTif/Motif2.1/include -DBUILD_UNTESTED_NEDIT" + +echo | %make linux LIBS="-L/usr/X11R6/%{_lib} -L/usr/X11R6/LessTif/Motif2.1/%{_lib} -lXm -lXmu -lXp -lXpm -lXext -lXt -lSM -lICE -lX11 -lm" + + +%install +mkdir -p $RPM_BUILD_ROOT%{_prefix}/X11R6/bin +mkdir -p $RPM_BUILD_ROOT%{_prefix}/X11R6/man/man1 +install -s -m 755 source/nedit source/nc $RPM_BUILD_ROOT%{_prefix}/X11R6/bin +install -m 644 doc/nedit.man $RPM_BUILD_ROOT%{_prefix}/X11R6/man/man1/nedit.1x +install -m 644 doc/nc.man $RPM_BUILD_ROOT%{_prefix}/X11R6/man/man1/nc.1x + +mkdir -p $RPM_BUILD_ROOT/etc/X11/applnk/Applications +install -m 644 %{SOURCE1} $RPM_BUILD_ROOT/etc/X11/applnk/Applications +%if %{desktop_file} +mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps +install -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps +mkdir -p $RPM_BUILD_ROOT%{_prefix}/share/applications +desktop-file-install --vendor net --delete-original \ + --dir $RPM_BUILD_ROOT%{_prefix}/share/applications \ + --add-category "Application;Development;X-Red-Hat-Extra" \ + $RPM_BUILD_ROOT/etc/X11/applnk/Applications/nedit.desktop +%endif + + +%clean +%clean_buildroot + + +%files +%defattr(-,root,root) +%doc doc/nedit.doc README ReleaseNotes +%{_prefix}/X11R6/man/*/* +%{_prefix}/X11R6/bin/* +%if %{desktop_file} +%{_prefix}/share/applications/* +%{_datadir}/pixmaps/nedit-icon.png +%else +%exclude %config /etc/X11/applnk/Applications/nedit.desktop +%endif + + +%changelog +* Wed Sep 22 2004 Jaakko Heinonen 5.4-1jh +- tinysofa +- build against lesstif + +* Mon Sep 20 2004 Jindrich Novy +- added nedit icon to be present in menus #131601 +- updated spec to put it to the right place +- icon made by Joor Loohuis (joor at users.sourceforge.net) +- the icon processed by Peter Vrabec (pvrabec at usu.cz) + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Wed Mar 17 2004 Thomas Woerner 5.4-1 +- new version 5.4 + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Fri Dec 5 2003 Tim Waugh +- Don't explicitly require openmotif, since rpm does library dependencies + automatically. +- Binary package doesn't require desktop-file-install. + +* Fri Dec 5 2003 Tim Waugh 5.3-6 +- Add ugly hack to work around openmotif's lack of UTF-8 support (bug #75189). +- Back-port 5.4RC2 fix for uninitialized variable (bug #110898). + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Fri Nov 8 2002 Tim Waugh 5.3-3 +- Handle X11 libdir issue. + +* Tue Oct 22 2002 Tim Waugh 5.3-2 +- Remove original desktop file when installing. +- Fix desktop file icon (bug #61677). + +* Wed Jul 24 2002 Karsten Hopp +- 5.3 +- use desktop-file-utils (#69461) +- redo all patches + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Fri Mar 22 2002 Tim Powers +- rebuilt against openmotif-2.2.2 + +* Fri Mar 1 2002 Than Ngo 1.2-1 +- update to 1.2 +- cleanup patch files + +* Thu Jan 17 2002 Than Ngo 5.1.1-13 +- rebuild against openmotif + +* Wed Jan 09 2002 Tim Powers +- automated rebuild + +* Thu Oct 25 2001 Bill Nottingham +- 0 != NULL. lather, rinse, repeat. (#54943) + +* Mon Aug 20 2001 Bernhard Rosenkraenzer +- Fix crash while printing (#45149) + I still think removing the package would be the better fix, though. + +* Sun Jun 10 2001 Than Ngo +- requires lesstif-devel + +* Tue May 22 2001 Tim Powers +- patched to use lesstif + +* Fri Apr 27 2001 Bernhard Rosenkraenzer +- Fix security bug, use mkstemp() + +* Fri Oct 13 2000 Preston Brown +- .desktop file added + +* Mon Jul 24 2000 Prospector +- rebuilt + +* Mon Jul 10 2000 Tim Powers +- rebuilt + +* Sat Jun 17 2000 Than Ngo +- rebuilt against openmotif-2.1.30 +- use PRM macros + +* Tue May 16 2000 Tim Powers +- updated to 5.1.1 +- updated URL and source location + +* Wed Aug 18 1999 Tim Powers +- excludearch alpha + +* Mon Jul 19 1999 Tim Powers +- rebuilt for 6.1 + +* Thu Apr 15 1999 Michael Maher +- built package for 6.0 + +* Wed Oct 14 1998 Michael Maher +- built package for 5.2 + +* Thu May 21 1998 Cristian Gafton +- upgraded to 5.0.2 + +* Thu Nov 20 1997 Otto Hammersmith +- added wmconfig + +* Mon Nov 17 1997 Otto Hammersmith +- added changelog +- fixed src url +- added URL tag From svn at tinysofa.org Wed Sep 22 15:14:03 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 01:14:03 +1000 (EST) Subject: [tinysofa-svn] r4824 - in contrib/1.1/xpdf/current: sources specs Message-ID: <20040922151403.97ECA4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 01:14:03 +1000 (Thu, 23 Sep 2004) New Revision: 4824 Modified: contrib/1.1/xpdf/current/sources/xpdf-3.00-redhat.patch contrib/1.1/xpdf/current/specs/xpdf.spec Log: - use ghostscript fonts Modified: contrib/1.1/xpdf/current/sources/xpdf-3.00-redhat.patch =================================================================== --- contrib/1.1/xpdf/current/sources/xpdf-3.00-redhat.patch 2004-09-22 12:33:18 UTC (rev 4823) +++ contrib/1.1/xpdf/current/sources/xpdf-3.00-redhat.patch 2004-09-22 15:14:03 UTC (rev 4824) @@ -99,20 +99,20 @@ -#displayFontT1 Courier-BoldOblique /usr/local/share/ghostscript/fonts/n022024l.pfb -#displayFontT1 Symbol /usr/local/share/ghostscript/fonts/s050000l.pfb -#displayFontT1 ZapfDingbats /usr/local/share/ghostscript/fonts/d050000l.pfb -+displayFontT1 Times-Roman /usr/share/fonts/default/Type1/n021003l.pfb -+displayFontT1 Times-Italic /usr/share/fonts/default/Type1/n021023l.pfb -+displayFontT1 Times-Bold /usr/share/fonts/default/Type1/n021004l.pfb -+displayFontT1 Times-BoldItalic /usr/share/fonts/default/Type1/n021024l.pfb -+displayFontT1 Helvetica /usr/share/fonts/default/Type1/n019003l.pfb -+displayFontT1 Helvetica-Oblique /usr/share/fonts/default/Type1/n019023l.pfb -+displayFontT1 Helvetica-Bold /usr/share/fonts/default/Type1/n019004l.pfb -+displayFontT1 Helvetica-BoldOblique /usr/share/fonts/default/Type1/n019024l.pfb -+displayFontT1 Courier /usr/share/fonts/default/Type1/n022003l.pfb -+displayFontT1 Courier-Oblique /usr/share/fonts/default/Type1/n022023l.pfb -+displayFontT1 Courier-Bold /usr/share/fonts/default/Type1/n022004l.pfb -+displayFontT1 Courier-BoldOblique /usr/share/fonts/default/Type1/n022024l.pfb -+displayFontT1 Symbol /usr/share/fonts/default/Type1/s050000l.pfb -+displayFontT1 ZapfDingbats /usr/share/fonts/default/Type1/d050000l.pfb ++displayFontT1 Times-Roman /usr/share/fonts/default/ghostscript/n021003l.pfb ++displayFontT1 Times-Italic /usr/share/fonts/default/rype1/n021023l.pfb ++displayFontT1 Times-Bold /usr/share/fonts/default/ghostscript/n021004l.pfb ++displayFontT1 Times-BoldItalic /usr/share/fonts/default/ghostscript/n021024l.pfb ++displayFontT1 Helvetica /usr/share/fonts/default/ghostscript/n019003l.pfb ++displayFontT1 Helvetica-Oblique /usr/share/fonts/default/ghostscript/n019023l.pfb ++displayFontT1 Helvetica-Bold /usr/share/fonts/default/ghostscript/n019004l.pfb ++displayFontT1 Helvetica-BoldOblique /usr/share/fonts/default/ghostscript/n019024l.pfb ++displayFontT1 Courier /usr/share/fonts/default/ghostscript/n022003l.pfb ++displayFontT1 Courier-Oblique /usr/share/fonts/default/ghostscript/n022023l.pfb ++displayFontT1 Courier-Bold /usr/share/fonts/default/ghostscript/n022004l.pfb ++displayFontT1 Courier-BoldOblique /usr/share/fonts/default/ghostscript/n022024l.pfb ++displayFontT1 Symbol /usr/share/fonts/default/ghostscript/s050000l.pfb ++displayFontT1 ZapfDingbats /usr/share/fonts/default/ghostscript/d050000l.pfb # If you need to display PDF files that refer to non-embedded fonts, # you should add one or more fontDir options to point to the Modified: contrib/1.1/xpdf/current/specs/xpdf.spec =================================================================== --- contrib/1.1/xpdf/current/specs/xpdf.spec 2004-09-22 12:33:18 UTC (rev 4823) +++ contrib/1.1/xpdf/current/specs/xpdf.spec 2004-09-22 15:14:03 UTC (rev 4824) @@ -30,6 +30,8 @@ Patch4: xpdf-3.00-freetype.patch Patch5: xpdf-3.0-cjk-font.patch +# for ghostscript fonts +Requires: ghostscript #Requires: urw-fonts #Requires: htmlview @@ -110,6 +112,7 @@ %patch5 -p1 -b .cjk %build +export PATH="$PATH:/usr/X11R6/bin" pushd t1lib-%{t1lib_version} %configure --disable-shared --enable-static --without-athena %make without_doc XSUBDIRS="" @@ -134,8 +137,6 @@ make xpdf %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT - mkdir -p $RPM_BUILD_ROOT/etc/X11/applnk/Graphics \ $RPM_BUILD_ROOT%{_datadir}/xpdf/chinese-simplified \ $RPM_BUILD_ROOT%{_datadir}/xpdf/chinese-traditional \ From svn at tinysofa.org Wed Sep 22 15:17:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 01:17:41 +1000 (EST) Subject: [tinysofa-svn] r4825 - contrib/1.1/xmms/current/specs Message-ID: <20040922151741.2B6E34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 01:17:40 +1000 (Thu, 23 Sep 2004) New Revision: 4825 Modified: contrib/1.1/xmms/current/specs/xmms.spec Log: - create directory with correct permissions Modified: contrib/1.1/xmms/current/specs/xmms.spec =================================================================== --- contrib/1.1/xmms/current/specs/xmms.spec 2004-09-22 15:14:03 UTC (rev 4824) +++ contrib/1.1/xmms/current/specs/xmms.spec 2004-09-22 15:17:40 UTC (rev 4825) @@ -141,7 +141,7 @@ #(cd $RPM_BUILD_ROOT%{_datadir}/applications && ln -sf \ # %{_datadir}/desktop-menu-patches/redhat-audio-player.desktop) -mkdir -p %{buildroot}%{_datadir}/pixmaps/mini +install -d -m 755 %{buildroot}%{_datadir}/pixmaps/mini install xmms/xmms_logo.xpm %{buildroot}%{_datadir}/pixmaps install xmms/xmms_mini.xpm %{buildroot}%{_datadir}/pixmaps/mini install -m 644 $RPM_SOURCE_DIR/xmms.xpm %{buildroot}%{_datadir}/pixmaps From svn at tinysofa.org Wed Sep 22 15:31:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 01:31:27 +1000 (EST) Subject: [tinysofa-svn] r4826 - in contrib/1.1/icewm/current: sources specs Message-ID: <20040922153127.972164E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 01:31:27 +1000 (Thu, 23 Sep 2004) New Revision: 4826 Modified: contrib/1.1/icewm/current/sources/icewm-menu contrib/1.1/icewm/current/sources/icewm-preferences contrib/1.1/icewm/current/sources/icewm-programs contrib/1.1/icewm/current/specs/icewm.spec Log: - update configuration Modified: contrib/1.1/icewm/current/sources/icewm-menu =================================================================== --- contrib/1.1/icewm/current/sources/icewm-menu 2004-09-22 15:17:40 UTC (rev 4825) +++ contrib/1.1/icewm/current/sources/icewm-menu 2004-09-22 15:31:27 UTC (rev 4826) @@ -6,11 +6,6 @@ # prog xterm xterm xterm prog rxvt xterm rxvt -bg black -cr green -fg white -C -fn 9x15 -sl 500 -prog fte fte fte -prog NEdit nedit nedit -prog Mozilla mozilla mozilla -prog XChat xchat xchat -prog Gimp gimp gimp separator menuprog Gnome folder icewm-menu-gnome1 --list menuprog Gnome folder icewm-menu-gnome2 --list Modified: contrib/1.1/icewm/current/sources/icewm-preferences =================================================================== --- contrib/1.1/icewm/current/sources/icewm-preferences 2004-09-22 15:17:40 UTC (rev 4825) +++ contrib/1.1/icewm/current/sources/icewm-preferences 2004-09-22 15:31:27 UTC (rev 4826) @@ -405,7 +405,7 @@ # NestedThemeMenuMinNumber=15 # [0-1234] # Icon search path (colon separated) -IconPath="/usr/share/pixmaps" +IconPath="/usr/share/pixmaps:/usr/share/icons" # Mailbox path (use $MAIL instead) #MailBoxPath="" Modified: contrib/1.1/icewm/current/sources/icewm-programs =================================================================== --- contrib/1.1/icewm/current/sources/icewm-programs 2004-09-22 15:17:40 UTC (rev 4825) +++ contrib/1.1/icewm/current/sources/icewm-programs 2004-09-22 15:31:27 UTC (rev 4826) @@ -1,5 +1,8 @@ -prog "Firefox Web Browser" firefox.png firefox -prog "Gqview Image Viewer" gqview.png gqview -prog "Mutt Mail" mutt xterm +sb -name mutt -title mutt -e mutt -prog "Sylpheed Mail" sylpheed.png sylpheed -prog "Xmms Multimedia Player" xmms xmms +prog "Firefox Web Browser" firefox.png firefox +prog "Gimp Image Manipulation Program" gimp gimp +prog "Gqview Image Viewer" gqview.png gqview +prog "Mutt Mail" mutt xterm +sb -name mutt -title mutt -e mutt +prog "Nedit Editor" nedit-icon.png nedit +prog "Sylpheed Mail" sylpheed.png sylpheed +prog "Xmms Multimedia Player" xmms xmms +prog "Xpdf PDF Viever" xpdf.png xpdf Modified: contrib/1.1/icewm/current/specs/icewm.spec =================================================================== --- contrib/1.1/icewm/current/specs/icewm.spec 2004-09-22 15:17:40 UTC (rev 4825) +++ contrib/1.1/icewm/current/specs/icewm.spec 2004-09-22 15:31:27 UTC (rev 4826) @@ -1,7 +1,7 @@ Summary: A fast, small X Window System window manager. Name: icewm Version: 1.2.16 -Release: 2jh +Release: 3jh License: LGPL Group: contrib Source0: %{name}-%{version}.tar.gz From svn at tinysofa.org Wed Sep 22 16:45:56 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 02:45:56 +1000 (EST) Subject: [tinysofa-svn] r4827 - contrib/1.1 Message-ID: <20040922164556.D75EA4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 02:45:56 +1000 (Thu, 23 Sep 2004) New Revision: 4827 Added: contrib/1.1/lesstif/ Removed: contrib/1.1/lestiff/ Log: - lestiff -> lesstif Copied: contrib/1.1/lesstif (from rev 4826, contrib/1.1/lestiff) From svn at tinysofa.org Wed Sep 22 17:14:54 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 03:14:54 +1000 (EST) Subject: [tinysofa-svn] r4828 - contrib/1.1/xpdf/current/specs Message-ID: <20040922171454.EF5824E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 03:14:54 +1000 (Thu, 23 Sep 2004) New Revision: 4828 Modified: contrib/1.1/xpdf/current/specs/xpdf.spec Log: - BR: gcc-c++ Modified: contrib/1.1/xpdf/current/specs/xpdf.spec =================================================================== --- contrib/1.1/xpdf/current/specs/xpdf.spec 2004-09-22 16:45:56 UTC (rev 4827) +++ contrib/1.1/xpdf/current/specs/xpdf.spec 2004-09-22 17:14:54 UTC (rev 4828) @@ -35,7 +35,7 @@ #Requires: urw-fonts #Requires: htmlview -BuildPrereq: lesstif-devel autoconf +BuildPrereq: lesstif-devel autoconf gcc-c++ BuildPrereq: xorg-x11-devel BuildPrereq: freetype-devel >= 2.1.7 BuildPrereq: fileutils From svn at tinysofa.org Wed Sep 22 17:21:15 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 03:21:15 +1000 (EST) Subject: [tinysofa-svn] r4829 - contrib/1.1/xorg-x11/current/specs Message-ID: <20040922172115.760034E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 03:21:15 +1000 (Thu, 23 Sep 2004) New Revision: 4829 Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec Log: - own %%{_x11icondir} - /etc/ld.so.conf.d/xorg-x11.conf creation - xdm init script update Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec =================================================================== --- contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-22 17:14:54 UTC (rev 4828) +++ contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-22 17:21:15 UTC (rev 4829) @@ -24,7 +24,7 @@ # Use very future proofed version number, until we know what upstream version # will really be. Version: 6.7.0 -Release: 8jh +Release: 9jh #.%{cvs_release} %define build_maintainer_mode %( hostname -f |grep -q capslock.lan && echo 1 || echo 0) @@ -1888,6 +1888,7 @@ %post libs { + umask 022 cat </etc/ld.so.conf.d/xorg-x11.conf /usr/X11R6/lib EOF @@ -1895,13 +1896,13 @@ } %postun libs +rm -f /etc/ld.so.conf.d/xorg-x11.conf /sbin/ldconfig %post devel /sbin/ldconfig %postun devel -rm -f /etc/ld.so.conf.d/xorg-x11.conf /sbin/ldconfig %post Mesa-libGL @@ -2571,9 +2572,7 @@ %{_x11mandir}/man5/* %endif %{_x11mandir}/man7/* -%if ! %{with_icons_in_datadir} %dir %{_x11icondir} -%endif %dir %{_x11icondir}/default %config(noreplace) %verify(not md5 size mtime) %{_x11icondir}/default/index.theme %if %{with_handhelds} @@ -3283,6 +3282,11 @@ %clean_buildroot %changelog +* Wed Sep 22 2004 Jaakko Heinonen 6.7.0-9jh +- own %%{_x11icondir} +- /etc/ld.so.conf.d/xorg-x11.conf creation +- xdm init script update + * Mon Sep 13 2004 tsintegrate 6.7.0-8jh - current (6.7.0-8jh) integrated as 6.7.0-8jh From svn at tinysofa.org Wed Sep 22 18:01:10 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 04:01:10 +1000 (EST) Subject: [tinysofa-svn] r4830 - contrib/1.1/sylpheed/current/specs Message-ID: <20040922180110.17A044E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 04:01:09 +1000 (Thu, 23 Sep 2004) New Revision: 4830 Modified: contrib/1.1/sylpheed/current/specs/sylpheed.spec Log: - own directories under %%{_datadir} Modified: contrib/1.1/sylpheed/current/specs/sylpheed.spec =================================================================== --- contrib/1.1/sylpheed/current/specs/sylpheed.spec 2004-09-22 17:21:15 UTC (rev 4829) +++ contrib/1.1/sylpheed/current/specs/sylpheed.spec 2004-09-22 18:01:09 UTC (rev 4830) @@ -1,7 +1,7 @@ Summary: a GTK+ based, lightweight, and fast e-mail client Name: sylpheed Version: 0.9.12 -Release: 1gd +Release: 2jh Source: http://sylpheed.good-day.net/sylpheed/%{name}-%{version}.tar.bz2 Copyright: GPL URL: http://sylpheed.good-day.net/ @@ -37,7 +37,7 @@ %build %configure --enable-ldap --enable-ssl --enable-gpgme -make +%make %install %makeinstall @@ -48,15 +48,17 @@ %clean_buildroot %files -%defattr(-,root,root) +%defattr(-,root,root,755) %doc COPYING ChangeLog ChangeLog.jp README README.jp INSTALL INSTALL.jp TODO.jp %{_bindir}/%{name} %{_datadir}/locale/*/LC_MESSAGES/%{name}.mo -%{_datadir}/%{name}/faq/*/* -%{_datadir}/%{name}/manual/*/* +%{_datadir}/%{name} %{_datadir}/pixmaps/*.png %changelog +* Wed Sep 22 2004 Jaakko Heinonen 0.9.12-2jh +- own directories under %%{_datadir} + * Mon Sep 13 2004 tsintegrate 0.9.12-1gd - current (0.9.12-1gd) integrated as 0.9.12-1gd From svn at tinysofa.org Wed Sep 22 18:11:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 04:11:21 +1000 (EST) Subject: [tinysofa-svn] r4831 - in tinysofa/releases/1.1/tinysofa-rpm-config/current: sources specs Message-ID: <20040922181121.309894E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 04:11:20 +1000 (Thu, 23 Sep 2004) New Revision: 4831 Added: tinysofa/releases/1.1/tinysofa-rpm-config/current/sources/tinysofa-rpm-config-1.1.5.tar.bz2 Modified: tinysofa/releases/1.1/tinysofa-rpm-config/current/specs/tinysofa-rpm-config.spec Log: - 1.1.5 Added: tinysofa/releases/1.1/tinysofa-rpm-config/current/sources/tinysofa-rpm-config-1.1.5.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/tinysofa-rpm-config/current/sources/tinysofa-rpm-config-1.1.5.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/tinysofa-rpm-config/current/specs/tinysofa-rpm-config.spec =================================================================== --- tinysofa/releases/1.1/tinysofa-rpm-config/current/specs/tinysofa-rpm-config.spec 2004-09-22 18:01:09 UTC (rev 4830) +++ tinysofa/releases/1.1/tinysofa-rpm-config/current/specs/tinysofa-rpm-config.spec 2004-09-22 18:11:20 UTC (rev 4831) @@ -1,7 +1,7 @@ Summary: tinysofa specific rpm configuration files. Name: tinysofa-rpm-config -Version: 1.1.4 -Release: 1ts +Version: 1.1.5 +Release: 1jh License: GPL Group: development Source: tinysofa-rpm-config-%{version}.tar.bz2 From svn at tinysofa.org Wed Sep 22 18:32:58 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 04:32:58 +1000 (EST) Subject: [tinysofa-svn] r4832 - contrib/1.1/icewm/current/sources Message-ID: <20040922183258.1E7C74E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 04:32:57 +1000 (Thu, 23 Sep 2004) New Revision: 4832 Modified: contrib/1.1/icewm/current/sources/icewm-programs Log: - fix a typo in icewm-programs Modified: contrib/1.1/icewm/current/sources/icewm-programs =================================================================== --- contrib/1.1/icewm/current/sources/icewm-programs 2004-09-22 18:11:20 UTC (rev 4831) +++ contrib/1.1/icewm/current/sources/icewm-programs 2004-09-22 18:32:57 UTC (rev 4832) @@ -5,4 +5,4 @@ prog "Nedit Editor" nedit-icon.png nedit prog "Sylpheed Mail" sylpheed.png sylpheed prog "Xmms Multimedia Player" xmms xmms -prog "Xpdf PDF Viever" xpdf.png xpdf +prog "Xpdf PDF Viewer" xpdf.png xpdf From svn at tinysofa.org Wed Sep 22 19:15:17 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 05:15:17 +1000 (EST) Subject: [tinysofa-svn] r4833 - contrib/1.1/xorg-x11/current/specs Message-ID: <20040922191517.8382E4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 05:15:17 +1000 (Thu, 23 Sep 2004) New Revision: 4833 Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec Log: - really fix /etc/ld.so.conf.d/xorg-x11.conf creation - do not mark init scripts as config files Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec =================================================================== --- contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-22 18:32:57 UTC (rev 4832) +++ contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-22 19:15:17 UTC (rev 4833) @@ -24,7 +24,7 @@ # Use very future proofed version number, until we know what upstream version # will really be. Version: 6.7.0 -Release: 9jh +Release: 10jh #.%{cvs_release} %define build_maintainer_mode %( hostname -f |grep -q capslock.lan && echo 1 || echo 0) @@ -557,7 +557,6 @@ Summary: X11R6 static libraries, headers and programming man pages. Group: contrib Requires: %{name}-libs = %{version}-%{release} -PreReq: /sbin/ldconfig Obsoletes: Xft-devel Provides: xpm-devel, Mesa-devel %if %{build_maintainer} @@ -853,7 +852,6 @@ # FIXME: These should be versioned to the Mesa version Provides: Mesa Provides: libGL -PreReq: /sbin/ldconfig %description Mesa-libGL The Mesa 3D graphics library is a powerful and generic toolset for @@ -870,7 +868,6 @@ Summary: Commonly used GL utility library Group: contrib Provides: libGLU -PreReq: /sbin/ldconfig %description Mesa-libGLU libGLU is a utility library used by a lot of OpenGL applications @@ -1672,6 +1669,12 @@ install -D -m 755 %{SOURCE100} %{buildroot}%{_sysconfdir}/profile.d/xorg-x11.sh install -D -m 755 %{SOURCE101} %{buildroot}%{_sysconfdir}/profile.d/xorg-x11.csh +install -d -m 755 %{buildroot}%{_sysconfdir}/ld.so.conf.d/ +cat << __EOF__ > %{buildroot}%{_sysconfdir}/ld.so.conf.d/%{name}.conf +%{_x11libdir} +__EOF__ +chmod 644 %{buildroot}%{_sysconfdir}/ld.so.conf.d/%{name}.conf + ###################################################################### # STRIP SECTION - must come just before DELETE UNWANTED FILES section # strip the crap that's safe to strip @@ -1886,36 +1889,21 @@ fi } -%post libs -{ - umask 022 - cat </etc/ld.so.conf.d/xorg-x11.conf -/usr/X11R6/lib -EOF - /sbin/ldconfig -} +%post libs -p /sbin/ldconfig -%postun libs -rm -f /etc/ld.so.conf.d/xorg-x11.conf -/sbin/ldconfig +%postun libs -p /sbin/ldconfig -%post devel -/sbin/ldconfig +%post devel -p /sbin/ldconfig -%postun devel -/sbin/ldconfig +%postun devel -p /sbin/ldconfig -%post Mesa-libGL -/sbin/ldconfig +%post Mesa-libGL -p /sbin/ldconfig -%postun Mesa-libGL -/sbin/ldconfig +%postun Mesa-libGL -p /sbin/ldconfig -%post Mesa-libGLU -/sbin/ldconfig +%post Mesa-libGLU -p /sbin/ldconfig -%postun Mesa-libGLU -/sbin/ldconfig +%postun Mesa-libGLU -p /sbin/ldconfig %pre xfs { @@ -2926,7 +2914,8 @@ %{_x11mandir}/man1/xdm.1* %dir /var/lib/xdm %dir %attr(0700,root,root) /var/lib/xdm/authdir -%config %{_sysconfdir}/init.d/xdm +#%config %{_sysconfdir}/init.d/xdm +%{_sysconfdir}/init.d/xdm %files xfs @@ -2934,7 +2923,9 @@ %dir /etc/X11/fs # Changed back to 'noreplace' to fix bug #53103 %config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/X11/fs/config +#%config %{_sysconfdir}/init.d/xfs %config %{_sysconfdir}/init.d/xfs +%{_sysconfdir}/ld.so.conf.d/%{name}.conf %{_x11bindir}/xfsinfo %{_x11bindir}/fslsfonts %{_x11bindir}/fstobdf @@ -3282,10 +3273,11 @@ %clean_buildroot %changelog -* Wed Sep 22 2004 Jaakko Heinonen 6.7.0-9jh +* Wed Sep 22 2004 Jaakko Heinonen 6.7.0-10jh - own %%{_x11icondir} - /etc/ld.so.conf.d/xorg-x11.conf creation - xdm init script update +- do not mark init scripts as config files * Mon Sep 13 2004 tsintegrate 6.7.0-8jh - current (6.7.0-8jh) integrated as 6.7.0-8jh From svn at tinysofa.org Wed Sep 22 20:03:58 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 06:03:58 +1000 (EST) Subject: [tinysofa-svn] r4834 - contrib/1.1/xorg-x11/current/specs Message-ID: <20040922200358.05CAA4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 06:03:57 +1000 (Thu, 23 Sep 2004) New Revision: 4834 Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec Log: - put %{_sysconfdir}/ld.so.conf.d/%{name}.conf to correct package Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec =================================================================== --- contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-22 19:15:17 UTC (rev 4833) +++ contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-22 20:03:57 UTC (rev 4834) @@ -2925,7 +2925,6 @@ %config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/X11/fs/config #%config %{_sysconfdir}/init.d/xfs %config %{_sysconfdir}/init.d/xfs -%{_sysconfdir}/ld.so.conf.d/%{name}.conf %{_x11bindir}/xfsinfo %{_x11bindir}/fslsfonts %{_x11bindir}/fstobdf @@ -3073,6 +3072,7 @@ # FIXME: need to do test build to get .so version %{_x11libdir}/libxrx.so. %endif +%{_sysconfdir}/ld.so.conf.d/%{name}.conf %files Mesa-libGL %defattr(-,root,root) From svn at tinysofa.org Thu Sep 23 13:00:24 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 23:00:24 +1000 (EST) Subject: [tinysofa-svn] r4835 - in contrib/1.1/lha/current: sources specs Message-ID: <20040923130024.1F01F4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 23:00:22 +1000 (Thu, 23 Sep 2004) New Revision: 4835 Added: contrib/1.1/lha/current/sources/lha-114i-malloc.patch contrib/1.1/lha/current/sources/lha-114i-sec.patch contrib/1.1/lha/current/sources/lha-114i-sec2.patch contrib/1.1/lha/current/sources/lha-114i-symlink.patch contrib/1.1/lha/current/sources/lha-dir_length_bounds_check.patch Modified: contrib/1.1/lha/current/specs/lha.spec Log: - security vulnerabilities CAN-2004-0769, CAN-2004-0771, CAN-2004-0694, CAN-2004 +-0745 - fix security vulnerabilities, CAN-2004-0234, CAN-2004-0235 Added: contrib/1.1/lha/current/sources/lha-114i-malloc.patch =================================================================== --- contrib/1.1/lha/current/sources/lha-114i-malloc.patch 2004-09-22 20:03:57 UTC (rev 4834) +++ contrib/1.1/lha/current/sources/lha-114i-malloc.patch 2004-09-23 13:00:22 UTC (rev 4835) @@ -0,0 +1,10 @@ +--- lha-114i/src/lha.h.orig 2004-05-19 19:24:19.000000000 -0400 ++++ lha-114i/src/lha.h 2004-05-19 19:23:19.000000000 -0400 +@@ -16,6 +16,7 @@ + #include + #include + #include ++#include + + #include + Added: contrib/1.1/lha/current/sources/lha-114i-sec.patch =================================================================== --- contrib/1.1/lha/current/sources/lha-114i-sec.patch 2004-09-22 20:03:57 UTC (rev 4834) +++ contrib/1.1/lha/current/sources/lha-114i-sec.patch 2004-09-23 13:00:22 UTC (rev 4835) @@ -0,0 +1,75 @@ +--- lha-114i/src/header.c.orig 2000-10-05 19:36:03.000000000 +0200 ++++ lha-114i/src/header.c 2004-04-21 14:30:52.000000000 +0200 +@@ -538,6 +538,10 @@ + /* + * filename + */ ++ if (header_size >= 256) { ++ fprintf(stderr, "Possible buffer overflow hack attack, type #1\n"); ++ exit(109); ++ } + for (i = 0; i < header_size - 3; i++) + hdr->name[i] = (char) get_byte(); + hdr->name[header_size - 3] = '\0'; +@@ -547,6 +551,10 @@ + /* + * directory + */ ++ if (header_size >= FILENAME_LENGTH) { ++ fprintf(stderr, "Possible buffer overflow hack attack, type #2\n"); ++ exit(110); ++ } + for (i = 0; i < header_size - 3; i++) + dirname[i] = (char) get_byte(); + dirname[header_size - 3] = '\0'; +--- lha-114i/src/lhext.c.orig 2000-10-04 16:57:38.000000000 +0200 ++++ lha-114i/src/lhext.c 2004-04-21 14:30:52.000000000 +0200 +@@ -190,8 +190,13 @@ + q = (char *) rindex(hdr->name, '/') + 1; + } + else { ++ if (is_directory_traversal(q)) { ++ fprintf(stderr, "Possible directory traversal hack attempt in %s\n", q); ++ exit(111); ++ } ++ + if (*q == '/') { +- q++; ++ while (*q == '/') { q++; } + /* + * if OSK then strip device name + */ +@@ -419,6 +424,33 @@ + return; + } + ++int ++is_directory_traversal(char *string) ++{ ++ unsigned int type = 0; /* 0 = new, 1 = only dots, 2 = other chars than dots */ ++ char *temp; ++ ++ temp = string; ++ ++ while (*temp != 0) { ++ if (temp[0] == '/') { ++ if (type == 1) { return 1; } ++ type = 0; ++ temp++; ++ continue; ++ } ++ ++ if ((temp[0] == '.') && (type < 2)) ++ type = 1; ++ if (temp[0] != '.') ++ type = 2; ++ ++ temp++; ++ } /* while */ ++ ++ return (type == 1); ++} ++ + /* Local Variables: */ + /* mode:c */ + /* tab-width:4 */ Added: contrib/1.1/lha/current/sources/lha-114i-sec2.patch =================================================================== --- contrib/1.1/lha/current/sources/lha-114i-sec2.patch 2004-09-22 20:03:57 UTC (rev 4834) +++ contrib/1.1/lha/current/sources/lha-114i-sec2.patch 2004-09-23 13:00:22 UTC (rev 4835) @@ -0,0 +1,196 @@ +diff -urNp lha-114i.orig/src/lha_macro.h lha-114i/src/lha_macro.h +--- lha-114i.orig/src/lha_macro.h 2004-08-03 15:53:56.000000000 -0500 ++++ lha-114i/src/lha_macro.h 2004-08-03 15:54:05.000000000 -0500 +@@ -53,7 +53,7 @@ + #define SEEK_SET 0 + #define SEEK_CUR 1 + #define SEEK_END 2 +-#endif /* SEEK_SET ++#endif /* SEEK_SET */ + + + /* non-integral functions */ +diff -urNp lha-114i.orig/src/lharc.c lha-114i/src/lharc.c +--- lha-114i.orig/src/lharc.c 2004-08-03 15:53:56.000000000 -0500 ++++ lha-114i/src/lharc.c 2004-08-03 15:54:05.000000000 -0500 +@@ -830,9 +830,10 @@ find_files(name, v_filec, v_filev) + DIRENTRY *dp; + struct stat tmp_stbuf, arc_stbuf, fil_stbuf; + +- strcpy(newname, name); ++ strncpy(newname, name, sizeof(newname)); ++ newname[sizeof(newname)-1] = 0; + len = strlen(name); +- if (len > 0 && newname[len - 1] != '/') ++ if (len > 0 && newname[len - 1] != '/' && len < (sizeof(newname)-1)) + newname[len++] = '/'; + + dirp = opendir(name); +@@ -846,6 +847,11 @@ find_files(name, v_filec, v_filev) + + for (dp = readdir(dirp); dp != NULL; dp = readdir(dirp)) { + n = NAMLEN(dp); ++ if (len >= (sizeof(newname)-1) || ++ (len+n) >= (sizeof(newname)-1) || ++ n <= 0 || ++ (len+n) <= 0) ++ break; + strncpy(newname + len, dp->d_name, n); + newname[len + n] = '\0'; + if (GETSTAT(newname, &fil_stbuf) < 0) +@@ -903,7 +909,8 @@ build_temporary_name() + strcpy(temporary_name, TMP_FILENAME_TEMPLATE); + } + else { +- sprintf(temporary_name, "%s/lhXXXXXX", extract_directory); ++ snprintf(temporary_name, sizeof(temporary_name), ++ "%s/lhXXXXXX", extract_directory); + } + #ifdef MKSTEMP + mkstemp(temporary_name); +@@ -913,10 +920,16 @@ build_temporary_name() + #else + char *p, *s; + +- strcpy(temporary_name, archive_name); ++ strncpy(temporary_name, archive_name, sizeof(temporary_name)); ++ temporary_name[sizeof(temporary_name)-1] = 0; + for (p = temporary_name, s = (char *) 0; *p; p++) + if (*p == '/') + s = p; ++ ++ if( sizeof(temporary_name) - ((size_t) (s-temporary_name)) - 1 ++ <= strlen("lhXXXXXX")) ++ exit(-1); ++ + strcpy((s ? s + 1 : temporary_name), "lhXXXXXX"); + #ifdef MKSTEMP + mkstemp(temporary_name); +@@ -1052,7 +1065,8 @@ open_old_archive() + + if (open_old_archive_1(archive_name, &fp)) + return fp; +- sprintf(expanded_archive_name, "%s.lzh", archive_name); ++ snprintf(expanded_archive_name, sizeof(expanded_archive_name), ++ "%s.lzh", archive_name); + if (open_old_archive_1(expanded_archive_name, &fp)) { + archive_name = expanded_archive_name; + return fp; +@@ -1061,7 +1075,8 @@ open_old_archive() + * if ( (errno&0xffff)!=E_PNNF ) { archive_name = + * expanded_archive_name; return NULL; } + */ +- sprintf(expanded_archive_name, "%s.lzs", archive_name); ++ snprintf(expanded_archive_name, sizeof(expanded_archive_name), ++ "%s.lzs", archive_name); + if (open_old_archive_1(expanded_archive_name, &fp)) { + archive_name = expanded_archive_name; + return fp; +diff -urNp lha-114i.orig/src/lhext.c lha-114i/src/lhext.c +--- lha-114i.orig/src/lhext.c 2004-08-03 15:53:56.000000000 -0500 ++++ lha-114i/src/lhext.c 2004-08-03 15:55:40.000000000 -0500 +@@ -82,7 +82,8 @@ make_parent_path(name) + register char *p; + + /* make parent directory name into PATH for recursive call */ +- strcpy(path, name); ++ memset(path, 0, sizeof(path)); ++ strncpy(path, name, sizeof(path)-1); + for (p = path + strlen(path); p > path; p--) + if (p[-1] == '/') { + *--p = '\0'; +@@ -212,9 +213,11 @@ extract_one(afp, hdr) + } + + if (extract_directory) +- sprintf(name, "%s/%s", extract_directory, q); +- else +- strcpy(name, q); ++ snprintf(name, sizeof(name), "%s/%s", extract_directory, q); ++ else { ++ strncpy(name, q, sizeof(name)); ++ name[sizeof(name) - 1] = '\0'; ++ } + + + /* LZHDIRS_METHOD?????????????????????? */ +@@ -335,7 +338,8 @@ extract_one(afp, hdr) + if ((hdr->unix_mode & UNIX_FILE_TYPEMASK) == UNIX_FILE_SYMLINK) { + char buf[256], *bb1, *bb2; + int l_code; +- strcpy(buf, name); ++ strncpy(buf, name, sizeof(buf)); ++ buf[sizeof(buf)-1] = 0; + bb1 = strtok(buf, "|"); + bb2 = strtok(NULL, "|"); + +@@ -365,9 +369,10 @@ extract_one(afp, hdr) + if (quiet != TRUE) { + printf("Symbolic Link %s -> %s\n", bb1, bb2); + } +- strcpy(name, bb1); /* Symbolic's name set */ ++ strncpy(name, bb1, 255); /* Symbolic's name set */ ++ name[255] = 0; + #else +- sprintf(buf, "%s -> %s", bb1, bb2); ++ sprintf(buf, sizeof(buf), "%s -> %s", bb1, bb2); + warning("Can't make Symbolic Link", buf); + return; + #endif +diff -urNp lha-114i.orig/src/lhlist.c lha-114i/src/lhlist.c +--- lha-114i.orig/src/lhlist.c 2004-08-03 15:53:56.000000000 -0500 ++++ lha-114i/src/lhlist.c 2004-08-03 15:54:05.000000000 -0500 +@@ -250,7 +250,8 @@ list_one(hdr) + printf(" %s", hdr->name); + else { + char buf[256], *b1, *b2; +- strcpy(buf, hdr->name); ++ strncpy(buf, hdr->name, sizeof(buf)); ++ buf[sizeof(buf)-1] = 0; + b1 = strtok(buf, "|"); + b2 = strtok(NULL, "|"); + printf(" %s -> %s", b1, b2); +diff -urNp lha-114i.orig/src/util.c lha-114i/src/util.c +--- lha-114i.orig/src/util.c 2004-08-03 15:53:56.000000000 -0500 ++++ lha-114i/src/util.c 2004-08-03 15:54:05.000000000 -0500 +@@ -276,21 +276,27 @@ rmdir(path) + char *path; + { + int stat, rtn = 0; +- char *cmdname; +- if ((cmdname = (char *) malloc(strlen(RMDIRPATH) + 1 + strlen(path) + 1)) +- == 0) ++ pid_t child; ++ ++ ++ /* XXX thomas: shell meta chars in path could exec commands */ ++ /* therefore we should avoid using system() */ ++ if ((child = fork()) < 0) ++ return (-1); /* fork error */ ++ else if (child) { /* parent process */ ++ while (child != wait(&stat)) /* ignore signals */ ++ continue; ++ } ++ else { /* child process */ ++ execl(RMDIRPATH, "rmdir", path, (char *) 0); ++ /* never come here except execl is error */ + return (-1); +- strcpy(cmdname, RMDIRPATH); +- *(cmdname + strlen(RMDIRPATH)) = ' '; +- strcpy(cmdname + strlen(RMDIRPATH) + 1, path); +- if ((stat = system(cmdname)) < 0) +- rtn = -1; /* fork or exec error */ +- else if (stat) { /* RMDIR command error */ +- errno = EIO; +- rtn = -1; + } +- free(cmdname); +- return (rtn); ++ if (stat != 0) { ++ errno = EIO; /* cannot get error num. */ ++ return (-1); ++ } ++ return (0); + } + + /* ------------------------------------------------------------------------ */ Added: contrib/1.1/lha/current/sources/lha-114i-symlink.patch =================================================================== --- contrib/1.1/lha/current/sources/lha-114i-symlink.patch 2004-09-22 20:03:57 UTC (rev 4834) +++ contrib/1.1/lha/current/sources/lha-114i-symlink.patch 2004-09-23 13:00:22 UTC (rev 4835) @@ -0,0 +1,10 @@ +--- lha-114i/src/lhext.c.symlink 2000-10-04 10:57:38.000000000 -0400 ++++ lha-114i/src/lhext.c 2003-05-19 22:55:57.000000000 -0400 +@@ -351,6 +351,7 @@ extract_one(afp, hdr) + } + + unlink(bb1); ++ make_parent_path(bb1); + l_code = symlink(bb2, bb1); + if (l_code < 0) { + if (quiet != TRUE) Added: contrib/1.1/lha/current/sources/lha-dir_length_bounds_check.patch =================================================================== --- contrib/1.1/lha/current/sources/lha-dir_length_bounds_check.patch 2004-09-22 20:03:57 UTC (rev 4834) +++ contrib/1.1/lha/current/sources/lha-dir_length_bounds_check.patch 2004-09-23 13:00:22 UTC (rev 4835) @@ -0,0 +1,20 @@ +--- lha-114i.orig/src/header.c 2002-07-19 17:23:58.000000000 +0900 ++++ lha-114i/src/header.c 2004-06-16 09:49:23.000000000 +0900 +@@ -648,8 +648,17 @@ + } + + if (dir_length) { ++ if ((dir_length + name_length) > sizeof(dirname)) { ++ fprintf(stderr, "Insufficient buffer size\n"); ++ exit(112); ++ } + strcat(dirname, hdr->name); +- strcpy(hdr->name, dirname); ++ ++ if ((dir_length + name_length) > sizeof(hdr->name)) { ++ fprintf(stderr, "Insufficient buffer size\n"); ++ exit(112); ++ } ++ strncpy(hdr->name, dirname, sizeof(hdr->name)); + name_length += dir_length; + } Modified: contrib/1.1/lha/current/specs/lha.spec =================================================================== --- contrib/1.1/lha/current/specs/lha.spec 2004-09-22 20:03:57 UTC (rev 4834) +++ contrib/1.1/lha/current/specs/lha.spec 2004-09-23 13:00:22 UTC (rev 4835) @@ -1,10 +1,15 @@ Summary: An archiving and compression utility for LHarc format archives. Name: lha Version: 1.14i -Release: 1ok +Release: 2jh License: freeware Group: contrib Source: http://www2m.biglobe.ne.jp/~dolphin/lha/prog/lha-114i.tar.gz +Patch: lha-114i-symlink.patch +Patch1: lha-114i-malloc.patch +Patch2: lha-114i-sec.patch +Patch3: lha-dir_length_bounds_check.patch +Patch4: lha-114i-sec2.patch BuildRoot: %{_tmppath}/%{name}-root %description @@ -17,6 +22,14 @@ %prep %setup -q -n lha-114i +%patch -p1 -b .symlink +%patch1 -p1 -b .malloc + +# security fixes +%patch2 -p1 -b .sec +%patch3 -p1 -b .sec +%patch4 -p1 -b .sec + %build make @@ -35,6 +48,11 @@ %{_bindir}/lha %changelog +* Thu Sep 23 2004 Jaakko Heinonen 1.14i-2jh +- security vulnerabilities CAN-2004-0769, CAN-2004-0771, CAN-2004-0694, CAN-2004 +-0745 +- fix security vulnerabilities, CAN-2004-0234, CAN-2004-0235 + * Mon Sep 13 2004 tsintegrate 1.14i-1ok - current (1.14i-1ok) integrated as 1.14i-1ok From svn at tinysofa.org Thu Sep 23 13:43:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 23:43:12 +1000 (EST) Subject: [tinysofa-svn] r4836 - in contrib/1.1/spamassassin/current: sources specs Message-ID: <20040923134312.1ED024E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 23:43:11 +1000 (Thu, 23 Sep 2004) New Revision: 4836 Added: contrib/1.1/spamassassin/current/sources/Mail-SpamAssassin-2.64.tar.bz2 Removed: contrib/1.1/spamassassin/current/sources/Mail-SpamAssassin-2.63.tar.gz Modified: contrib/1.1/spamassassin/current/specs/spamassassin.spec Log: - 2.64 Deleted: contrib/1.1/spamassassin/current/sources/Mail-SpamAssassin-2.63.tar.gz =================================================================== (Binary files differ) Added: contrib/1.1/spamassassin/current/sources/Mail-SpamAssassin-2.64.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/spamassassin/current/sources/Mail-SpamAssassin-2.64.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: contrib/1.1/spamassassin/current/specs/spamassassin.spec =================================================================== --- contrib/1.1/spamassassin/current/specs/spamassassin.spec 2004-09-23 13:00:22 UTC (rev 4835) +++ contrib/1.1/spamassassin/current/specs/spamassassin.spec 2004-09-23 13:43:11 UTC (rev 4836) @@ -3,10 +3,10 @@ Summary: a spam filter for email which can be invoked from mail delivery agents Name: spamassassin Group: contrib -Version: 2.63 -Release: 18gd +Version: 2.64 +Release: 1jh License: Artistic -Source: http:/spamassassin.org/released/%{real_name}-%{version}.tar.gz +Source: http:/spamassassin.org/released/%{real_name}-%{version}.tar.bz2 Source1: spamassassin.initd Source2: spamassassin.sysconfig Patch: spamassassin-confdir.patch From svn at tinysofa.org Thu Sep 23 13:52:40 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 23:52:40 +1000 (EST) Subject: [tinysofa-svn] r4837 - contrib/1.1/xorg-x11/current/specs Message-ID: <20040923135240.D7C144E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 23:52:40 +1000 (Thu, 23 Sep 2004) New Revision: 4837 Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec Log: - CAN-2004-0687-0688 Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec =================================================================== --- contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-23 13:43:11 UTC (rev 4836) +++ contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-23 13:52:40 UTC (rev 4837) @@ -544,6 +544,8 @@ Patch20006: XFree86-4.3.0-redhat-xlib-linux-fix-avoiding-substance-abuse-job.patch Patch20007: XFree86-4.3.0-redhat-xcursorgen-do-not-build-included-cursors.patch +Patch30000: http://freedesktop.org/~xorg/X11R6.8.1/patches/xorg-CAN-2004-0687-0688.patch + # EXPERIMENTAL patches (disabled except for development) ###################################################################### @@ -1151,6 +1153,8 @@ %patch20007 -p0 -b .redhat-xcursorgen-do-not-build-included-cursors %endif +# CAN-2004-0687-0688 +%patch30000 -p0 ###################################################################### ##### CREATE host.def ############################################## @@ -3273,6 +3277,9 @@ %clean_buildroot %changelog +* Thu Sep 23 2004 Jaakko Heinonen 6.7.0-11jh +- CAN-2004-0687-0688 + * Wed Sep 22 2004 Jaakko Heinonen 6.7.0-10jh - own %%{_x11icondir} - /etc/ld.so.conf.d/xorg-x11.conf creation From svn at tinysofa.org Thu Sep 23 13:59:19 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 23 Sep 2004 23:59:19 +1000 (EST) Subject: [tinysofa-svn] r4838 - contrib/1.1/xorg-x11/current/specs Message-ID: <20040923135919.DE11A4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-23 23:59:19 +1000 (Thu, 23 Sep 2004) New Revision: 4838 Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec Log: - update release Modified: contrib/1.1/xorg-x11/current/specs/xorg-x11.spec =================================================================== --- contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-23 13:52:40 UTC (rev 4837) +++ contrib/1.1/xorg-x11/current/specs/xorg-x11.spec 2004-09-23 13:59:19 UTC (rev 4838) @@ -24,7 +24,7 @@ # Use very future proofed version number, until we know what upstream version # will really be. Version: 6.7.0 -Release: 10jh +Release: 11jh #.%{cvs_release} %define build_maintainer_mode %( hostname -f |grep -q capslock.lan && echo 1 || echo 0) From svn at tinysofa.org Thu Sep 23 14:02:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 24 Sep 2004 00:02:08 +1000 (EST) Subject: [tinysofa-svn] r4840 - contrib/1.1 Message-ID: <20040923140208.C84D34E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-24 00:02:08 +1000 (Fri, 24 Sep 2004) New Revision: 4840 Added: contrib/1.1/kernel26/ Removed: contrib/1.1/kernel/ Log: - rename to kernel26 Copied: contrib/1.1/kernel26 (from rev 4839, contrib/1.1/kernel) From svn at tinysofa.org Thu Sep 23 16:12:02 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 24 Sep 2004 02:12:02 +1000 (EST) Subject: [tinysofa-svn] r4841 - contrib/1.1/xorg-x11/current/sources Message-ID: <20040923161202.C290D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-24 02:12:02 +1000 (Fri, 24 Sep 2004) New Revision: 4841 Added: contrib/1.1/xorg-x11/current/sources/xorg-CAN-2004-0687-0688.patch Log: - add xorg-CAN-2004-0687-0688.patch Added: contrib/1.1/xorg-x11/current/sources/xorg-CAN-2004-0687-0688.patch =================================================================== --- contrib/1.1/xorg-x11/current/sources/xorg-CAN-2004-0687-0688.patch 2004-09-23 14:02:08 UTC (rev 4840) +++ contrib/1.1/xorg-x11/current/sources/xorg-CAN-2004-0687-0688.patch 2004-09-23 16:12:02 UTC (rev 4841) @@ -0,0 +1,498 @@ +Index: xc/extras/Xpm/lib/Attrib.c +=================================================================== +RCS file: /cvs/OpenBSD/XF4/xc/extras/Xpm/lib/Attrib.c,v +retrieving revision 1.1.1.1 +diff -u -r1.1.1.1 Attrib.c +--- xc/extras/Xpm/lib/Attrib.c 15 Feb 2001 07:59:10 -0000 1.1.1.1 ++++ xc/extras/Xpm/lib/Attrib.c 31 Aug 2004 23:28:59 -0000 +@@ -35,7 +35,7 @@ + #include "XpmI.h" + + /* 3.2 backward compatibility code */ +-LFUNC(CreateOldColorTable, int, (XpmColor *ct, int ncolors, ++LFUNC(CreateOldColorTable, int, (XpmColor *ct, unsigned int ncolors, + XpmColor ***oldct)); + + LFUNC(FreeOldColorTable, void, (XpmColor **colorTable, int ncolors)); +@@ -46,11 +46,14 @@ + static int + CreateOldColorTable(ct, ncolors, oldct) + XpmColor *ct; +- int ncolors; ++ unsigned int ncolors; + XpmColor ***oldct; + { + XpmColor **colorTable, **color; + int a; ++ ++ if (ncolors >= SIZE_MAX / sizeof(XpmColor *)) ++ return XpmNoMemory; + + colorTable = (XpmColor **) XpmMalloc(ncolors * sizeof(XpmColor *)); + if (!colorTable) { +Index: xc/extras/Xpm/lib/CrDatFrI.c +=================================================================== +RCS file: /cvs/OpenBSD/XF4/xc/extras/Xpm/lib/CrDatFrI.c,v +retrieving revision 1.1.1.2 +diff -u -r1.1.1.2 CrDatFrI.c +--- xc/extras/Xpm/lib/CrDatFrI.c 19 Jan 2002 11:08:43 -0000 1.1.1.2 ++++ xc/extras/Xpm/lib/CrDatFrI.c 31 Aug 2004 23:28:59 -0000 +@@ -124,6 +124,8 @@ + */ + header_nlines = 1 + image->ncolors; + header_size = sizeof(char *) * header_nlines; ++ if (header_size >= SIZE_MAX / sizeof(char *)) ++ return (XpmNoMemory); + header = (char **) XpmCalloc(header_size, sizeof(char *)); + if (!header) + return (XpmNoMemory); +Index: xc/extras/Xpm/lib/WrFFrI.c +=================================================================== +RCS file: /cvs/OpenBSD/XF4/xc/extras/Xpm/lib/WrFFrI.c,v +retrieving revision 1.1.1.2 +diff -u -r1.1.1.2 WrFFrI.c +--- xc/extras/Xpm/lib/WrFFrI.c 19 Jan 2002 11:08:43 -0000 1.1.1.2 ++++ xc/extras/Xpm/lib/WrFFrI.c 31 Aug 2004 23:28:59 -0000 +@@ -248,6 +248,8 @@ + unsigned int x, y, h; + + h = height - 1; ++ if (cpp != 0 && width >= (SIZE_MAX - 3)/cpp) ++ return XpmNoMemory; + p = buf = (char *) XpmMalloc(width * cpp + 3); + if (!buf) + return (XpmNoMemory); +Index: xc/extras/Xpm/lib/XpmI.h +=================================================================== +RCS file: /cvs/OpenBSD/XF4/xc/extras/Xpm/lib/XpmI.h,v +retrieving revision 1.6 +diff -u -r1.6 XpmI.h +--- xc/extras/Xpm/lib/XpmI.h 13 Feb 2004 22:40:56 -0000 1.6 ++++ xc/extras/Xpm/lib/XpmI.h 31 Aug 2004 23:28:59 -0000 +@@ -86,6 +86,18 @@ + boundCheckingCalloc((long)(nelem),(long) (elsize)) + #endif + ++#if defined(SCO) || defined(__USLC__) ++#include /* For SIZE_MAX */ ++#endif ++#include ++#ifndef SIZE_MAX ++# ifdef ULONG_MAX ++# define SIZE_MAX ULONG_MAX ++# else ++# define SIZE_MAX UINT_MAX ++# endif ++#endif ++ + #define XPMMAXCMTLEN BUFSIZ + typedef struct { + unsigned int type; +@@ -187,9 +199,9 @@ + } *xpmHashAtom; + + typedef struct { +- int size; +- int limit; +- int used; ++ unsigned int size; ++ unsigned int limit; ++ unsigned int used; + xpmHashAtom *atomTable; + } xpmHashTable; + +Index: xc/extras/Xpm/lib/create.c +=================================================================== +RCS file: /cvs/OpenBSD/XF4/xc/extras/Xpm/lib/create.c,v +retrieving revision 1.3 +diff -u -r1.3 create.c +--- xc/extras/Xpm/lib/create.c 13 Feb 2004 22:40:56 -0000 1.3 ++++ xc/extras/Xpm/lib/create.c 31 Aug 2004 23:28:59 -0000 +@@ -1,3 +1,4 @@ ++/* $XdotOrg: pre-CVS proposed fix for CESA-2004-003 alanc 7/25/2004 $ */ + /* + * Copyright (C) 1989-95 GROUPE BULL + * +@@ -816,6 +817,9 @@ + + ErrorStatus = XpmSuccess; + ++ if (image->ncolors >= SIZE_MAX / sizeof(Pixel)) ++ return (XpmNoMemory); ++ + /* malloc pixels index tables */ + image_pixels = (Pixel *) XpmMalloc(sizeof(Pixel) * image->ncolors); + if (!image_pixels) +@@ -988,6 +992,8 @@ + return (XpmNoMemory); + + #if !defined(FOR_MSW) && !defined(AMIGA) ++ if (height != 0 && (*image_return)->bytes_per_line >= SIZE_MAX / height) ++ return XpmNoMemory; + /* now that bytes_per_line must have been set properly alloc data */ + (*image_return)->data = + (char *) XpmMalloc((*image_return)->bytes_per_line * height); +@@ -2055,6 +2061,9 @@ + xpmGetCmt(data, &colors_cmt); + + /* malloc pixels index tables */ ++ if (ncolors >= SIZE_MAX / sizeof(Pixel)) ++ return XpmNoMemory; ++ + image_pixels = (Pixel *) XpmMalloc(sizeof(Pixel) * ncolors); + if (!image_pixels) + RETURN(XpmNoMemory); +@@ -2309,7 +2318,8 @@ + } + obm = SelectObject(*dc, image->bitmap); + #endif +- ++ if (ncolors > 256) ++ return (XpmFileInvalid); + + bzero((char *)colidx, 256 * sizeof(short)); + for (a = 0; a < ncolors; a++) +@@ -2414,6 +2424,9 @@ + { + char *s; + char buf[BUFSIZ]; ++ ++ if (cpp >= sizeof(buf)) ++ return (XpmFileInvalid); + + buf[cpp] = '\0'; + if (USE_HASHTABLE) { +Index: xc/extras/Xpm/lib/data.c +=================================================================== +RCS file: /cvs/OpenBSD/XF4/xc/extras/Xpm/lib/data.c,v +retrieving revision 1.1.1.2 +diff -u -r1.1.1.2 data.c +--- xc/extras/Xpm/lib/data.c 19 Jan 2002 11:08:44 -0000 1.1.1.2 ++++ xc/extras/Xpm/lib/data.c 31 Aug 2004 23:28:59 -0000 +@@ -375,7 +375,7 @@ + { + if (!data->type) + *cmt = NULL; +- else if (data->CommentLength) { ++ else if (data->CommentLength != 0 && data->CommentLength < SIZE_MAX - 1) { + *cmt = (char *) XpmMalloc(data->CommentLength + 1); + strncpy(*cmt, data->Comment, data->CommentLength); + (*cmt)[data->CommentLength] = '\0'; +Index: xc/extras/Xpm/lib/hashtab.c +=================================================================== +RCS file: /cvs/OpenBSD/XF4/xc/extras/Xpm/lib/hashtab.c,v +retrieving revision 1.1.1.1 +diff -u -r1.1.1.1 hashtab.c +--- xc/extras/Xpm/lib/hashtab.c 15 Feb 2001 07:59:10 -0000 1.1.1.1 ++++ xc/extras/Xpm/lib/hashtab.c 31 Aug 2004 23:28:59 -0000 +@@ -135,7 +135,7 @@ + xpmHashTable *table; + { + xpmHashAtom *atomTable = table->atomTable; +- int size = table->size; ++ unsigned int size = table->size; + xpmHashAtom *t, *p; + int i; + int oldSize = size; +@@ -144,6 +144,8 @@ + HASH_TABLE_GROWS + table->size = size; + table->limit = size / 3; ++ if (size >= SIZE_MAX / sizeof(*atomTable)) ++ return (XpmNoMemory); + atomTable = (xpmHashAtom *) XpmMalloc(size * sizeof(*atomTable)); + if (!atomTable) + return (XpmNoMemory); +@@ -204,6 +206,8 @@ + table->size = INITIAL_HASH_SIZE; + table->limit = table->size / 3; + table->used = 0; ++ if (table->size >= SIZE_MAX / sizeof(*atomTable)) ++ return (XpmNoMemory); + atomTable = (xpmHashAtom *) XpmMalloc(table->size * sizeof(*atomTable)); + if (!atomTable) + return (XpmNoMemory); +Index: xc/extras/Xpm/lib/parse.c +=================================================================== +RCS file: /cvs/OpenBSD/XF4/xc/extras/Xpm/lib/parse.c,v +retrieving revision 1.1.1.2 +diff -u -r1.1.1.2 parse.c +--- xc/extras/Xpm/lib/parse.c 19 Jan 2002 11:08:44 -0000 1.1.1.2 ++++ xc/extras/Xpm/lib/parse.c 31 Aug 2004 23:28:59 -0000 +@@ -1,3 +1,4 @@ ++/* $XdotOrg: pre-CVS proposed fix for CESA-2004-003 alanc 7/25/2004 $ */ + /* + * Copyright (C) 1989-95 GROUPE BULL + * +@@ -44,6 +45,24 @@ + #include + #include + ++#ifdef HAS_STRLCAT ++# define STRLCAT(dst, src, dstsize) { \ ++ if (strlcat(dst, src, dstsize) >= (dstsize)) \ ++ return (XpmFileInvalid); } ++# define STRLCPY(dst, src, dstsize) { \ ++ if (strlcpy(dst, src, dstsize) >= (dstsize)) \ ++ return (XpmFileInvalid); } ++#else ++# define STRLCAT(dst, src, dstsize) { \ ++ if ((strlen(dst) + strlen(src)) < (dstsize)) \ ++ strcat(dst, src); \ ++ else return (XpmFileInvalid); } ++# define STRLCPY(dst, src, dstsize) { \ ++ if (strlen(src) < (dstsize)) \ ++ strcpy(dst, src); \ ++ else return (XpmFileInvalid); } ++#endif ++ + LFUNC(ParsePixels, int, (xpmData *data, unsigned int width, + unsigned int height, unsigned int ncolors, + unsigned int cpp, XpmColor *colorTable, +@@ -66,7 +85,7 @@ + unsigned int *extensions; + { + unsigned int l; +- char buf[BUFSIZ]; ++ char buf[BUFSIZ + 1]; + + if (!data->format) { /* XPM 2 or 3 */ + +@@ -175,10 +194,10 @@ + XpmColor **colorTablePtr; + xpmHashTable *hashtable; + { +- unsigned int key = 0, l, a, b; ++ unsigned int key = 0, l, a, b, len; + unsigned int curkey; /* current color key */ + unsigned int lastwaskey; /* key read */ +- char buf[BUFSIZ]; ++ char buf[BUFSIZ+1]; + char curbuf[BUFSIZ]; /* current buffer */ + char **sptr, *s; + XpmColor *color; +@@ -186,6 +205,8 @@ + char **defaults; + int ErrorStatus; + ++ if (ncolors >= SIZE_MAX / sizeof(XpmColor)) ++ return (XpmNoMemory); + colorTable = (XpmColor *) XpmCalloc(ncolors, sizeof(XpmColor)); + if (!colorTable) + return (XpmNoMemory); +@@ -197,6 +218,10 @@ + /* + * read pixel value + */ ++ if (cpp >= SIZE_MAX - 1) { ++ xpmFreeColorTable(colorTable, ncolors); ++ return (XpmNoMemory); ++ } + color->string = (char *) XpmMalloc(cpp + 1); + if (!color->string) { + xpmFreeColorTable(colorTable, ncolors); +@@ -234,13 +259,14 @@ + } + if (!lastwaskey && key < NKEYS) { /* open new key */ + if (curkey) { /* flush string */ +- s = (char *) XpmMalloc(strlen(curbuf) + 1); ++ len = strlen(curbuf) + 1; ++ s = (char *) XpmMalloc(len); + if (!s) { + xpmFreeColorTable(colorTable, ncolors); + return (XpmNoMemory); + } + defaults[curkey] = s; +- strcpy(s, curbuf); ++ memcpy(s, curbuf, len); + } + curkey = key + 1; /* set new key */ + *curbuf = '\0'; /* reset curbuf */ +@@ -251,9 +277,9 @@ + return (XpmFileInvalid); + } + if (!lastwaskey) +- strcat(curbuf, " "); /* append space */ ++ STRLCAT(curbuf, " ", sizeof(curbuf)); /* append space */ + buf[l] = '\0'; +- strcat(curbuf, buf);/* append buf */ ++ STRLCAT(curbuf, buf, sizeof(curbuf));/* append buf */ + lastwaskey = 0; + } + } +@@ -261,12 +287,13 @@ + xpmFreeColorTable(colorTable, ncolors); + return (XpmFileInvalid); + } +- s = defaults[curkey] = (char *) XpmMalloc(strlen(curbuf) + 1); ++ len = strlen(curbuf) + 1; ++ s = defaults[curkey] = (char *) XpmMalloc(len); + if (!s) { + xpmFreeColorTable(colorTable, ncolors); + return (XpmNoMemory); + } +- strcpy(s, curbuf); ++ memcpy(s, curbuf, len); + } + } else { /* XPM 1 */ + /* get to the beginning of the first string */ +@@ -279,6 +306,10 @@ + /* + * read pixel value + */ ++ if (cpp >= SIZE_MAX - 1) { ++ xpmFreeColorTable(colorTable, ncolors); ++ return (XpmNoMemory); ++ } + color->string = (char *) XpmMalloc(cpp + 1); + if (!color->string) { + xpmFreeColorTable(colorTable, ncolors); +@@ -307,16 +338,17 @@ + *curbuf = '\0'; /* init curbuf */ + while ((l = xpmNextWord(data, buf, BUFSIZ))) { + if (*curbuf != '\0') +- strcat(curbuf, " ");/* append space */ ++ STRLCAT(curbuf, " ", sizeof(curbuf));/* append space */ + buf[l] = '\0'; +- strcat(curbuf, buf); /* append buf */ ++ STRLCAT(curbuf, buf, sizeof(curbuf)); /* append buf */ + } +- s = (char *) XpmMalloc(strlen(curbuf) + 1); ++ len = strlen(curbuf) + 1; ++ s = (char *) XpmMalloc(len); + if (!s) { + xpmFreeColorTable(colorTable, ncolors); + return (XpmNoMemory); + } +- strcpy(s, curbuf); ++ memcpy(s, curbuf, len); + color->c_color = s; + *curbuf = '\0'; /* reset curbuf */ + if (a < ncolors - 1) +@@ -341,6 +373,9 @@ + unsigned int *iptr, *iptr2; + unsigned int a, x, y; + ++ if ((height > 0 && width >= SIZE_MAX / height) || ++ width * height >= SIZE_MAX / sizeof(unsigned int)) ++ return XpmNoMemory; + #ifndef FOR_MSW + iptr2 = (unsigned int *) XpmMalloc(sizeof(unsigned int) * width * height); + #else +@@ -364,6 +399,9 @@ + { + unsigned short colidx[256]; + ++ if (ncolors > 256) ++ return (XpmFileInvalid); ++ + bzero((char *)colidx, 256 * sizeof(short)); + for (a = 0; a < ncolors; a++) + colidx[(unsigned char)colorTable[a].string[0]] = a + 1; +@@ -441,6 +479,9 @@ + { + char *s; + char buf[BUFSIZ]; ++ ++ if (cpp >= sizeof(buf)) ++ return (XpmFileInvalid); + + buf[cpp] = '\0'; + if (USE_HASHTABLE) { +Index: xc/extras/Xpm/lib/scan.c +=================================================================== +RCS file: /cvs/OpenBSD/XF4/xc/extras/Xpm/lib/scan.c,v +retrieving revision 1.1.1.2 +diff -u -r1.1.1.2 scan.c +--- xc/extras/Xpm/lib/scan.c 19 Jan 2002 11:08:44 -0000 1.1.1.2 ++++ xc/extras/Xpm/lib/scan.c 31 Aug 2004 23:28:59 -0000 +@@ -107,7 +107,8 @@ + LFUNC(ScanTransparentColor, int, (XpmColor *color, unsigned int cpp, + XpmAttributes *attributes)); + +-LFUNC(ScanOtherColors, int, (Display *display, XpmColor *colors, int ncolors, ++LFUNC(ScanOtherColors, int, (Display *display, XpmColor *colors, ++ unsigned int ncolors, + Pixel *pixels, unsigned int mask, + unsigned int cpp, XpmAttributes *attributes)); + +@@ -232,11 +233,17 @@ + else + cpp = 0; + ++ if ((height > 0 && width >= SIZE_MAX / height) || ++ width * height >= SIZE_MAX / sizeof(unsigned int)) ++ RETURN(XpmNoMemory); + pmap.pixelindex = + (unsigned int *) XpmCalloc(width * height, sizeof(unsigned int)); + if (!pmap.pixelindex) + RETURN(XpmNoMemory); + ++ if (pmap.size >= SIZE_MAX / sizeof(Pixel)) ++ RETURN(XpmNoMemory); ++ + pmap.pixels = (Pixel *) XpmMalloc(sizeof(Pixel) * pmap.size); + if (!pmap.pixels) + RETURN(XpmNoMemory); +@@ -301,7 +308,8 @@ + * get rgb values and a string of char, and possibly a name for each + * color + */ +- ++ if (pmap.ncolors >= SIZE_MAX / sizeof(XpmColor)) ++ RETURN(XpmNoMemory); + colorTable = (XpmColor *) XpmCalloc(pmap.ncolors, sizeof(XpmColor)); + if (!colorTable) + RETURN(XpmNoMemory); +@@ -360,6 +368,8 @@ + + /* first get a character string */ + a = 0; ++ if (cpp >= SIZE_MAX - 1) ++ return (XpmNoMemory); + if (!(s = color->string = (char *) XpmMalloc(cpp + 1))) + return (XpmNoMemory); + *s++ = printable[c = a % MAXPRINTABLE]; +@@ -407,7 +417,7 @@ + ScanOtherColors(display, colors, ncolors, pixels, mask, cpp, attributes) + Display *display; + XpmColor *colors; +- int ncolors; ++ unsigned int ncolors; + Pixel *pixels; + unsigned int mask; + unsigned int cpp; +@@ -451,6 +461,8 @@ + } + + /* first get character strings and rgb values */ ++ if (ncolors >= SIZE_MAX / sizeof(XColor) || cpp >= SIZE_MAX - 1) ++ return (XpmNoMemory); + xcolors = (XColor *) XpmMalloc(sizeof(XColor) * ncolors); + if (!xcolors) + return (XpmNoMemory); +Index: xc/lib/Xpm/Imakefile +=================================================================== +RCS file: /cvs/OpenBSD/XF4/xc/lib/Xpm/Imakefile,v +retrieving revision 1.1.1.1 +diff -u -r1.1.1.1 Imakefile +--- xc/lib/Xpm/Imakefile 15 Feb 2001 07:56:01 -0000 1.1.1.1 ++++ xc/lib/Xpm/Imakefile 31 Aug 2004 23:28:59 -0000 +@@ -42,11 +42,16 @@ + SPRINTFDEF = -DVOID_SPRINTF + #endif + ++#if HasStrlcat ++STRLCATDEF = -DHAS_STRLCAT ++#endif ++ + #if defined(Win32Architecture) + ZPIPEDEF = -DNO_ZPIPE + #endif + +-DEFINES = $(STRDUPDEF) $(STRCASECMPDEF) $(SPRINTFDEF) $(ZPIPEDEF) $(ZFILEDEF) ++DEFINES = $(STRDUPDEF) $(STRCASECMPDEF) $(SPRINTFDEF) $(STRLCATDEF) \ ++ $(ZPIPEDEF) $(ZFILEDEF) + + HEADERS = xpm.h + From svn at tinysofa.org Thu Sep 23 22:41:57 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Fri, 24 Sep 2004 08:41:57 +1000 (EST) Subject: [tinysofa-svn] r4842 - in contrib/1.1/spamassassin/current: sources specs Message-ID: <20040923224157.933A44E872E@minbar.tinysofa.org> Author: gda Date: 2004-09-24 08:41:57 +1000 (Fri, 24 Sep 2004) New Revision: 4842 Added: contrib/1.1/spamassassin/current/sources/Mail-SpamAssassin-3.0.0.tar.bz2 contrib/1.1/spamassassin/current/sources/spamassassin-confdir-3.0.0.patch Removed: contrib/1.1/spamassassin/current/sources/Mail-SpamAssassin-2.64.tar.bz2 contrib/1.1/spamassassin/current/sources/spamassassin-confdir.patch Modified: contrib/1.1/spamassassin/current/sources/spamassassin.sysconfig contrib/1.1/spamassassin/current/specs/spamassassin.spec Log: new upstream Deleted: contrib/1.1/spamassassin/current/sources/Mail-SpamAssassin-2.64.tar.bz2 =================================================================== (Binary files differ) Added: contrib/1.1/spamassassin/current/sources/Mail-SpamAssassin-3.0.0.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/spamassassin/current/sources/Mail-SpamAssassin-3.0.0.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/spamassassin/current/sources/spamassassin-confdir-3.0.0.patch =================================================================== --- contrib/1.1/spamassassin/current/sources/spamassassin-confdir-3.0.0.patch 2004-09-23 16:12:02 UTC (rev 4841) +++ contrib/1.1/spamassassin/current/sources/spamassassin-confdir-3.0.0.patch 2004-09-23 22:41:57 UTC (rev 4842) @@ -0,0 +1,237 @@ +diff -Nur Mail-SpamAssassin-3.0.0/Makefile.PL Mail-SpamAssassin-3.0.0.ts/Makefile.PL +--- Mail-SpamAssassin-3.0.0/Makefile.PL 2004-08-27 18:37:35.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/Makefile.PL 2004-09-23 23:22:24.586514424 +0200 +@@ -702,7 +702,7 @@ + # CONFDIR + # LOCALRULESDIR + # If none of those is specified, it will chose an FHS-compliant dir, +-# namely *SYSCONFDIR/mail/spamassassin. ++# namely *SYSCONFDIR/spamassassin. + sub _set_macro_CONFDIR { + my($repository) = (@_); + +@@ -722,7 +722,7 @@ + + # Set the default value based on the corresponding SYSCONFDIR + set_macro($macro, +- macro_ref("${repository}SYSCONFDIR") . '/mail/spamassassin' ++ macro_ref("${repository}SYSCONFDIR") . '/spamassassin' + ); + } + +diff -Nur Mail-SpamAssassin-3.0.0/README Mail-SpamAssassin-3.0.0.ts/README +--- Mail-SpamAssassin-3.0.0/README 2004-09-09 20:29:20.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/README 2004-09-23 23:24:25.768092024 +0200 +@@ -81,7 +81,7 @@ + Distributed configuration files, with all defaults. Do not modify + these, as they are overwritten when you upgrade. + +- - /etc/mail/spamassassin/*.cf: ++ - /etc/spamassassin/*.cf: + + Site config files, for system admins to create, modify, and + add local rules and scores to. Modifications here will be +@@ -92,14 +92,14 @@ + Distributed default user preferences. Do not modify this, as it is + overwritten when you upgrade. + +- - /etc/mail/spamassassin/user_prefs.template: ++ - /etc/spamassassin/user_prefs.template: + + Default user preferences, for system admins to create, modify, and + set defaults for users' preferences files. Takes precedence over + the above prefs file, if it exists. + + Do not put system-wide settings in here; put them in a file in the +- "/etc/mail/spamassassin" directory ending in ".cf". This file is ++ "/etc/spamassassin" directory ending in ".cf". This file is + just a template, which will be copied to a user's home directory + for them to change. + +@@ -149,10 +149,10 @@ + + __prefix__ __def_rules_dir__ __local_rules_dir__ + ------------------------------------------------------------------------- +- /usr /usr/share/spamassassin /etc/mail/spamassassin +- /usr/local /usr/local/share/spamassassin /etc/mail/spamassassin +- /opt/$DIR /opt/$DIR/share/spamassassin /etc/opt/mail/spamassassin +- $DIR $DIR/share/spamassassin $DIR/etc/mail/spamassassin ++ /usr /usr/share/spamassassin /etc/spamassassin ++ /usr/local /usr/local/share/spamassassin /etc/spamassassin ++ /opt/$DIR /opt/$DIR/share/spamassassin /etc/opt/spamassassin ++ $DIR $DIR/share/spamassassin $DIR/etc/spamassassin + + The files themselves are then looked for in these paths: + +@@ -164,20 +164,20 @@ + + - Site Configuration Files + '__local_rules_dir__' +- '__prefix__/etc/mail/spamassassin' ++ '__prefix__/etc/spamassassin' + '__prefix__/etc/spamassassin' + '/usr/local/etc/spamassassin' + '/usr/pkg/etc/spamassassin' + '/usr/etc/spamassassin' +- '/etc/mail/spamassassin' ++ '/etc/spamassassin' + '/etc/spamassassin' + + - Default User Preferences File + '__local_rules_dir__/user_prefs.template' +- '__prefix__/etc/mail/spamassassin/user_prefs.template' ++ '__prefix__/etc/spamassassin/user_prefs.template' + '__prefix__/share/spamassassin/user_prefs.template' + '/etc/spamassassin/user_prefs.template' +- '/etc/mail/spamassassin/user_prefs.template' ++ '/etc/spamassassin/user_prefs.template' + '/usr/local/share/spamassassin/user_prefs.template' + '/usr/share/spamassassin/user_prefs.template' + +diff -Nur Mail-SpamAssassin-3.0.0/UPGRADE Mail-SpamAssassin-3.0.0.ts/UPGRADE +--- Mail-SpamAssassin-3.0.0/UPGRADE 2004-09-04 06:19:25.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/UPGRADE 2004-09-23 23:24:52.875971000 +0200 +@@ -70,7 +70,7 @@ + - If you are using a UNIX machine with all database files on local disks, + and no sharing of those databases across NFS filesystems, you can use a + more efficient, but non-NFS-safe, locking mechanism. Do this by adding +- the line "lock_method flock" to the /etc/mail/spamassassin/local.cf ++ the line "lock_method flock" to the /etc/spamassassin/local.cf + file. This is strongly recommended if you're not using NFS, as it is + much faster than the NFS-safe locker. + +diff -Nur Mail-SpamAssassin-3.0.0/USAGE Mail-SpamAssassin-3.0.0.ts/USAGE +--- Mail-SpamAssassin-3.0.0/USAGE 2004-08-27 18:37:43.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/USAGE 2004-09-23 23:25:12.907925680 +0200 +@@ -115,7 +115,7 @@ + CPU-intensive task before they can send mail to you, so we give that + some bonus points. However, it requires that you list what addresses + you expect to receive mail from, by adding 'hashcash_accept' lines to +- your ~/.spamassassin/user_prefs or /etc/mail/spamassassin/local.cf ++ your ~/.spamassassin/user_prefs or /etc/spamassassin/local.cf + files. See the Mail::SpamAssassin::Conf manual page for details on + how to specify these. + +@@ -127,14 +127,14 @@ + + + - You can create your own system-wide rules files in +- /etc/mail/spamassassin; their filenames should end in ".cf". Multiple ++ /etc/spamassassin; their filenames should end in ".cf". Multiple + files will be read, and SpamAssassin will not overwrite these files + when installing a new version. + + + - You should not modify the files in /usr/share/spamassassin; these + will be overwritten when you upgrade. Any changes you make in +- files in the /etc/mail/spamassassin directory, however, will ++ files in the /etc/spamassassin directory, however, will + override these files. + + +diff -Nur Mail-SpamAssassin-3.0.0/ldap/README Mail-SpamAssassin-3.0.0.ts/ldap/README +--- Mail-SpamAssassin-3.0.0/ldap/README 2004-09-14 01:34:02.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/ldap/README 2004-09-23 23:42:01.978523632 +0200 +@@ -13,7 +13,7 @@ + database or LDAP server. + + SpamAssassin will check the global configuration file (ie. any file matching +-/etc/mail/spamassassin/*.cf) for the following settings: ++/etc/spamassassin/*.cf) for the following settings: + + user_scores_dsn ldap://host:port/dc=basedn,dc=de?attr?scope?uid=__USERNAME__ + user_scores_ldap_username bind dn +diff -Nur Mail-SpamAssassin-3.0.0/lib/Mail/SpamAssassin/Plugin/Test.pm Mail-SpamAssassin-3.0.0.ts/lib/Mail/SpamAssassin/Plugin/Test.pm +--- Mail-SpamAssassin-3.0.0/lib/Mail/SpamAssassin/Plugin/Test.pm 2004-08-27 18:37:33.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/lib/Mail/SpamAssassin/Plugin/Test.pm 2004-09-23 23:41:44.294212056 +0200 +@@ -1,6 +1,6 @@ + =head1 + +-To try this out, write these lines to /etc/mail/spamassassin/plugintest.cf: ++To try this out, write these lines to /etc/spamassassin/plugintest.cf: + + loadplugin Mail::SpamAssassin::Plugin::Test + header MY_TEST_PLUGIN eval:check_test_plugin() +diff -Nur Mail-SpamAssassin-3.0.0/rules/30_text_fr.cf Mail-SpamAssassin-3.0.0.ts/rules/30_text_fr.cf +--- Mail-SpamAssassin-3.0.0/rules/30_text_fr.cf 2004-09-09 20:29:20.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/rules/30_text_fr.cf 2004-09-23 23:40:26.038108792 +0200 +@@ -4,7 +4,7 @@ + # Latest revision: 2003/11/14 + # + # Please don't modify this file as your changes will be overwritten with +-# the next update. Use /etc/mail/spamassassin/local.cf instead. ++# the next update. Use /etc/spamassassin/local.cf instead. + # See 'perldoc Mail::SpamAssassin::Conf' for details. + # + # <@LICENSE> +diff -Nur Mail-SpamAssassin-3.0.0/spamd/README Mail-SpamAssassin-3.0.0.ts/spamd/README +--- Mail-SpamAssassin-3.0.0/spamd/README 2004-08-27 18:37:43.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/spamd/README 2004-09-23 23:34:27.331640464 +0200 +@@ -105,7 +105,7 @@ + If you plan to use Bayesian classification (the BAYES rules) with spamd, + you will need to either + +- 1. modify /etc/mail/spamassassin/local.cf to use a shared database of ++ 1. modify /etc/spamassassin/local.cf to use a shared database of + tokens, by setting the 'bayes_path' setting to a path all users can read + and write to. You will also need to set the 'bayes_file_mode' setting + to 0666 so that created files are shared, too. +diff -Nur Mail-SpamAssassin-3.0.0/spamd/README.vpopmail Mail-SpamAssassin-3.0.0.ts/spamd/README.vpopmail +--- Mail-SpamAssassin-3.0.0/spamd/README.vpopmail 2004-08-27 18:37:43.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/spamd/README.vpopmail 2004-09-23 23:40:09.403637616 +0200 +@@ -43,7 +43,7 @@ + /home/vpopmail/domains/somedomain.net/4/userid/.spamassassin/user_prefs + + 5. One gotcha - cannot have personal AWL dbs - only a sitewide AWL will work. +-This is specified in your /etc/mail/spamassassin/local.cf file. Perhaps a ++This is specified in your /etc/spamassassin/local.cf file. Perhaps a + future enhancement would be to add the capability to have personal AWL db. + + 6. Of course vpopmail must have the seekable patch installed (see +diff -Nur Mail-SpamAssassin-3.0.0/spamd/suse-ancient-rc-script.sh Mail-SpamAssassin-3.0.0.ts/spamd/suse-ancient-rc-script.sh +--- Mail-SpamAssassin-3.0.0/spamd/suse-ancient-rc-script.sh 2004-08-27 18:37:43.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/spamd/suse-ancient-rc-script.sh 2004-09-23 23:32:38.219228072 +0200 +@@ -285,7 +285,7 @@ + ## Optional: Probe for the necessity of a reload, + ## give out the argument which is required for a reload. + +- test /etc/mail/spamassassin/local.cf -nt $SPAMD_PID && echo force-reload ++ test /etc/spamassassin/local.cf -nt $SPAMD_PID && echo force-reload + ;; + *) + echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}" +diff -Nur Mail-SpamAssassin-3.0.0/sql/README Mail-SpamAssassin-3.0.0.ts/sql/README +--- Mail-SpamAssassin-3.0.0/sql/README 2004-09-04 06:19:26.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/sql/README 2004-09-23 23:25:52.373925936 +0200 +@@ -15,7 +15,7 @@ + required_score, and auto_report_threshold. + + SpamAssassin will check the global configuration file (ie. any file matching +-/etc/mail/spamassassin/*.cf) for the following settings: ++/etc/spamassassin/*.cf) for the following settings: + + user_scores_dsn DBI:driver:connection + user_scores_sql_username dbusername +diff -Nur Mail-SpamAssassin-3.0.0/sql/README.awl Mail-SpamAssassin-3.0.0.ts/sql/README.awl +--- Mail-SpamAssassin-3.0.0/sql/README.awl 2004-08-27 18:37:37.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/sql/README.awl 2004-09-23 23:27:35.582235888 +0200 +@@ -15,7 +15,7 @@ + auto_whitelist_factory Mail::SpamAssassin::SQLBasedAddrList + + SpamAssassin will check the global configuration file (ie. any file +-matching /etc/mail/spamassassin/*.cf) for the following settings: ++matching /etc/spamassassin/*.cf) for the following settings: + + user_awl_dsn DBI:driver:database:hostname[:port] + user_awl_sql_username dbusername +diff -Nur Mail-SpamAssassin-3.0.0/t/data/testplugin.pm Mail-SpamAssassin-3.0.0.ts/t/data/testplugin.pm +--- Mail-SpamAssassin-3.0.0/t/data/testplugin.pm 2004-08-27 18:37:41.000000000 +0200 ++++ Mail-SpamAssassin-3.0.0.ts/t/data/testplugin.pm 2004-09-23 23:39:49.253700872 +0200 +@@ -1,6 +1,6 @@ + =head1 + +-To try this out, write these lines to /etc/mail/spamassassin/plugintest.cf: ++To try this out, write these lines to /etc/spamassassin/plugintest.cf: + + loadplugin myTestPlugin + header MY_TEST_PLUGIN eval:check_test_plugin() Deleted: contrib/1.1/spamassassin/current/sources/spamassassin-confdir.patch =================================================================== --- contrib/1.1/spamassassin/current/sources/spamassassin-confdir.patch 2004-09-23 16:12:02 UTC (rev 4841) +++ contrib/1.1/spamassassin/current/sources/spamassassin-confdir.patch 2004-09-23 22:41:57 UTC (rev 4842) @@ -1,302 +0,0 @@ -diff -urN Mail-SpamAssassin-2.60/Makefile.PL Mail-SpamAssassin-2.60.tsl/Makefile.PL ---- Mail-SpamAssassin-2.60/Makefile.PL 2003-09-16 03:05:24.000000000 +0200 -+++ Mail-SpamAssassin-2.60.tsl/Makefile.PL 2003-10-29 15:17:42.000000000 +0100 -@@ -633,7 +633,7 @@ - # CONFDIR - # LOCALRULESDIR - # If none of those is specified, it will chose an FHS-compliant dir, --# namely *SYSCONFDIR/mail/spamassassin. -+# namely *SYSCONFDIR/spamassassin. - sub _set_macro_CONFDIR { - my($repository) = (@_); - -@@ -653,7 +653,7 @@ - - # Set the default value based on the corresponding SYSCONFDIR - set_macro($macro, -- macro_ref("${repository}SYSCONFDIR") . '/mail/spamassassin' -+ macro_ref("${repository}SYSCONFDIR") . '/spamassassin' - ); - } - -diff -urN Mail-SpamAssassin-2.60/PACKAGING Mail-SpamAssassin-2.60.tsl/PACKAGING ---- Mail-SpamAssassin-2.60/PACKAGING 2003-09-14 03:05:24.000000000 +0200 -+++ Mail-SpamAssassin-2.60.tsl/PACKAGING 2003-10-29 14:52:46.000000000 +0100 -@@ -88,7 +88,7 @@ - Samples: - This will install the spamassassin apps in /foo/bin, the libs in - /foo/lib/perl5, the shared stuff in /foo/share/spamassassin and make -- SpamAssassin look for config files in /foo/etc/mail/spamassassin: -+ SpamAssassin look for config files in /foo/etc/spamassassin: - perl Makefile.PL PREFIX=/foo - - LIB: -@@ -147,7 +147,7 @@ - perl Makefile.PL PREFIX=/usr/local SYSCONFDIR=/usr/local/etc - - CONFDIR (LOCALRULESDIR): -- SpamAssassin looks for its config files in SYSCONFDIR/mail/spamassassin. -+ SpamAssassin looks for its config files in SYSCONFDIR/spamassassin. - (There is also a sample local.cf created if such a file doesn't exist yet.) - Some people didn't like this path for various reasons so the full path to - the config files can be changed here (this more or less makes SYSCONFDIR -diff -urN Mail-SpamAssassin-2.60/README Mail-SpamAssassin-2.60.tsl/README ---- Mail-SpamAssassin-2.60/README 2003-09-13 03:05:21.000000000 +0200 -+++ Mail-SpamAssassin-2.60.tsl/README 2003-10-29 14:52:31.000000000 +0100 -@@ -110,7 +110,7 @@ - Distributed configuration files, with all defaults. Do not modify - these, as they are overwritten when you upgrade. - -- - /etc/mail/spamassassin/*.cf: -+ - /etc/spamassassin/*.cf: - - Site config files, for system admins to create, modify, and - add local rules and scores to. Modifications here will be -@@ -121,14 +121,14 @@ - Distributed default user preferences. Do not modify this, as it is - overwritten when you upgrade. - -- - /etc/mail/spamassassin/user_prefs.template: -+ - /etc/spamassassin/user_prefs.template: - - Default user preferences, for system admins to create, modify, and - set defaults for users' preferences files. Takes precedence over - the above prefs file, if it exists. - - Do not put system-wide settings in here; put them in the -- /etc/mail/spamassassin directory. This file is just a template, -+ /etc/spamassassin directory. This file is just a template, - which will be copied to a user's home directory for them to - change. - -@@ -176,20 +176,18 @@ - - - Site Configuration Files - '__local_rules_dir__' -- '__prefix__/etc/mail/spamassassin' - '__prefix__/etc/spamassassin' - '/usr/local/etc/spamassassin' - '/usr/pkg/etc/spamassassin' - '/usr/etc/spamassassin' -- '/etc/mail/spamassassin' - '/etc/spamassassin' - - - Default User Preferences File - '__local_rules_dir__/user_prefs.template' -- '__prefix__/etc/mail/spamassassin/user_prefs.template' -+ '__prefix__/etc/spamassassin/user_prefs.template' - '__prefix__/share/spamassassin/user_prefs.template' - '/etc/spamassassin/user_prefs.template' -- '/etc/mail/spamassassin/user_prefs.template' -+ '/etc/spamassassin/user_prefs.template' - '/usr/local/share/spamassassin/user_prefs.template' - '/usr/share/spamassassin/user_prefs.template' - -diff -urN Mail-SpamAssassin-2.60/USAGE Mail-SpamAssassin-2.60.tsl/USAGE ---- Mail-SpamAssassin-2.60/USAGE 2003-06-13 22:17:31.000000000 +0200 -+++ Mail-SpamAssassin-2.60.tsl/USAGE 2003-10-29 14:53:00.000000000 +0100 -@@ -141,14 +141,14 @@ - - - - You can create your own system-wide rules files in -- /etc/mail/spamassassin; their filenames should end in ".cf". Multiple -+ /etc/spamassassin; their filenames should end in ".cf". Multiple - files will be read, and SpamAssassin will not overwrite these files - when installing a new version. - - - - You should not modify the files in /usr/share/spamassassin; these - will be overwritten when you upgrade. Any changes you make in -- files in the /etc/mail/spamassassin directory, however, will -+ files in the /etc/spamassassin directory, however, will - override these files. - - -diff -urN Mail-SpamAssassin-2.60/lib/Mail/SpamAssassin/Conf.pm Mail-SpamAssassin-2.60.tsl/lib/Mail/SpamAssassin/Conf.pm ---- Mail-SpamAssassin-2.60/lib/Mail/SpamAssassin/Conf.pm 2003-09-22 03:05:50.000000000 +0200 -+++ Mail-SpamAssassin-2.60.tsl/lib/Mail/SpamAssassin/Conf.pm 2003-10-29 14:53:17.000000000 +0100 -@@ -21,7 +21,7 @@ - =head1 DESCRIPTION - - SpamAssassin is configured using some traditional UNIX-style configuration --files, loaded from the /usr/share/spamassassin and /etc/mail/spamassassin -+files, loaded from the /usr/share/spamassassin and /etc/spamassassin - directories. - - The C<#> character starts a comment, which continues until end of line. -@@ -1850,7 +1850,7 @@ - - These settings differ from the ones above, in that they are considered - 'privileged'. Only users running C from their procmailrc's or --forward files, or sysadmins editing a file in C, can -+forward files, or sysadmins editing a file in C, can - use them. C users cannot use them in their C files, for - security and efficiency reasons, unless allow_user_rules is enabled (and - then, they may only add rules from below). -diff -urN Mail-SpamAssassin-2.60/lib/Mail/SpamAssassin.pm Mail-SpamAssassin-2.60.tsl/lib/Mail/SpamAssassin.pm ---- Mail-SpamAssassin-2.60/lib/Mail/SpamAssassin.pm 2003-09-23 03:05:26.000000000 +0200 -+++ Mail-SpamAssassin-2.60.tsl/lib/Mail/SpamAssassin.pm 2003-10-29 14:54:20.000000000 +0100 -@@ -118,24 +118,21 @@ - '/usr/share/spamassassin', - ); - --# first 3 are BSDish, latter 2 Linuxish -+# first 2 are BSDish, lattest Linuxish - @site_rules_path = ( - '__local_rules_dir__', -- '__prefix__/etc/mail/spamassassin', - '__prefix__/etc/spamassassin', - '/usr/local/etc/spamassassin', - '/usr/pkg/etc/spamassassin', - '/usr/etc/spamassassin', -- '/etc/mail/spamassassin', - '/etc/spamassassin', - ); - - @default_prefs_path = ( - '__local_rules_dir__/user_prefs.template', -- '__prefix__/etc/mail/spamassassin/user_prefs.template', -+ '__prefix__/etc/spamassassin/user_prefs.template', - '__prefix__/share/spamassassin/user_prefs.template', -- '/etc/spamassassin/user_prefs.template', -- '/etc/mail/spamassassin/user_prefs.template', -+ '/etc/spamassassin/user_prefs.template', - '/usr/local/share/spamassassin/user_prefs.template', - '/usr/share/spamassassin/user_prefs.template', - ); -diff -urN Mail-SpamAssassin-2.60/rules/user_prefs.template Mail-SpamAssassin-2.60.tsl/rules/user_prefs.template ---- Mail-SpamAssassin-2.60/rules/user_prefs.template 2003-06-13 22:17:32.000000000 +0200 -+++ Mail-SpamAssassin-2.60.tsl/rules/user_prefs.template 2003-10-29 14:54:31.000000000 +0100 -@@ -5,7 +5,7 @@ - #* directory. At runtime, if a user has no preferences in their home directory - #* already, it will be copied for them, allowing them to perform personalised - #* customisation. If you want to make changes to the site-wide defaults, --#* create a file in /etc/spamassassin or /etc/mail/spamassassin instead. -+#* create a file in /etc/spamassassin or /etc/spamassassin instead. - ########################################################################### - - # How many hits before a mail is considered spam. -diff -urN Mail-SpamAssassin-2.60/sa-learn.raw Mail-SpamAssassin-2.60.tsl/sa-learn.raw ---- Mail-SpamAssassin-2.60/sa-learn.raw 2003-09-16 03:05:24.000000000 +0200 -+++ Mail-SpamAssassin-2.60.tsl/sa-learn.raw 2003-10-29 14:54:52.000000000 +0100 -@@ -78,7 +78,7 @@ - --import Upgrade data from an earlier database version - -C path, --configpath=path, --config-file=path Path to standard configuration dir - -p prefs, --prefspath=file, --prefs-file=file Set user preferences file -- --siteconfigpath=path Path for site configs (def: /etc/mail/spamassassin) -+ --siteconfigpath=path Path for site configs (def: /etc/spamassassin) - -D, --debug-level Print debugging messages - -V, --version Print version - -h, --help Print usage message -@@ -360,7 +360,7 @@ - =item B<--siteconfigpath>=I - - Use the specified path for locating site-specific configuration files. Ignore --the default directories (usually C or similar). -+the default directories (usually C or similar). - - =item B<-p> I, B<--prefspath>=I, B<--prefs-file>=I - -diff -urN Mail-SpamAssassin-2.60/spamassassin.raw Mail-SpamAssassin-2.60.tsl/spamassassin.raw ---- Mail-SpamAssassin-2.60/spamassassin.raw 2003-09-17 03:05:22.000000000 +0200 -+++ Mail-SpamAssassin-2.60.tsl/spamassassin.raw 2003-10-29 14:56:21.000000000 +0100 -@@ -324,7 +324,7 @@ - -d, --remove-markup Remove spam reports from a message - -C path, --configpath=path, --config-file=path Path to standard configuration dir - -p prefs, --prefspath=file, --prefs-file=file Set user preferences file -- --siteconfigpath=path Path for site configs (def: /etc/mail/spamassassin) -+ --siteconfigpath=path Path for site configs (def: /etc/spamassassin) - -x, --nocreate-prefs Don't create user preferences file - -e, --exit-code Exit with a non-zero exit code if the - tested message was spam -@@ -508,7 +508,7 @@ - =item B<--siteconfigpath>=I - - Use the specified path for locating site-specific configuration files. Ignore --the default directories (usually C or similar). -+the default directories (usually C or similar). - - =item B<-p> I, B<--prefspath>=I, B<--prefs-file>=I - -@@ -564,12 +564,10 @@ - Site-specific configuration data is used to override any values which had - already been set. This is loaded from the first existing directory in: - F<@@LOCAL_RULES_DIR@@>; --F<@@PREFIX@@/etc/mail/spamassassin>; - F<@@PREFIX@@/etc/spamassassin>; - F; - F; - F; --F; - F . - - Spamassassin will read *.cf in these directories, in alphanumeric order within -@@ -583,10 +581,9 @@ - create this file if it does not exist, using F as a - template. This file will be looked for in: - F<@@LOCAL_RULES_DIR@@>; --F<@@PREFIX@@/etc/mail/spamassassin>; -+F<@@PREFIX@@/etc/spamassassin>; - F<@@PREFIX@@/share/spamassassin>; - F; --F; - F; - F. - -diff -urN Mail-SpamAssassin-2.60/spamd/README.spamd Mail-SpamAssassin-2.60.tsl/spamd/README.spamd ---- Mail-SpamAssassin-2.60/spamd/README.spamd 2003-08-21 02:52:01.000000000 +0200 -+++ Mail-SpamAssassin-2.60.tsl/spamd/README.spamd 2003-10-29 14:57:11.000000000 +0100 -@@ -91,7 +91,7 @@ - If you plan to use Bayesian classification (the BAYES rules) with spamd, - you will need to either - -- 1. modify /etc/mail/spamassassin/local.cf to use a shared database of -+ 1. modify /etc/spamassassin/local.cf to use a shared database of - tokens, by setting the 'bayes_path' setting to a path all users can read - and write to. You will also need to set the 'bayes_file_mode' setting - to 0666 so that created files are shared, too. -diff -urN Mail-SpamAssassin-2.60/spamd/README.spamd-vpopmail Mail-SpamAssassin-2.60.tsl/spamd/README.spamd-vpopmail ---- Mail-SpamAssassin-2.60/spamd/README.spamd-vpopmail 2002-04-06 21:28:31.000000000 +0200 -+++ Mail-SpamAssassin-2.60.tsl/spamd/README.spamd-vpopmail 2003-10-29 14:57:27.000000000 +0100 -@@ -43,7 +43,7 @@ - /home/vpopmail/domains/somedomain.net/4/userid/.spamassassin/user_prefs - - 5. One gotcha - cannot have personal AWL dbs - only a sitewide AWL will work. --This is specified in your /etc/mail/spamassassin/local.cf file. Then add the -+This is specified in your /etc/spamassassin/local.cf file. Then add the - "-a" switch to spamd. Perhaps a future enhancement would be to add the - capability to have personal AWL db. - -diff -urN Mail-SpamAssassin-2.60/spamd/spamd.raw Mail-SpamAssassin-2.60.tsl/spamd/spamd.raw ---- Mail-SpamAssassin-2.60/spamd/spamd.raw 2003-09-11 03:05:22.000000000 +0200 -+++ Mail-SpamAssassin-2.60.tsl/spamd/spamd.raw 2003-10-29 14:56:54.000000000 +0100 -@@ -1341,7 +1341,7 @@ - -a, --auto-whitelist, --whitelist Use auto-whitelists - -c, --create-prefs Create user preferences files - -C path, --configpath=path Path for default config files -- --siteconfigpath=path Path for site configs (def: /etc/mail/spamassassin) -+ --siteconfigpath=path Path for site configs (def: /etc/spamassassin) - -d, --daemonize Daemonize - -h, --help Print usage message. - -i ipaddr, --listen-ip=ipaddr,... Listen on the IP ipaddr (default: 127.0.0.1) -@@ -1421,7 +1421,7 @@ - =item B<--siteconfigpath>=I - - Use the specified path for locating site-specific configuration files. Ignore --the default directories (usually C or similar). -+the default directories (usually C or similar). - - =item B<-d>, B<--daemonize> - -diff -urN Mail-SpamAssassin-2.60/sql/README Mail-SpamAssassin-2.60.tsl/sql/README ---- Mail-SpamAssassin-2.60/sql/README 2003-02-20 13:23:24.000000000 +0100 -+++ Mail-SpamAssassin-2.60.tsl/sql/README 2003-10-29 14:57:40.000000000 +0100 -@@ -13,7 +13,7 @@ - RDBMS system. - - SpamAssassin will check the global configuration file (ie. any file matching --/etc/mail/spamassassin/*.cf) for the following settings: -+/etc/spamassassin/*.cf) for the following settings: - - user_scores_dsn DBI:driver:database:hostname[:port] - user_scores_sql_username dbusername Modified: contrib/1.1/spamassassin/current/sources/spamassassin.sysconfig =================================================================== --- contrib/1.1/spamassassin/current/sources/spamassassin.sysconfig 2004-09-23 16:12:02 UTC (rev 4841) +++ contrib/1.1/spamassassin/current/sources/spamassassin.sysconfig 2004-09-23 22:41:57 UTC (rev 4842) @@ -1,3 +1,3 @@ # spamd options. -SPAMDOPTIONS="-d -c -a -m5 -H" +SPAMDOPTIONS="-d -c -m5 -H" Modified: contrib/1.1/spamassassin/current/specs/spamassassin.spec =================================================================== --- contrib/1.1/spamassassin/current/specs/spamassassin.spec 2004-09-23 16:12:02 UTC (rev 4841) +++ contrib/1.1/spamassassin/current/specs/spamassassin.spec 2004-09-23 22:41:57 UTC (rev 4842) @@ -1,134 +1,129 @@ %define real_name Mail-SpamAssassin -Summary: a spam filter for email which can be invoked from mail delivery agents -Name: spamassassin -Group: contrib -Version: 2.64 -Release: 1jh -License: Artistic -Source: http:/spamassassin.org/released/%{real_name}-%{version}.tar.bz2 +Summary: a spam filter for email which can be invoked from mail delivery agents +Group: contrib +Name: spamassassin +Version: 3.0.0 +Release: 1gd +License: Apache License 2.0 +URL: http://spamassassin.apache.org/ +Source: http://spamassassin.apache.org/released/Mail-SpamAssassin-%{version}.tar.bz2 Source1: spamassassin.initd Source2: spamassassin.sysconfig -Patch: spamassassin-confdir.patch -Patch1: spamassassin-2.63-archiveiterator.patch -URL: http:/spamassassin.org -#Prefix: %{_prefix} -Prereq: /sbin/chkconfig -Requires: perl-mail-spamassassin = %{version}-%{release} +Patch: spamassassin-confdir-3.0.0.patch +Patch1: spamassassin-2.63-archiveiterator.patch Buildroot: %{_tmppath}/%{name}-root +Requires: perl-mail-spamassassin = %{version}-%{release} +Requires: perl(Pod::Usage) +BuildRequires: perl >= 5.6.1 perl(Digest::SHA1) %description -SpamAssassin provides you with a way to reduce, if not completely -eliminate, Unsolicited Bulk Email (or "spam") from your incoming email. -It can be invoked by a MDA such as sendmail or postfix, or can be called -from a procmail script, .forward file, etc. It uses a -genetic-algorithm-evolved scoring system to identify messages which look -spammy, then adds headers to the message so they can be filtered by the -user's mail reading software. This distribution includes the -spamd/spamc components which considerably speeds processing of mail. +SpamAssassin provides you with a way to reduce, if not completely eliminate, +Unsolicited Bulk Email (or "spam") from your incoming email. It can be +invoked by a MDA such as sendmail or postfix, or can be called from a procmail +script, .forward file, etc. It uses a perceptron-optimized scoring system +to identify messages which look spammy, then adds headers to the message so +they can be filtered by the user's mail reading software. This distribution +includes the spamc/spamc components which considerably speeds processing of +mail. - %package tools -Summary: Miscellaneous tools and documentation for SpamAssassin -Group: contrib -Requires: perl-mail-spamassassin = %{version}-%{release} -Requires: perl-digest-sha1 +Summary: Miscellaneous tools and documentation for SpamAssassin +Group: contrib +Requires: perl-mail-spamassassin = %{version}-%{release} %description tools Miscellaneous tools and documentation from various authors, distributed with SpamAssassin. See /usr/share/doc/SpamAssassin-tools-*/. - %package -n perl-mail-spamassassin -Summary: SpamAssassin e-mail filter Perl modules -Requires: perl >= 5.004 perl-html-parser -Group: contrib +Summary: %{real_name} -- SpamAssassin e-mail filter Perl modules +Requires: perl >= 5.6.1 perl(HTML::Parser) perl(Digest::SHA1) +BuildRequires: perl >= 5.6.1 perl(HTML::Parser) perl(Digest::SHA1) +Group: Contrib %description -n perl-mail-spamassassin Mail::SpamAssassin is a module to identify spam using text analysis and -several internet-based realtime blacklists. Using its rule base, it uses -a wide range of heuristic tests on mail headers and body text to -identify ``spam'', also known as unsolicited commercial email. Once -identified, the mail can then be optionally tagged as spam for later -filtering using the user's own mail user-agent application. +several internet-based realtime blacklists. Using its rule base, it uses a +wide range of heuristic tests on mail headers and body text to identify +``spam'', also known as unsolicited commercial email. Once identified, the +mail can then be optionally tagged as spam for later filtering using the +user's own mail user-agent application. - %prep %setup -q -n %{real_name}-%{version} %patch -p1 %patch1 -p1 - %build +CFLAGS="$RPM_OPT_FLAGS"; export CFLAGS %{__perl} Makefile.PL PREFIX=%{_prefix} SYSCONFDIR=%{_sysconfdir} DESTDIR=$RPM_BUILD_ROOT INSTALLDIRS=vendor < /dev/null %{__make} -%{__make} spamd/libspamc.so +%{__make} spamc/libspamc.so - %install install -d $RPM_BUILD_ROOT/%{_initrddir} install -d $RPM_BUILD_ROOT/%{_includedir} install -d $RPM_BUILD_ROOT/etc/spamassassin install -d $RPM_BUILD_ROOT/etc/sysconfig install -d -m 0755 $RPM_BUILD_ROOT/var/lib/spamassassin/shared -%makeinstall +%makeinstall install -m 0755 %{SOURCE1} $RPM_BUILD_ROOT/%{_initrddir}/spamassassin -install -m 0644 spamd/libspamc.so $RPM_BUILD_ROOT/%{_libdir} -install -m 0644 spamd/libspamc.h $RPM_BUILD_ROOT/%{_includedir}/libspamc.h +install -m 0644 spamc/libspamc.so $RPM_BUILD_ROOT/%{_libdir} +install -m 0644 spamc/libspamc.h $RPM_BUILD_ROOT/%{_includedir}/libspamc.h install -m 0644 rules/local.cf $RPM_BUILD_ROOT/etc/spamassassin/ install -m 0644 %{SOURCE2} $RPM_BUILD_ROOT/etc/sysconfig/spamassassin -%{__rm} -f %{buildroot}%{perl_vendorarch}/auto/Mail/SpamAssassin/.packlist -%{__rm} -f %{buildroot}%{perl_archlib}/perllocal.pod +# Do this so that the spamd README file has a different name ... +%{__mv} spamd/README spamd/README.spamd -[ -x /usr/lib/rpm/brp-compress ] && /usr/lib/rpm/brp-compress +mkdir -p %{buildroot}/etc/spamassassin +for file in ".packlist" "perllocal.pod"; do + find $RPM_BUILD_ROOT -name $file | xargs rm +done -%clean -%clean_buildroot - -%post -%service_post spamassassin - -%preun -%service_preun spamassassin - -%postun -%service_postun spamassassin - -%files +%files %defattr(-,root,root) -%doc README Changes sample-nonspam.txt sample-spam.txt spamd/README.spamd INSTALL -%attr(0755,root,root) %{_bindir}/* -%attr(0644,root,root) %{_includedir}/* -%attr(0644,root,root) %{_libdir}/*.so +%doc README Changes sample-nonspam.txt sample-spam.txt spamd/README.spamd INSTALL BUGS LICENSE TRADEMARK USAGE +%attr(755,root,root) %{_bindir}/* +%attr(644,root,root) %{_includedir}/* +%attr(644,root,root) %{_libdir}/*.so %attr(0755,root,root) %{_initrddir}/spamassassin %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/sysconfig/spamassassin # Shared directory. Not writeable by rpm default. %attr(755,root,root) /var/lib/spamassassin/shared %{_mandir}/man1/* - %files tools -%defattr(-,root,root) +%defattr(644,root,root,755) %doc sql tools masses contrib - %files -n perl-mail-spamassassin -%defattr(0644,root,root,0755) -%dir %{perl_vendorlib}/Mail/ -%{perl_vendorlib}/Mail/SpamAssassin.pm -%dir %{perl_vendorlib}/Mail/SpamAssassin/ -%{perl_vendorlib}/Mail/SpamAssassin/* -%dir %{_sysconfdir}/spamassassin -%config(noreplace) %{_sysconfdir}/spamassassin/* +%defattr(644,root,root,755) +%{perl_vendorlib}/* +%config(noreplace) %{_sysconfdir}/spamassassin %{_datadir}/spamassassin %{_mandir}/man3/* +%clean +%clean_buildroot +%post +%service_post spamassassin + +%preun +%service_preun spamassassin + +%postun +%service_postun spamassassin + %changelog +* Thu Sep 23 2004 Gerald Dachs 3.0.0-1gd +- New upstream version + * Mon Sep 13 2004 tsintegrate 2.63-18gd - current (2.63-18gd) integrated as 2.63-18gd @@ -178,4 +173,3 @@ * Sat Sep 27 2003 Gerald Dachs 2.60-1bx - adopted to badgerix - presumably from an rpm by PLD - From svn at tinysofa.org Fri Sep 24 17:45:34 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sat, 25 Sep 2004 03:45:34 +1000 (EST) Subject: [tinysofa-svn] r4843 - in tinysofa/releases/1.1/php4/current: sources specs Message-ID: <20040924174534.BC0BC4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-25 03:45:33 +1000 (Sat, 25 Sep 2004) New Revision: 4843 Added: tinysofa/releases/1.1/php4/current/sources/php-4.3.9.tar.bz2 Removed: tinysofa/releases/1.1/php4/current/sources/php-4.3.8.tar.bz2 Modified: tinysofa/releases/1.1/php4/current/specs/php4.spec Log: - 4.3.9 Deleted: tinysofa/releases/1.1/php4/current/sources/php-4.3.8.tar.bz2 =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/php4/current/sources/php-4.3.9.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/php4/current/sources/php-4.3.9.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/php4/current/specs/php4.spec =================================================================== --- tinysofa/releases/1.1/php4/current/specs/php4.spec 2004-09-23 22:41:57 UTC (rev 4842) +++ tinysofa/releases/1.1/php4/current/specs/php4.spec 2004-09-24 17:45:33 UTC (rev 4843) @@ -6,8 +6,8 @@ Summary: The PHP HTML-embedded scripting language. (PHP: Hypertext Preprocessor) Name: php4 -Version: 4.3.8 -Release: 5ts +Version: 4.3.9 +Release: 1jh License: The PHP License Group: main URL: http://www.php.net/ @@ -333,19 +333,19 @@ %patch7 -p1 -b .libtool15 %patch8 -p1 -b .miscfix %patch9 -p1 -b .umask -%patch10 -p1 -b .handler +#%patch10 -p1 -b .handler %if 0 %patch21 -p1 -b .odbc %endif %patch22 -p1 -b .db4 -%patch23 -p1 -b .gmppowm +#%patch23 -p1 -b .gmppowm %patch30 -p1 -b .dlopen -%patch31 -p1 -b .easter +#%patch31 -p1 -b .easter -%patch100 -p1 -b .freetds -%patch101 -p1 -b .freetds-multilib +#%patch100 -p1 -b .freetds +#%patch101 -p1 -b .freetds-multilib # Prevent %%doc confusion over LICENSE files cp Zend/LICENSE Zend/ZEND_LICENSE @@ -608,6 +608,9 @@ %endif %changelog +* Fri Sep 24 2004 Jaakko Heinonen 4.3.9-1jh +- 4.3.9 + * Sat Sep 04 2004 tsintegrate 4.3.8-5ts - current (4.3.8-5jh) integrated as 4.3.8-5ts for release 1.1-U1 From svn at tinysofa.org Sat Sep 25 14:19:11 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 26 Sep 2004 00:19:11 +1000 (EST) Subject: [tinysofa-svn] r4844 - tinysofa/releases/1.1/php4/current/specs Message-ID: <20040925141911.A3F344E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-26 00:19:10 +1000 (Sun, 26 Sep 2004) New Revision: 4844 Modified: tinysofa/releases/1.1/php4/current/specs/php4.spec Log: - no openssl subpackage (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=130953) Modified: tinysofa/releases/1.1/php4/current/specs/php4.spec =================================================================== --- tinysofa/releases/1.1/php4/current/specs/php4.spec 2004-09-24 17:45:33 UTC (rev 4843) +++ tinysofa/releases/1.1/php4/current/specs/php4.spec 2004-09-25 14:19:10 UTC (rev 4844) @@ -41,7 +41,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-root -BuildRequires: autoconf automake gcc-c++ bison flex +BuildRequires: autoconf automake gcc-c++ bison flex pkgconfig BuildRequires: bzip2-devel, db4-devel, expat-devel %if 0 BuildRequires: curl-devel >= 7.9, aspell-devel >= 0.50.0 @@ -52,7 +52,7 @@ BuildRequires: zlib-devel, pcre-devel, smtpdaemon BuildRequires: bzip2, perl, libtool >= 1.4.3 Obsoletes: php-dbg, mod_php, php3, phpfi, stronghold-php, mod_php4 -Obsoletes: mod_php4-cli mod_php4-openssl mod_php4-exif mod_php4-test mod_php4-domxml mod_php4-sysv +Obsoletes: mod_php4-cli mod_php4-openssl mod_php4-exif mod_php4-test mod_php4-domxml mod_php4-sysv php4-openssl # Enforce Apache module ABI compatibility Requires: httpd-mmn = %(cat %{_includedir}/httpd/.mmn 2> /dev/null || echo missing-httpd-devel) Requires: %{name}-pear @@ -311,6 +311,7 @@ The php-mbstring package contains a dynamic shared object that will add support for using the gd graphics library to PHP. +%if 0 %package openssl Summary: A module for PHP applications for using the OpenSSL toolkit Group: extra @@ -322,6 +323,7 @@ %description openssl The php-openssl package contains a dynamic shared object that will add support for using the OpenSSL toolkit to PHP. +%endif %prep %setup -q -n php-%{version} @@ -418,7 +420,7 @@ --with-gmp \ --with-iconv \ --with-jpeg-dir=%{_prefix} \ - --with-openssl=shared \ + --with-openssl \ --with-png \ %if 0 --with-pspell \ @@ -522,9 +524,9 @@ install -m 700 -d $RPM_BUILD_ROOT%{_localstatedir}/lib/php/session # Generate files lists and stub .ini files for each subpackage -#for mod in pgsql mysql odbc ldap snmp domxml xmlrpc imap gd \ +#for mod in pgsql mysql odbc ldap snmp domxml xmlrpc imap gd openssl \ for mod in pgsql mysql ldap xmlrpc imap gd \ - mbstring ncurses openssl \ + mbstring ncurses \ %{?_with_oci8:oci8} %{?_with_mssql:mssql} %{?_with_mhash:mhash}; do cat > $RPM_BUILD_ROOT%{_sysconfdir}/php.d/${mod}.ini < Author: jh Date: 2004-09-26 00:30:42 +1000 (Sun, 26 Sep 2004) New Revision: 4845 Added: tinysofa/releases/1.1/mysql/current/sources/mysql-4.0.21.tar.gz Removed: tinysofa/releases/1.1/mysql/current/sources/mysql-4.0.20.tar.gz Modified: tinysofa/releases/1.1/mysql/current/specs/mysql.spec Log: - use %%{_sysconfdir}/ld.so.conf.d/%%{name}.conf instead of editing /etc/ld.so.conf Deleted: tinysofa/releases/1.1/mysql/current/sources/mysql-4.0.20.tar.gz =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/mysql/current/sources/mysql-4.0.21.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/mysql/current/sources/mysql-4.0.21.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/mysql/current/specs/mysql.spec =================================================================== --- tinysofa/releases/1.1/mysql/current/specs/mysql.spec 2004-09-25 14:19:10 UTC (rev 4844) +++ tinysofa/releases/1.1/mysql/current/specs/mysql.spec 2004-09-25 14:30:42 UTC (rev 4845) @@ -1,8 +1,8 @@ Summary: A SQL database engine Name: mysql Group: main -Version: 4.0.20 -Release: 4ts +Version: 4.0.21 +Release: 1jh License: GPL / LGPL %define shared_libversion 12:0:0 %define mysqld_user mysql @@ -71,7 +71,6 @@ %package libs Summary: MySQL - Shared libraries Group: main -Prereq: grep mktemp coreutils %description libs This package contains the shared libraries (*.so*) which certain @@ -152,6 +151,12 @@ install -m755 %{SOURCE2} $RBR%{_initrddir}/mysql install -m600 %{SOURCE3} $RBR/etc/my.cnf +install -d -m 755 %{buildroot}%{_sysconfdir}/ld.so.conf.d/ +cat << __EOF__ > %{buildroot}%{_sysconfdir}/ld.so.conf.d/%{name}.conf +%{_libdir}/mysql +__EOF__ +chmod 644 %{buildroot}%{_sysconfdir}/ld.so.conf.d/%{name}.conf + ## Install debugging symbols [bg] #install -m644 sql/mysqld.sym $RBR%{_libdir}/mysql/mysqld.sym @@ -226,24 +231,9 @@ # Take care of info pages %info_postun -%post libs -LDPATH="%{_libdir}/mysql" -FNAME=`mktemp /etc/ld.so.conf.XXXXXX` -grep -v "^${LDPATH}$" /etc/ld.so.conf > ${FNAME} -echo "${LDPATH}" >> ${FNAME} -cat ${FNAME} > /etc/ld.so.conf -rm -f ${FNAME} -/sbin/ldconfig +%post libs -p /sbin/ldconfig -%postun libs -LDPATH="%{_libdir}/mysql" -if [ $1 = 0 ]; then - FNAME=`mktemp /etc/ld.so.conf.XXXXXX` - grep -v "^${LDPATH}$" /etc/ld.so.conf > ${FNAME} - cat ${FNAME} > /etc/ld.so.conf - rm -f ${FNAME} -fi -/sbin/ldconfig +%postun libs -p /sbin/ldconfig %files %defattr(-,root,root) @@ -334,6 +324,7 @@ %files libs %defattr(-,root,root) %dir %{_libdir}/mysql +%{_sysconfdir}/ld.so.conf.d/%{name}.conf %attr(755,root,root) %{_libdir}/mysql/*.so.* %files shared @@ -351,6 +342,11 @@ /usr/bin/mysqlmanagerc %changelog +* Sun Sep 19 2004 Jaakko Heinonen 4.0.21-1jh +- 4.0.21 +- use %%{_sysconfdir}/ld.so.conf.d/%%{name}.conf instead of editing + /etc/ld.so.conf + * Thu Aug 05 2004 tsintegrate 4.0.20-4ts - current (4.0.20-4jh) integrated as 4.0.20-4ts for release 1.1 From svn at tinysofa.org Sat Sep 25 14:39:15 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 26 Sep 2004 00:39:15 +1000 (EST) Subject: [tinysofa-svn] r4846 - in contrib/1.1/subversion/current: sources specs Message-ID: <20040925143915.5BEB54E873F@minbar.tinysofa.org> Author: jh Date: 2004-09-26 00:39:15 +1000 (Sun, 26 Sep 2004) New Revision: 4846 Added: contrib/1.1/subversion/current/sources/subversion-1.0.8.tar.bz2 Removed: contrib/1.1/subversion/current/sources/subversion-1.0.7.tar.bz2 Modified: contrib/1.1/subversion/current/specs/subversion.spec Log: - 1.0.8 Deleted: contrib/1.1/subversion/current/sources/subversion-1.0.7.tar.bz2 =================================================================== (Binary files differ) Added: contrib/1.1/subversion/current/sources/subversion-1.0.8.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/subversion/current/sources/subversion-1.0.8.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: contrib/1.1/subversion/current/specs/subversion.spec =================================================================== --- contrib/1.1/subversion/current/specs/subversion.spec 2004-09-25 14:30:42 UTC (rev 4845) +++ contrib/1.1/subversion/current/specs/subversion.spec 2004-09-25 14:39:15 UTC (rev 4846) @@ -5,7 +5,7 @@ Summary: A Concurrent Versioning system similar to but better than CVS. Name: subversion -Version: 1.0.7 +Version: 1.0.8 Release: 1jh License: BSD Group: contrib From svn at tinysofa.org Sat Sep 25 17:39:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 26 Sep 2004 03:39:12 +1000 (EST) Subject: [tinysofa-svn] r4847 - contrib/1.1/nedit/current/specs Message-ID: <20040925173912.6E08D4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-26 03:39:12 +1000 (Sun, 26 Sep 2004) New Revision: 4847 Modified: contrib/1.1/nedit/current/specs/nedit.spec Log: - include icon file Modified: contrib/1.1/nedit/current/specs/nedit.spec =================================================================== --- contrib/1.1/nedit/current/specs/nedit.spec 2004-09-25 14:39:15 UTC (rev 4846) +++ contrib/1.1/nedit/current/specs/nedit.spec 2004-09-25 17:39:12 UTC (rev 4847) @@ -5,7 +5,7 @@ Summary: A GUI text editor for systems with X and Motif. Name: nedit Version: 5.4 -Release: 1jh +Release: 2jh Source: http://nedit.org/ftp/v5_3/nedit-%{version}-source.tar.gz Source1: nedit.desktop Source2: nedit-icon.png @@ -71,15 +71,18 @@ %doc doc/nedit.doc README ReleaseNotes %{_prefix}/X11R6/man/*/* %{_prefix}/X11R6/bin/* +%{_datadir}/pixmaps/nedit-icon.png %if %{desktop_file} %{_prefix}/share/applications/* -%{_datadir}/pixmaps/nedit-icon.png %else %exclude %config /etc/X11/applnk/Applications/nedit.desktop %endif %changelog +* Sat Sep 25 2004 Jaakko Heinonen 5.4-2jh +- include icon file + * Wed Sep 22 2004 Jaakko Heinonen 5.4-1jh - tinysofa - build against lesstif From svn at tinysofa.org Sat Sep 25 19:00:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Sun, 26 Sep 2004 05:00:30 +1000 (EST) Subject: [tinysofa-svn] r4848 - contrib/1.1/nedit/current/specs Message-ID: <20040925190030.23A754E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-26 05:00:29 +1000 (Sun, 26 Sep 2004) New Revision: 4848 Modified: contrib/1.1/nedit/current/specs/nedit.spec Log: - enable icon installation Modified: contrib/1.1/nedit/current/specs/nedit.spec =================================================================== --- contrib/1.1/nedit/current/specs/nedit.spec 2004-09-25 17:39:12 UTC (rev 4847) +++ contrib/1.1/nedit/current/specs/nedit.spec 2004-09-25 19:00:29 UTC (rev 4848) @@ -51,9 +51,9 @@ mkdir -p $RPM_BUILD_ROOT/etc/X11/applnk/Applications install -m 644 %{SOURCE1} $RPM_BUILD_ROOT/etc/X11/applnk/Applications -%if %{desktop_file} mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps install -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps +%if %{desktop_file} mkdir -p $RPM_BUILD_ROOT%{_prefix}/share/applications desktop-file-install --vendor net --delete-original \ --dir $RPM_BUILD_ROOT%{_prefix}/share/applications \ From svn at tinysofa.org Sun Sep 26 19:47:22 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 27 Sep 2004 05:47:22 +1000 (EST) Subject: [tinysofa-svn] r4849 - in contrib/1.1/lesstif/current: sources specs Message-ID: <20040926194722.147124E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-27 05:47:20 +1000 (Mon, 27 Sep 2004) New Revision: 4849 Added: contrib/1.1/lesstif/current/sources/lesstif-0.93.96.tar.bz2 Removed: contrib/1.1/lesstif/current/sources/lesstif-0.93.95b.tar.bz2 Modified: contrib/1.1/lesstif/current/specs/lesstif.spec Log: - 0.93.96 Deleted: contrib/1.1/lesstif/current/sources/lesstif-0.93.95b.tar.bz2 =================================================================== (Binary files differ) Added: contrib/1.1/lesstif/current/sources/lesstif-0.93.96.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/lesstif/current/sources/lesstif-0.93.96.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: contrib/1.1/lesstif/current/specs/lesstif.spec =================================================================== --- contrib/1.1/lesstif/current/specs/lesstif.spec 2004-09-25 19:00:29 UTC (rev 4848) +++ contrib/1.1/lesstif/current/specs/lesstif.spec 2004-09-26 19:47:20 UTC (rev 4849) @@ -2,7 +2,7 @@ Summary: An OSF/Motif(R) clone. Name: lesstif -Version: 0.93.95b +Version: 0.93.96 Release: 1jh License: LGPL Group: contrib @@ -155,6 +155,9 @@ %changelog +* Sun Sep 26 2004 Jaakko Heinonen 0.93.96-1jh +- 0.93.96 + * Wed Sep 22 2004 Jaakko Heinonen 0.93.95b-1jh - tinysofa contrib - only Motif 2.1 support From svn at tinysofa.org Sun Sep 26 20:14:16 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 27 Sep 2004 06:14:16 +1000 (EST) Subject: [tinysofa-svn] r4850 - in contrib/1.1/lesstif/current: sources specs Message-ID: <20040926201416.E15524E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-27 06:14:16 +1000 (Mon, 27 Sep 2004) New Revision: 4850 Added: contrib/1.1/lesstif/current/sources/lesstif-0.93.96-debug-stacktrace.patch Modified: contrib/1.1/lesstif/current/specs/lesstif.spec Log: - add lesstif-0.93.96-debug-stacktrace.patch Added: contrib/1.1/lesstif/current/sources/lesstif-0.93.96-debug-stacktrace.patch =================================================================== --- contrib/1.1/lesstif/current/sources/lesstif-0.93.96-debug-stacktrace.patch 2004-09-26 19:47:20 UTC (rev 4849) +++ contrib/1.1/lesstif/current/sources/lesstif-0.93.96-debug-stacktrace.patch 2004-09-26 20:14:16 UTC (rev 4850) @@ -0,0 +1,11 @@ +--- lesstif-0.93.96/lib/Xm-2.1/DebugUtil.c.orig 2004-09-26 23:06:42.000000000 +0300 ++++ lesstif-0.93.96/lib/Xm-2.1/DebugUtil.c 2004-09-26 23:07:25.000000000 +0300 +@@ -2520,7 +2520,7 @@ + extern void + _LtDebugPrintStackTrace() + { +-#ifdef HAVE_BACKTRACE ++#if defined(HAVE_BACKTRACE) && ! defined(LESSTIF_PRODUCTION) + void *trace[32]; + char **messages = (char **)0; + int i, trace_size = 0; Modified: contrib/1.1/lesstif/current/specs/lesstif.spec =================================================================== --- contrib/1.1/lesstif/current/specs/lesstif.spec 2004-09-26 19:47:20 UTC (rev 4849) +++ contrib/1.1/lesstif/current/specs/lesstif.spec 2004-09-26 20:14:16 UTC (rev 4850) @@ -7,6 +7,7 @@ License: LGPL Group: contrib Source: ftp://ftp.hungry.com/pub/hungry/lesstif/srcdist/lesstif-%{version}.tar.bz2 +Patch0: lesstif-0.93.96-debug-stacktrace.patch Url: http://www.lesstif.org/ Obsoletes: lesstif-clients @@ -52,6 +53,7 @@ %prep %setup -q +%patch -p1 %build From svn at tinysofa.org Sun Sep 26 20:34:23 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 27 Sep 2004 06:34:23 +1000 (EST) Subject: [tinysofa-svn] r4851 - in contrib/1.1: nedit/current/specs xpdf/current/specs Message-ID: <20040926203423.BD7F24E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-27 06:34:23 +1000 (Mon, 27 Sep 2004) New Revision: 4851 Modified: contrib/1.1/nedit/current/specs/nedit.spec contrib/1.1/xpdf/current/specs/xpdf.spec Log: - increase release to rebuild against new lesstif Modified: contrib/1.1/nedit/current/specs/nedit.spec =================================================================== --- contrib/1.1/nedit/current/specs/nedit.spec 2004-09-26 20:14:16 UTC (rev 4850) +++ contrib/1.1/nedit/current/specs/nedit.spec 2004-09-26 20:34:23 UTC (rev 4851) @@ -5,7 +5,7 @@ Summary: A GUI text editor for systems with X and Motif. Name: nedit Version: 5.4 -Release: 2jh +Release: 3jh Source: http://nedit.org/ftp/v5_3/nedit-%{version}-source.tar.gz Source1: nedit.desktop Source2: nedit-icon.png Modified: contrib/1.1/xpdf/current/specs/xpdf.spec =================================================================== --- contrib/1.1/xpdf/current/specs/xpdf.spec 2004-09-26 20:14:16 UTC (rev 4850) +++ contrib/1.1/xpdf/current/specs/xpdf.spec 2004-09-26 20:34:23 UTC (rev 4851) @@ -6,7 +6,7 @@ Summary: A PDF file viewer for the X Window System. Name: xpdf Version: 3.00 -Release: 1jh +Release: 2jh License: GPL Epoch: 0 Url: http://www.foolabs.com/xpdf/ From svn at tinysofa.org Sun Sep 26 20:58:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 27 Sep 2004 06:58:28 +1000 (EST) Subject: [tinysofa-svn] r4852 - contrib/1.1 Message-ID: <20040926205828.7B7024E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-27 06:58:28 +1000 (Mon, 27 Sep 2004) New Revision: 4852 Removed: contrib/1.1/lesstif/ Log: - remove lesstif From svn at tinysofa.org Sun Sep 26 21:00:00 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 27 Sep 2004 07:00:00 +1000 (EST) Subject: [tinysofa-svn] r4853 - contrib/1.1 Message-ID: <20040926210000.9BACD4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-27 07:00:00 +1000 (Mon, 27 Sep 2004) New Revision: 4853 Added: contrib/1.1/lesstif/ Log: - copy from revision 4827 Copied: contrib/1.1/lesstif (from rev 4827, contrib/1.1/lesstif) From svn at tinysofa.org Sun Sep 26 21:01:34 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 27 Sep 2004 07:01:34 +1000 (EST) Subject: [tinysofa-svn] r4854 - contrib/1.1 Message-ID: <20040926210134.A16094E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-27 07:01:34 +1000 (Mon, 27 Sep 2004) New Revision: 4854 Removed: contrib/1.1/nedit/ Log: - remove nedit From svn at tinysofa.org Sun Sep 26 21:01:49 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 27 Sep 2004 07:01:49 +1000 (EST) Subject: [tinysofa-svn] r4855 - contrib/1.1 Message-ID: <20040926210149.32F6B4E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-27 07:01:48 +1000 (Mon, 27 Sep 2004) New Revision: 4855 Removed: contrib/1.1/xpdf/ Log: - remove xpdf From svn at tinysofa.org Sun Sep 26 21:02:19 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 27 Sep 2004 07:02:19 +1000 (EST) Subject: [tinysofa-svn] r4856 - contrib/1.1 Message-ID: <20040926210219.94F404E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-27 07:02:19 +1000 (Mon, 27 Sep 2004) New Revision: 4856 Added: contrib/1.1/nedit/ Log: - copy from revision 4827 Copied: contrib/1.1/nedit (from rev 4827, contrib/1.1/nedit) From svn at tinysofa.org Sun Sep 26 21:02:55 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 27 Sep 2004 07:02:55 +1000 (EST) Subject: [tinysofa-svn] r4857 - contrib/1.1 Message-ID: <20040926210255.EE5084E872E@minbar.tinysofa.org> Author: jh Date: 2004-09-27 07:02:55 +1000 (Mon, 27 Sep 2004) New Revision: 4857 Added: contrib/1.1/xpdf/ Log: - copy from revision 4827 Copied: contrib/1.1/xpdf (from rev 4827, contrib/1.1/xpdf) From svn at tinysofa.org Sun Sep 26 23:39:29 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 27 Sep 2004 09:39:29 +1000 (EST) Subject: [tinysofa-svn] r4858 - tinysofa/misc/comps/releases/1.0/U1 Message-ID: <20040926233929.EFE784E872E@minbar.tinysofa.org> Author: omar Date: 2004-09-27 09:39:29 +1000 (Mon, 27 Sep 2004) New Revision: 4858 Modified: tinysofa/misc/comps/releases/1.0/U1/comps Log: Test FogBUGZ. Bug ID: #3 Modified: tinysofa/misc/comps/releases/1.0/U1/comps =================================================================== --- tinysofa/misc/comps/releases/1.0/U1/comps 2004-09-26 21:02:55 UTC (rev 4857) +++ tinysofa/misc/comps/releases/1.0/U1/comps 2004-09-26 23:39:29 UTC (rev 4858) @@ -356,3 +356,4 @@ strace } + From svn at tinysofa.org Sun Sep 26 23:49:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Mon, 27 Sep 2004 09:49:12 +1000 (EST) Subject: [tinysofa-svn] r4859 - tinysofa/misc/comps/releases/1.0/U1 Message-ID: <20040926234912.9350C4E872E@minbar.tinysofa.org> Author: omar Date: 2004-09-27 09:49:12 +1000 (Mon, 27 Sep 2004) New Revision: 4859 Modified: tinysofa/misc/comps/releases/1.0/U1/comps Log: Test FogBUGZ. Bug ID: #3 Modified: tinysofa/misc/comps/releases/1.0/U1/comps =================================================================== --- tinysofa/misc/comps/releases/1.0/U1/comps 2004-09-26 23:39:29 UTC (rev 4858) +++ tinysofa/misc/comps/releases/1.0/U1/comps 2004-09-26 23:49:12 UTC (rev 4859) @@ -355,5 +355,3 @@ rpm-build strace } - - From svn at tinysofa.org Tue Sep 28 05:10:29 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 28 Sep 2004 01:10:29 -0400 (EDT) Subject: [tinysofa-svn] r4860 - tinysofa/misc/comps/releases/1.0/U1 Message-ID: <20040928051029.2DC3B344187@svn.tinysofa.org> Author: omar Date: 2004-09-28 01:10:28 -0400 (Tue, 28 Sep 2004) New Revision: 4860 Modified: tinysofa/misc/comps/releases/1.0/U1/comps Log: Test new server Modified: tinysofa/misc/comps/releases/1.0/U1/comps =================================================================== --- tinysofa/misc/comps/releases/1.0/U1/comps 2004-09-26 23:49:12 UTC (rev 4859) +++ tinysofa/misc/comps/releases/1.0/U1/comps 2004-09-28 05:10:28 UTC (rev 4860) @@ -355,3 +355,4 @@ rpm-build strace } + From svn at tinysofa.org Tue Sep 28 05:30:59 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 28 Sep 2004 01:30:59 -0400 (EDT) Subject: [tinysofa-svn] r4861 - tinysofa/releases/1.1 Message-ID: <20040928053059.E08BC344187@svn.tinysofa.org> Author: jh Date: 2004-09-28 01:30:59 -0400 (Tue, 28 Sep 2004) New Revision: 4861 Removed: tinysofa/releases/1.1/pam_ldap/ Log: - remove pam_ldap (now with nss_ldap) From svn at tinysofa.org Tue Sep 28 05:53:31 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 28 Sep 2004 01:53:31 -0400 (EDT) Subject: [tinysofa-svn] r4863 - in tinysofa/releases/1.1/kernel/current: sources specs Message-ID: <20040928055331.F0EA7344187@svn.tinysofa.org> Author: jh Date: 2004-09-28 01:53:31 -0400 (Tue, 28 Sep 2004) New Revision: 4863 Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config tinysofa/releases/1.1/kernel/current/specs/kernel.spec Log: - set CONFIG_BLK_DEV_SIIMAGE=y - Bug ID: #9 Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config 2004-09-28 05:34:13 UTC (rev 4862) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-BOOT.config 2004-09-28 05:53:31 UTC (rev 4863) @@ -293,7 +293,7 @@ CONFIG_BLK_DEV_RZ1000=y CONFIG_BLK_DEV_SC1200=m CONFIG_BLK_DEV_SVWKS=y -CONFIG_BLK_DEV_SIIMAGE=m +CONFIG_BLK_DEV_SIIMAGE=y # CONFIG_BLK_DEV_SIS5513 is not set # CONFIG_BLK_DEV_SLC90E66 is not set # CONFIG_BLK_DEV_TRM290 is not set Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config 2004-09-28 05:34:13 UTC (rev 4862) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586-smp.config 2004-09-28 05:53:31 UTC (rev 4863) @@ -447,7 +447,7 @@ CONFIG_BLK_DEV_RZ1000=m CONFIG_BLK_DEV_SC1200=m CONFIG_BLK_DEV_SVWKS=y -CONFIG_BLK_DEV_SIIMAGE=m +CONFIG_BLK_DEV_SIIMAGE=y CONFIG_BLK_DEV_SIS5513=m CONFIG_BLK_DEV_SLC90E66=m CONFIG_BLK_DEV_TRM290=m Modified: tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config =================================================================== --- tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config 2004-09-28 05:34:13 UTC (rev 4862) +++ tinysofa/releases/1.1/kernel/current/sources/kernel-2.4.21-i586.config 2004-09-28 05:53:31 UTC (rev 4863) @@ -435,7 +435,7 @@ CONFIG_BLK_DEV_RZ1000=m CONFIG_BLK_DEV_SC1200=m CONFIG_BLK_DEV_SVWKS=y -CONFIG_BLK_DEV_SIIMAGE=m +CONFIG_BLK_DEV_SIIMAGE=y CONFIG_BLK_DEV_SIS5513=m CONFIG_BLK_DEV_SLC90E66=m CONFIG_BLK_DEV_TRM290=m Modified: tinysofa/releases/1.1/kernel/current/specs/kernel.spec =================================================================== --- tinysofa/releases/1.1/kernel/current/specs/kernel.spec 2004-09-28 05:34:13 UTC (rev 4862) +++ tinysofa/releases/1.1/kernel/current/specs/kernel.spec 2004-09-28 05:53:31 UTC (rev 4863) @@ -126,7 +126,7 @@ Group: main License: GPLv2 Version: %{kversion} -Release: 5jh +Release: 6jh Epoch: 1 ExclusiveArch: %{all_x86} %{all_x86_64} s390 s390x %{all_ppc64} ia64 ExclusiveOS: Linux @@ -2176,6 +2176,7 @@ /boot/config-%{KVERREL} %dir /lib/modules %dir /lib/modules/%{KVERREL} +%defattr(644,root,root,755) /lib/modules/%{KVERREL}/kernel /lib/modules/%{KVERREL}/build From svn at tinysofa.org Tue Sep 28 06:49:22 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 28 Sep 2004 02:49:22 -0400 (EDT) Subject: [tinysofa-svn] r4864 - in contrib/1.1/tinysofa-utils/current: sources specs Message-ID: <20040928064922.592F7344187@svn.tinysofa.org> Author: jh Date: 2004-09-28 02:49:20 -0400 (Tue, 28 Sep 2004) New Revision: 4864 Added: contrib/1.1/tinysofa-utils/current/sources/tsmakesrpm contrib/1.1/tinysofa-utils/current/sources/unpackrpm Modified: contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec Log: - add unpackrpm and tsmakesrpm Added: contrib/1.1/tinysofa-utils/current/sources/tsmakesrpm =================================================================== --- contrib/1.1/tinysofa-utils/current/sources/tsmakesrpm 2004-09-28 05:53:31 UTC (rev 4863) +++ contrib/1.1/tinysofa-utils/current/sources/tsmakesrpm 2004-09-28 06:49:20 UTC (rev 4864) @@ -0,0 +1,27 @@ +#!/usr/bin/python +# +# Create a source rpm from tinysofa svn working copy +# by Jaakko Heinonen + +import os, sys + +def usage(): + print "usage:" + print " " + sys.argv[0] + " specfile [srpmdir]" + +if len(sys.argv) == 3: + srpmdir = sys.argv[2] +elif len(sys.argv) == 2: + srpmdir = os.getcwd() +else: + usage() + sys.exit(1) + +specfile = sys.argv[1] +topdir = os.path.join(os.path.dirname(os.path.abspath(specfile)), "..") + +os.system("rpmbuild -bs --nodeps \ + --define='_srcrpmdir %s' \ + --define=\"_topdir %s\" \ + --define='_sourcedir %%{_topdir}/sources' \ + %s" % (srpmdir, topdir, specfile)) Property changes on: contrib/1.1/tinysofa-utils/current/sources/tsmakesrpm ___________________________________________________________________ Name: svn:executable + * Added: contrib/1.1/tinysofa-utils/current/sources/unpackrpm =================================================================== --- contrib/1.1/tinysofa-utils/current/sources/unpackrpm 2004-09-28 05:53:31 UTC (rev 4863) +++ contrib/1.1/tinysofa-utils/current/sources/unpackrpm 2004-09-28 06:49:20 UTC (rev 4864) @@ -0,0 +1,6 @@ +#!/bin/sh + +DIRNAME=`rpm -qp "$1"` + +mkdir "$DIRNAME" || exit 1 +rpm2cpio "$1"| (cd "$DIRNAME" && cpio -id) Property changes on: contrib/1.1/tinysofa-utils/current/sources/unpackrpm ___________________________________________________________________ Name: svn:executable + * Modified: contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec =================================================================== --- contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec 2004-09-28 05:53:31 UTC (rev 4863) +++ contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec 2004-09-28 06:49:20 UTC (rev 4864) @@ -1,6 +1,6 @@ Name: tinysofa-utils Version: 2.0 -Release: 5jh +Release: 6jh URL: http://www.tinysofa.org Summary: tinysofa utilities Source1: tsbuild @@ -8,6 +8,8 @@ Source3: tsrep Source4: tsunpack_rpm Source5: tsrelease +Source6: unpackrpm +Source7: tsmakesrpm License: GPL Group: contrib BuildRoot: %{_tmppath}/%{name}-%{version}-root @@ -25,13 +27,14 @@ # satisfy rpm %install -install -d $RPM_BUILD_ROOT/sbin install -d $RPM_BUILD_ROOT/usr/share/tinysofa-utils install -m755 %{SOURCE1} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsbuild install -m755 %{SOURCE2} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsintegrate install -m755 %{SOURCE3} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsrep install -m755 %{SOURCE4} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsunpack_rpm install -m755 %{SOURCE5} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsrelease +install -m755 %{SOURCE6} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/unpackrpm +install -m755 %{SOURCE7} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsmakesrpm %clean %clean_buildroot @@ -39,13 +42,12 @@ %files %defattr(0755,root,root) %dir /usr/share/tinysofa-utils -/usr/share/tinysofa-utils/tsbuild -/usr/share/tinysofa-utils/tsintegrate -/usr/share/tinysofa-utils/tsrep -/usr/share/tinysofa-utils/tsunpack_rpm -/usr/share/tinysofa-utils/tsrelease +/usr/share/tinysofa-utils/* %changelog +* Tue Sep 28 2004 Jaakko Heinonen 2.0-6jh +- add unpackrpm and tsmakesrpm + * Mon Sep 13 2004 tsintegrate 2.0-5jh - current (2.0-5jh) integrated as 2.0-5jh From svn at tinysofa.org Tue Sep 28 07:07:33 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 28 Sep 2004 03:07:33 -0400 (EDT) Subject: [tinysofa-svn] r4865 - contrib/1.1/tinysofa-utils/current/specs Message-ID: <20040928070733.DAE03344187@svn.tinysofa.org> Author: jh Date: 2004-09-28 03:07:33 -0400 (Tue, 28 Sep 2004) New Revision: 4865 Modified: contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec Log: - add tsmkdir Modified: contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec =================================================================== --- contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec 2004-09-28 06:49:20 UTC (rev 4864) +++ contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec 2004-09-28 07:07:33 UTC (rev 4865) @@ -10,6 +10,7 @@ Source5: tsrelease Source6: unpackrpm Source7: tsmakesrpm +Source8: tsmkdir License: GPL Group: contrib BuildRoot: %{_tmppath}/%{name}-%{version}-root @@ -35,6 +36,7 @@ install -m755 %{SOURCE5} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsrelease install -m755 %{SOURCE6} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/unpackrpm install -m755 %{SOURCE7} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsmakesrpm +install -m755 %{SOURCE8} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsmkdir %clean %clean_buildroot @@ -46,7 +48,7 @@ %changelog * Tue Sep 28 2004 Jaakko Heinonen 2.0-6jh -- add unpackrpm and tsmakesrpm +- add unpackrpm, tsmakesrpm and tsmkdir * Mon Sep 13 2004 tsintegrate 2.0-5jh - current (2.0-5jh) integrated as 2.0-5jh From svn at tinysofa.org Tue Sep 28 07:39:51 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 28 Sep 2004 03:39:51 -0400 (EDT) Subject: [tinysofa-svn] r4866 - in contrib/1.1: . task-desktop task-desktop/current task-desktop/current/specs Message-ID: <20040928073951.EC5CC344187@svn.tinysofa.org> Author: jh Date: 2004-09-28 03:39:51 -0400 (Tue, 28 Sep 2004) New Revision: 4866 Added: contrib/1.1/task-desktop/ contrib/1.1/task-desktop/current/ contrib/1.1/task-desktop/current/sources/ contrib/1.1/task-desktop/current/specs/ contrib/1.1/task-desktop/current/specs/task-desktop.spec contrib/1.1/task-desktop/pristine/ contrib/1.1/task-desktop/releases/ Log: - add package task-desktop Added: contrib/1.1/task-desktop/current/specs/task-desktop.spec =================================================================== --- contrib/1.1/task-desktop/current/specs/task-desktop.spec 2004-09-28 07:07:33 UTC (rev 4865) +++ contrib/1.1/task-desktop/current/specs/task-desktop.spec 2004-09-28 07:39:51 UTC (rev 4866) @@ -0,0 +1,36 @@ +Summary : Meta package for desktop +Name: task-desktop +Version: 0 +Release: 1jh +License: GPL +Group: contrib +BuildRoot: %_buildroot + +# X.org X windowing system +Requires: xorg-x11 xterm +# display manager +Requires: xorg-x11-xdm xorg-x11-75dpi-fonts +# fonts +Requires: xorg-x11-truetype-fonts xorg-x11-100dpi-fonts xorg-x11-ISO8859-15-100dpi-fonts +# window manager +Requires: icewm +# web browser +Requires: firefox +# more apps +Requires: nedit xpdf +#Requires: xmms gimp gqview + +BuildArch: noarch + + +%description +This meta package provides the basic "desktop" software, including X +windowing system, display manager, window manager, web browser and +other graphical applications. + +%files + +%changelog +* Tue Sep 28 2004 Jaakko Heinonen 0-1jh +- first version + From svn at tinysofa.org Tue Sep 28 09:16:09 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 28 Sep 2004 05:16:09 -0400 (EDT) Subject: [tinysofa-svn] r4867 - tinysofa/releases/1.1/man/current/specs Message-ID: <20040928091609.4E0F8344187@svn.tinysofa.org> Author: jh Date: 2004-09-28 05:16:08 -0400 (Tue, 28 Sep 2004) New Revision: 4867 Modified: tinysofa/releases/1.1/man/current/specs/man.spec Log: - own cache directories even if usecache is not set Modified: tinysofa/releases/1.1/man/current/specs/man.spec =================================================================== --- tinysofa/releases/1.1/man/current/specs/man.spec 2004-09-28 07:39:51 UTC (rev 4866) +++ tinysofa/releases/1.1/man/current/specs/man.spec 2004-09-28 09:16:08 UTC (rev 4867) @@ -4,7 +4,7 @@ Summary: A set of documentation tools: man, apropos and whatis. Name: man Version: 1.5m2 -Release: 8ts +Release: 9jh License: GPL Group: main Source0: ftp://ftp.win.tue.nl/pub/linux-local/utils/man/man-%{version}.tar.bz2 @@ -154,19 +154,18 @@ %{_mandir}/man1/man2html.1* %{_mandir}/man8/makewhatis.8* %{_bindir}/man2html -%if %{usecache} %attr(0755,root,root) %dir %{cache} %attr(0775,root,man) %dir %{cache}/cat[123456789n] %attr(0775,root,man) %dir %{cache}/local %attr(0775,root,man) %dir %{cache}/local/cat[123456789n] %attr(0775,root,man) %dir %{cache}/X11R6 %attr(0775,root,man) %dir %{cache}/X11R6/cat[123456789n] -%else -%exclude %{cache} -%endif %changelog +* Tue Sep 28 2004 Jaakko Heinonen 1.5m2-9jh +- own cache directories even if usecache is not set + * Thu Aug 05 2004 tsintegrate 1.5m2-8ts - current (1.5m2-8jh) integrated as 1.5m2-8ts for release 1.1 From svn at tinysofa.org Tue Sep 28 17:53:47 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 28 Sep 2004 13:53:47 -0400 (EDT) Subject: [tinysofa-svn] r4868 - contrib/1.1/task-desktop/current/specs Message-ID: <20040928175347.CFDBE344187@svn.tinysofa.org> Author: jh Date: 2004-09-28 13:53:46 -0400 (Tue, 28 Sep 2004) New Revision: 4868 Modified: contrib/1.1/task-desktop/current/specs/task-desktop.spec Log: - cleanup Modified: contrib/1.1/task-desktop/current/specs/task-desktop.spec =================================================================== --- contrib/1.1/task-desktop/current/specs/task-desktop.spec 2004-09-28 09:16:08 UTC (rev 4867) +++ contrib/1.1/task-desktop/current/specs/task-desktop.spec 2004-09-28 17:53:46 UTC (rev 4868) @@ -1,10 +1,10 @@ -Summary : Meta package for desktop +Summary: Meta package for desktop Name: task-desktop Version: 0 Release: 1jh License: GPL Group: contrib -BuildRoot: %_buildroot +BuildRoot: %{_tmppath}/%{name}-%{version}-root # X.org X windowing system Requires: xorg-x11 xterm From svn at tinysofa.org Tue Sep 28 20:46:08 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 28 Sep 2004 16:46:08 -0400 (EDT) Subject: [tinysofa-svn] r4869 - contrib/1.1/tinysofa-utils/current/specs Message-ID: <20040928204608.56D86344187@svn.tinysofa.org> Author: jh Date: 2004-09-28 16:46:07 -0400 (Tue, 28 Sep 2004) New Revision: 4869 Modified: contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec Log: - add tsrpmbuild Modified: contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec =================================================================== --- contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec 2004-09-28 17:53:46 UTC (rev 4868) +++ contrib/1.1/tinysofa-utils/current/specs/tinysofa-utils.spec 2004-09-28 20:46:07 UTC (rev 4869) @@ -11,6 +11,7 @@ Source6: unpackrpm Source7: tsmakesrpm Source8: tsmkdir +Source9: tsrpmbuild License: GPL Group: contrib BuildRoot: %{_tmppath}/%{name}-%{version}-root @@ -28,27 +29,28 @@ # satisfy rpm %install -install -d $RPM_BUILD_ROOT/usr/share/tinysofa-utils -install -m755 %{SOURCE1} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsbuild -install -m755 %{SOURCE2} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsintegrate -install -m755 %{SOURCE3} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsrep -install -m755 %{SOURCE4} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsunpack_rpm -install -m755 %{SOURCE5} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsrelease -install -m755 %{SOURCE6} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/unpackrpm -install -m755 %{SOURCE7} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsmakesrpm -install -m755 %{SOURCE8} ${RPM_BUILD_ROOT}/usr/share/tinysofa-utils/tsmkdir +install -d $RPM_BUILD_ROOT%{_datadir}/tinysofa-utils +install -m755 %{SOURCE1} ${RPM_BUILD_ROOT}%{_datadir}/tinysofa-utils/tsbuild +install -m755 %{SOURCE2} ${RPM_BUILD_ROOT}%{_datadir}/tinysofa-utils/tsintegrate +install -m755 %{SOURCE3} ${RPM_BUILD_ROOT}%{_datadir}/tinysofa-utils/tsrep +install -m755 %{SOURCE4} ${RPM_BUILD_ROOT}%{_datadir}/tinysofa-utils/tsunpack_rpm +install -m755 %{SOURCE5} ${RPM_BUILD_ROOT}%{_datadir}/tinysofa-utils/tsrelease +install -m755 %{SOURCE6} ${RPM_BUILD_ROOT}%{_datadir}/tinysofa-utils/unpackrpm +install -m755 %{SOURCE7} ${RPM_BUILD_ROOT}%{_datadir}/tinysofa-utils/tsmakesrpm +install -m755 %{SOURCE8} ${RPM_BUILD_ROOT}%{_datadir}/tinysofa-utils/tsmkdir +install -m755 %{SOURCE9} ${RPM_BUILD_ROOT}%{_datadir}/tinysofa-utils/tsrpmbuild %clean %clean_buildroot %files %defattr(0755,root,root) -%dir /usr/share/tinysofa-utils -/usr/share/tinysofa-utils/* +%dir %{_datadir}/tinysofa-utils +%{_datadir}/tinysofa-utils/* %changelog * Tue Sep 28 2004 Jaakko Heinonen 2.0-6jh -- add unpackrpm, tsmakesrpm and tsmkdir +- add unpackrpm, tsmakesrpm, tsmkdir and tsrpmbuild * Mon Sep 13 2004 tsintegrate 2.0-5jh - current (2.0-5jh) integrated as 2.0-5jh From svn at tinysofa.org Tue Sep 28 20:49:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 28 Sep 2004 16:49:07 -0400 (EDT) Subject: [tinysofa-svn] r4870 - contrib/1.1/tinysofa-utils/current/sources Message-ID: <20040928204907.658AC344187@svn.tinysofa.org> Author: jh Date: 2004-09-28 16:49:06 -0400 (Tue, 28 Sep 2004) New Revision: 4870 Added: contrib/1.1/tinysofa-utils/current/sources/tsmkdir contrib/1.1/tinysofa-utils/current/sources/tsrpmbuild Log: - add missing scripts Added: contrib/1.1/tinysofa-utils/current/sources/tsmkdir =================================================================== --- contrib/1.1/tinysofa-utils/current/sources/tsmkdir 2004-09-28 20:46:07 UTC (rev 4869) +++ contrib/1.1/tinysofa-utils/current/sources/tsmkdir 2004-09-28 20:49:06 UTC (rev 4870) @@ -0,0 +1,7 @@ +#!/bin/sh + +if [ -z "$1" ]; then + echo "usage: $0 " +fi + +mkdir -p "$1"/{current/{specs,sources},releases,pristine} Property changes on: contrib/1.1/tinysofa-utils/current/sources/tsmkdir ___________________________________________________________________ Name: svn:executable + * Added: contrib/1.1/tinysofa-utils/current/sources/tsrpmbuild =================================================================== --- contrib/1.1/tinysofa-utils/current/sources/tsrpmbuild 2004-09-28 20:46:07 UTC (rev 4869) +++ contrib/1.1/tinysofa-utils/current/sources/tsrpmbuild 2004-09-28 20:49:06 UTC (rev 4870) @@ -0,0 +1,21 @@ +#!/usr/bin/python +# +# run rpmbuild from tinysofa svn working copy +# by Jaakko Heinonen + +import os, sys, string + +def usage(): + print "usage:" + print " " + sys.argv[0] + " specfile rpmbuild arguments" + +if len(sys.argv) < 3: + usage() + sys.exit(1) + +specfile = sys.argv[1] +topdir = os.path.join(os.path.dirname(os.path.abspath(specfile)), "..") +sourcedir = topdir + "/sources" + +os.system("rpmbuild " + string.join(sys.argv[2:]) + \ + " --define='_sourcedir %s' '%s'" % (sourcedir, specfile)) Property changes on: contrib/1.1/tinysofa-utils/current/sources/tsrpmbuild ___________________________________________________________________ Name: svn:executable + * From svn at tinysofa.org Tue Sep 28 21:02:44 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Tue, 28 Sep 2004 17:02:44 -0400 (EDT) Subject: [tinysofa-svn] r4871 - contrib/1.1 Message-ID: <20040928210244.89880344187@svn.tinysofa.org> Author: gda Date: 2004-09-28 17:02:44 -0400 (Tue, 28 Sep 2004) New Revision: 4871 Removed: contrib/1.1/getmail/ Log: nobody needs it From svn at tinysofa.org Wed Sep 29 08:29:48 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 29 Sep 2004 04:29:48 -0400 (EDT) Subject: [tinysofa-svn] r4872 - in contrib/1.1/mach/current: sources specs Message-ID: <20040929082948.A5AC7344187@minbar.tinysofa.org> Author: jh Date: 2004-09-29 04:29:47 -0400 (Wed, 29 Sep 2004) New Revision: 4872 Modified: contrib/1.1/mach/current/sources/mach-0.4.6-tinysofa.patch contrib/1.1/mach/current/specs/mach.spec Log: - update mach-0.4.6-tinysofa.patch Modified: contrib/1.1/mach/current/sources/mach-0.4.6-tinysofa.patch =================================================================== --- contrib/1.1/mach/current/sources/mach-0.4.6-tinysofa.patch 2004-09-28 21:02:44 UTC (rev 4871) +++ contrib/1.1/mach/current/sources/mach-0.4.6-tinysofa.patch 2004-09-29 08:29:47 UTC (rev 4872) @@ -1,5 +1,5 @@ --- mach-0.4.6/scripts/mach.in.tinysofa 2004-07-05 13:21:49.000000000 +0300 -+++ mach-0.4.6/scripts/mach.in 2004-07-23 22:31:21.000000000 +0300 ++++ mach-0.4.6/scripts/mach.in 2004-09-29 10:31:23.310414152 +0300 @@ -5,7 +5,7 @@ # # script to set up a chroot using packages and optionally perform builds in it @@ -121,8 +121,9 @@ # create dir structure - for dir in ('RPMS', 'SRPMS', 'SOURCES', 'SPECS', 'BUILD'): +- self.do_chroot ("su -c 'mkdir -p /usr/src/rpm/%s' %s" % + for dir in ('rpms', 'srpms', 'sources', 'specs', 'build'): - self.do_chroot ("su -c 'mkdir -p /usr/src/rpm/%s' %s" % ++ self.do_chroot ("su -c 'umask 002;mkdir -p /usr/src/rpm/%s' %s" % (dir, builduser), fatal = True) # this ensures that locally built RPMS are already used for apt-get Modified: contrib/1.1/mach/current/specs/mach.spec =================================================================== --- contrib/1.1/mach/current/specs/mach.spec 2004-09-28 21:02:44 UTC (rev 4871) +++ contrib/1.1/mach/current/specs/mach.spec 2004-09-29 08:29:47 UTC (rev 4872) @@ -1,6 +1,6 @@ Name: mach Version: 0.4.6 -Release: 4jh +Release: 5jh Summary: make a chroot buildsystem Group: contrib License: GPL @@ -66,7 +66,7 @@ %pre # create user and group mach -/usr/sbin/groupadd mach +/usr/sbin/groupadd mach > /dev/null 2>&1 || : /usr/sbin/useradd -c "mach user" \ -g mach -m mach -d %{_localstatedir}/lib/mach > /dev/null 2>&1 || : @@ -111,6 +111,9 @@ %changelog +* Wed Sep 29 2004 Jaakko Heinonen 0.4.6-5jh +- update tinysofa patch + * Mon Sep 13 2004 tsintegrate 0.4.6-4jh - current (0.4.6-4jh) integrated as 0.4.6-4jh From svn at tinysofa.org Wed Sep 29 16:42:11 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 29 Sep 2004 12:42:11 -0400 (EDT) Subject: [tinysofa-svn] r4873 - contrib/1.1/mach/current/specs Message-ID: <20040929164211.942C2344187@minbar.tinysofa.org> Author: jh Date: 2004-09-29 12:42:10 -0400 (Wed, 29 Sep 2004) New Revision: 4873 Modified: contrib/1.1/mach/current/specs/mach.spec Log: - merge 2.0 config Modified: contrib/1.1/mach/current/specs/mach.spec =================================================================== --- contrib/1.1/mach/current/specs/mach.spec 2004-09-29 08:29:47 UTC (rev 4872) +++ contrib/1.1/mach/current/specs/mach.spec 2004-09-29 16:42:10 UTC (rev 4873) @@ -1,3 +1,5 @@ +%define default_flavor tinysofa-1.1 + Name: mach Version: 0.4.6 Release: 5jh @@ -7,6 +9,7 @@ URL: http://thomas.apestaart.org/projects/mach/ Source: http://thomas.apestaart.org/download/mach/%{name}-%{version}.tar.gz Source1: tinysofa-1.1 +Source1: tinysofa-2.0 Patch0: mach-0.4.6-tinysofa.patch BuildRoot: %{_tmppath}/%{name}-%{version}-root @@ -42,12 +45,12 @@ %configure \ --enable-builduser=%{builduser} \ --enable-buildgroup=%{buildgroup} \ - --with-flavor=tinysofa-1.1 -%make + --with-flavor=%{default_flavor} +make %install -%makeinstall_std +make DESTDIR="%{buildroot}" install install -d -m 2775 $RPM_BUILD_ROOT%{_localstatedir}/lib/mach install -d -m 2775 $RPM_BUILD_ROOT%{_localstatedir}/lib/mach/states @@ -58,11 +61,11 @@ install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/mach/dist.d -sed -i "s/'-tinysofa-1.1'/'tinysofa-1.1'/" \ +sed -i "s/'-%{default_flavor}'/'%{default_flavor}'/" \ $RPM_BUILD_ROOT%{_sysconfdir}/mach/conf %clean -%clean_buildroot +rm -fr "%{buildroot}" %pre # create user and group mach @@ -113,6 +116,7 @@ %changelog * Wed Sep 29 2004 Jaakko Heinonen 0.4.6-5jh - update tinysofa patch +- merge 2.0 config * Mon Sep 13 2004 tsintegrate 0.4.6-4jh - current (0.4.6-4jh) integrated as 0.4.6-4jh From svn at tinysofa.org Wed Sep 29 16:42:42 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 29 Sep 2004 12:42:42 -0400 (EDT) Subject: [tinysofa-svn] r4874 - contrib/1.1/mach/current/sources Message-ID: <20040929164242.C133E344187@minbar.tinysofa.org> Author: jh Date: 2004-09-29 12:42:42 -0400 (Wed, 29 Sep 2004) New Revision: 4874 Added: contrib/1.1/mach/current/sources/tinysofa-2.0 Log: - add 2.0 configuration file Added: contrib/1.1/mach/current/sources/tinysofa-2.0 =================================================================== --- contrib/1.1/mach/current/sources/tinysofa-2.0 2004-09-29 16:42:10 UTC (rev 4873) +++ contrib/1.1/mach/current/sources/tinysofa-2.0 2004-09-29 16:42:42 UTC (rev 4874) @@ -0,0 +1,29 @@ +# mach dist configuration -*- python -*- + +# tinysofa-2.0: configuration for tinysofa + +# each distro flavour has an aptsources line describing where to get each +# kind of package from +# each actual dist has a packages dict for bootstrap packages and +# a sourceslist dict referencing aptsources lines to use + +### +aptsources['tinysofa-2.0'] = { + 'os': 'rpm file:///mnt/cdrom tinysofa all', +} + +# +packages['tinysofa-2.0'] = { + 'dir': 'tinysofa-2.0', + 'minimal': 'bash glibc', + 'base': 'coreutils findutils openssh-server openssh initscripts pam ' + + 'anacron vixie-cron openssl zlib dev', + 'build': 'dev rpm-devel rpm-build make gcc tar gzip patch ' + + 'unzip bzip2 diffutils cpio elfutils tinysofa-rpm-config', +} +sourceslist['tinysofa-2.0'] = { + 'tinysofa-2.0': ('os', ) +} +config['tinysofa-2.0'] = {} +aliases['tinysofa-2.0'] = ('ts20', 'ts-2.0', ) + From svn at tinysofa.org Wed Sep 29 18:06:27 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 29 Sep 2004 14:06:27 -0400 (EDT) Subject: [tinysofa-svn] r4875 - contrib/1.1/gpgme/current/specs Message-ID: <20040929180627.3A9F9344187@minbar.tinysofa.org> Author: gda Date: 2004-09-29 14:06:26 -0400 (Wed, 29 Sep 2004) New Revision: 4875 Modified: contrib/1.1/gpgme/current/specs/gpgme.spec Log: fixed buildreqs Modified: contrib/1.1/gpgme/current/specs/gpgme.spec =================================================================== --- contrib/1.1/gpgme/current/specs/gpgme.spec 2004-09-29 16:42:42 UTC (rev 4874) +++ contrib/1.1/gpgme/current/specs/gpgme.spec 2004-09-29 18:06:26 UTC (rev 4875) @@ -2,13 +2,13 @@ Summary: GPGME - GnuPG Made Easy Name: gpgme Version: 0.3.16 -Release: 1gd +Release: 2gd URL: http://www.gnupg.org/gpgme.html Source: ftp://ftp.gnupg.org/gcrypt/alpha/gpgme/%{name}-%{version}.tar.gz Group: Development/Libraries Copyright: GPL BuildRoot: %{_tmppath}/%{name}-%{version} -BuildRequires: make +BuildRequires: gnupg Prereq: /sbin/ldconfig Requires: gnupg @@ -48,9 +48,13 @@ %{_infodir}/gpgme.info* %changelog +* Wed Sep 29 2004 Gerald Dachs 0.3.16-2gd +- fixed buildrequirements + * Mon Sep 13 2004 tsintegrate 0.3.16-1gd - current (0.3.16-1gd) integrated as 0.3.16-1gd * Sun Aug 22 2004 Gerald Dachs 0.3.16-1gd - New in tinysofa contrib + From svn at tinysofa.org Wed Sep 29 18:17:20 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 29 Sep 2004 14:17:20 -0400 (EDT) Subject: [tinysofa-svn] r4876 - in contrib/1.1: . xcdroast xcdroast/current xcdroast/current/sources xcdroast/current/specs Message-ID: <20040929181720.6F26C344187@minbar.tinysofa.org> Author: gda Date: 2004-09-29 14:17:19 -0400 (Wed, 29 Sep 2004) New Revision: 4876 Added: contrib/1.1/xcdroast/ contrib/1.1/xcdroast/current/ contrib/1.1/xcdroast/current/sources/ contrib/1.1/xcdroast/current/sources/xcdroast-0.98alpha15.tar.gz contrib/1.1/xcdroast/current/specs/ contrib/1.1/xcdroast/current/specs/xcdroast.spec Log: new in contrib Added: contrib/1.1/xcdroast/current/sources/xcdroast-0.98alpha15.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/xcdroast/current/sources/xcdroast-0.98alpha15.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/xcdroast/current/specs/xcdroast.spec =================================================================== --- contrib/1.1/xcdroast/current/specs/xcdroast.spec 2004-09-29 18:06:26 UTC (rev 4875) +++ contrib/1.1/xcdroast/current/specs/xcdroast.spec 2004-09-29 18:17:19 UTC (rev 4876) @@ -0,0 +1,52 @@ +%define majorversion 0.98 +Name: xcdroast +Version: %{majorversion}alpha15 +Release: 2gd +Summary: A userfriendly GUI for copying and creating Audio- and Data-CDs +Copyright: GPL +Vendor: Thomas Niederreiter +Group: contrib +Source: http://www.xcdroast.org/download/xcdroast-%{version}.tar.gz +Url: http://www.xcdroast.org +BuildRoot: /tmp/%{name}-%{version}-root +Requires: cdrecord, mkisofs, cdda2wav +BuildRequires: gtk+-devel >= 1.2.3, gdk-pixbuf-devel >= 0.8.0 + +%description +X-CD-Roast is a program-package dedicated to easy CD creation +under most Unix-platforms. It combines command line tools like "cdrecord", +"cdda2wav", and "mkisofs" into a nice graphical user interface. + +%prep +%setup -n xcdroast-%{version} + +%build +%configure --disable-gtktest --disable-gdk_pixbuftest +%make + +%install +make install DESTDIR=$RPM_BUILD_ROOT + +mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/X11/applnk/Applications +cp -f extra/xcdroast.desktop $RPM_BUILD_ROOT/%{_sysconfdir}/X11/applnk/Applications/ +strip -R .comment $RPM_BUILD_ROOT%{_bindir}/xcdroast + + +%clean +%clean_buildroot + +%files +%defattr(-,root,root) +%doc doc/* +%{_bindir}/xcdroast +%{_mandir}/man1/xcdroast.1* +%{_libdir}/xcdroast-%{majorversion}/* +%{_datadir}/locale/* +%{_sysconfdir}/X11/applnk/Applications/xcdroast.desktop + +%changelog +* Wed Sep 29 2004 Gerald Dachs 0.98alpha15-2gd +- fixed requirements + +* Sun Sep 23 2004 Gerald Dachs 0.98alpha15-1gd +- new in contrib From svn at tinysofa.org Wed Sep 29 18:22:41 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 29 Sep 2004 14:22:41 -0400 (EDT) Subject: [tinysofa-svn] r4877 - in contrib/1.1: . squirrelmail squirrelmail/current squirrelmail/current/sources squirrelmail/current/specs Message-ID: <20040929182241.73EF6344187@minbar.tinysofa.org> Author: gda Date: 2004-09-29 14:22:40 -0400 (Wed, 29 Sep 2004) New Revision: 4877 Added: contrib/1.1/squirrelmail/ contrib/1.1/squirrelmail/current/ contrib/1.1/squirrelmail/current/sources/ contrib/1.1/squirrelmail/current/sources/config.php.tinysofa contrib/1.1/squirrelmail/current/sources/squirrelmail-1.4.3a.tar.bz2 contrib/1.1/squirrelmail/current/specs/ contrib/1.1/squirrelmail/current/specs/squirrelmail.spec Log: new in contrib Added: contrib/1.1/squirrelmail/current/sources/config.php.tinysofa =================================================================== --- contrib/1.1/squirrelmail/current/sources/config.php.tinysofa 2004-09-29 18:17:19 UTC (rev 4876) +++ contrib/1.1/squirrelmail/current/sources/config.php.tinysofa 2004-09-29 18:22:40 UTC (rev 4877) @@ -0,0 +1,177 @@ + Added: contrib/1.1/squirrelmail/current/sources/squirrelmail-1.4.3a.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/squirrelmail/current/sources/squirrelmail-1.4.3a.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/squirrelmail/current/specs/squirrelmail.spec =================================================================== --- contrib/1.1/squirrelmail/current/specs/squirrelmail.spec 2004-09-29 18:17:19 UTC (rev 4876) +++ contrib/1.1/squirrelmail/current/specs/squirrelmail.spec 2004-09-29 18:22:40 UTC (rev 4877) @@ -0,0 +1,137 @@ +Summary: SquirrelMail webmail client +Name: squirrelmail +Version: 1.4.3a +Release: 1gd +License: GPL +URL: http://www.squirrelmail.org/ +Vendor: squirrelmail.org +Group: contrib +Source: %{name}-%{version}.tar.bz2 +Source1: config.php.tinysofa +BuildRoot: %{_tmppath}/%{name}-%{version}-root +BuildArch: noarch +Requires: httpd, php4 >= 4.0.4, perl, tmpwatch >= 2.8, aspell +Requires: /usr/sbin/sendmail + +%description +SquirrelMail is a standards-based webmail package written in PHP4. It +includes built-in pure PHP support for the IMAP and SMTP protocols, and +all pages render in pure HTML 4.0 (with no Javascript) for maximum +compatibility across browsers. It has very few requirements and is very +easy to configure and install. SquirrelMail has all the functionality +you would want from an email client, including strong MIME support, +address books, and folder manipulation. + +%prep +%setup -q +%{__rm} -f plugins/make_archive.pl + +# Rearrange the documentation +%{__mv} AUTHORS ChangeLog COPYING INSTALL README UPGRADE doc/ +%{__mv} ReleaseNotes doc/ReleaseNotes.txt +%{__mv} themes/README.themes doc/ +for f in `find plugins -name "README*" -or -name INSTALL \ + -or -name CHANGES -or -name HISTORY`; do + %{__mkdir_p} doc/`dirname $f` + %{__mv} $f $_ +done +%{__mv} doc/plugins/squirrelspell/doc/README doc/plugins/squirrelspell +%{__rm} -rf doc/plugins/squirrelspell/doc +%{__mv} plugins/squirrelspell/doc/* doc/plugins/squirrelspell +%{__rm} -f doc/plugins/squirrelspell/index.php +%{__rm} -rf plugins/squirrelspell/doc + +# Fixup various files +echo "left_refresh=300" >> data/default_pref +cp %{SOURCE1} contrib/RPM/ +for f in contrib/RPM/squirrelmail.cron contrib/RPM/config.php.tinysofa; do + %{__perl} -pi \ + -e "s|__ATTDIR__|%{_localstatedir}/spool/squirrelmail/attach/|g;" \ + -e "s|__PREFSDIR__|%{_localstatedir}/lib/squirrelmail/prefs/|g;" \ + -e "s|__IMAP_SERVER__|courier|g;" \ + -e "s|__OPT_DELIM__||g;" \ + -e "s|__DEF_FOLDER_PREFIX__|INBOX.|g;" $f +done + +# Fix the version +%{__perl} -pi -e "s|^(\s*\\\$version\s*=\s*).*|\1'%{version}-%{release}';|g"\ + functions/strings.php + +%install +%{__mkdir_p} -m 755 %{buildroot}%{_sysconfdir}/squirrelmail +%{__mkdir_p} -m 755 %{buildroot}%{_localstatedir}/lib/squirrelmail/prefs +%{__mkdir_p} -m 755 %{buildroot}%{_localstatedir}/spool/squirrelmail/attach +%{__mkdir_p} -m 755 %{buildroot}%{_datadir}/squirrelmail + +# install default_pref into /etc/squirrelmail and symlink to it from data +%{__install} -m 644 data/default_pref \ + %{buildroot}%{_sysconfdir}/squirrelmail/ +%{__ln_s} %{_sysconfdir}/squirrelmail/default_pref \ + %{buildroot}%{_localstatedir}/lib/squirrelmail/prefs/default_pref + +# install the config files +%{__mkdir_p} -m 755 %{buildroot}%{_datadir}/squirrelmail/config +%{__install} -m 644 contrib/RPM/config.php.tinysofa \ + %{buildroot}%{_sysconfdir}/squirrelmail/config.php +%{__ln_s} %{_sysconfdir}/squirrelmail/config.php \ + %{buildroot}%{_datadir}/squirrelmail/config/config.php +%{__install} -m 644 config/config_local.php \ + %{buildroot}%{_sysconfdir}/squirrelmail/config_local.php +%{__ln_s} %{_sysconfdir}/squirrelmail/config_local.php \ + %{buildroot}%{_datadir}/squirrelmail/config/config_local.php +%{__rm} -f config/config_local.php config/config.php +%{__install} -m 644 config/*.php %{buildroot}%{_datadir}/squirrelmail/config/ +%{__install} -m 755 config/*.pl %{buildroot}%{_datadir}/squirrelmail/config/ + +# install index.php +%{__install} -m 644 index.php %{buildroot}%{_datadir}/squirrelmail/ + +# Copy over the rest +for DIR in class functions help images include locale plugins src themes; do + %{__cp} -rp $DIR %{buildroot}%{_datadir}/squirrelmail/ +done + +# install the cron script +%{__mkdir_p} -m 755 %{buildroot}%{_sysconfdir}/cron.daily +%{__install} -m 755 contrib/RPM/squirrelmail.cron \ + %{buildroot}/%{_sysconfdir}/cron.daily/ + +# install the config file +%{__mkdir_p} %{buildroot}%{_sysconfdir}/httpd/conf.d +%{__install} -m 644 contrib/RPM/squirrelmail.conf \ + %{buildroot}%{_sysconfdir}/httpd/conf.d/ + + +%clean +%clean_buildroot + +%files +%defattr(-,root,root) +%config %dir %{_sysconfdir}/squirrelmail +%config(noreplace) %{_sysconfdir}/squirrelmail/* +%config(noreplace) %{_sysconfdir}/httpd/conf.d/*.conf +%doc doc/* +%dir %{_datadir}/squirrelmail +%{_datadir}/squirrelmail/index.php +%{_datadir}/squirrelmail/class +%{_datadir}/squirrelmail/functions +%{_datadir}/squirrelmail/help +%{_datadir}/squirrelmail/images +%{_datadir}/squirrelmail/include +%{_datadir}/squirrelmail/locale +%{_datadir}/squirrelmail/src +%{_datadir}/squirrelmail/themes +%{_datadir}/squirrelmail/config +%dir %{_datadir}/squirrelmail/plugins +%{_datadir}/squirrelmail/plugins/* +%dir %{_localstatedir}/lib/squirrelmail +%dir %{_localstatedir}/spool/squirrelmail +%attr(0770, root, httpd) %dir %{_localstatedir}/lib/squirrelmail/prefs +%attr(0730, root, httpd) %dir %{_localstatedir}/spool/squirrelmail/attach +%{_localstatedir}/lib/squirrelmail/prefs/default_pref +%{_sysconfdir}/cron.daily/squirrelmail.cron + +%changelog +* Mon Sep 27 2004 Gerald Dachs 1.4.3a-1gd +- new in contrib + From svn at tinysofa.org Wed Sep 29 18:26:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 29 Sep 2004 14:26:12 -0400 (EDT) Subject: [tinysofa-svn] r4878 - in contrib/1.1: . aspell aspell/current aspell/current/sources aspell/current/specs Message-ID: <20040929182612.6700C344187@minbar.tinysofa.org> Author: gda Date: 2004-09-29 14:26:11 -0400 (Wed, 29 Sep 2004) New Revision: 4878 Added: contrib/1.1/aspell/ contrib/1.1/aspell/current/ contrib/1.1/aspell/current/sources/ contrib/1.1/aspell/current/sources/aspell-0.50.3-gcc33.patch contrib/1.1/aspell/current/sources/aspell-0.50.3.prefix.patch contrib/1.1/aspell/current/sources/aspell-0.50.5.tar.gz contrib/1.1/aspell/current/specs/ contrib/1.1/aspell/current/specs/aspell.spec Log: new in contrib Added: contrib/1.1/aspell/current/sources/aspell-0.50.3-gcc33.patch =================================================================== --- contrib/1.1/aspell/current/sources/aspell-0.50.3-gcc33.patch 2004-09-29 18:22:40 UTC (rev 4877) +++ contrib/1.1/aspell/current/sources/aspell-0.50.3-gcc33.patch 2004-09-29 18:26:11 UTC (rev 4878) @@ -0,0 +1,10 @@ +--- aspell-0.50.3/prog/checker_string.cpp.gcc33 2003-05-22 22:52:59.000000000 -0400 ++++ aspell-0.50.3/prog/checker_string.cpp 2003-05-22 22:53:13.000000000 -0400 +@@ -4,6 +4,7 @@ + // license along with this library if you did not you can find + // it at http://www.gnu.org/. + ++#include + #include "checker_string.hpp" + #include "speller.hpp" + #include "document_checker.hpp" Added: contrib/1.1/aspell/current/sources/aspell-0.50.3.prefix.patch =================================================================== --- contrib/1.1/aspell/current/sources/aspell-0.50.3.prefix.patch 2004-09-29 18:22:40 UTC (rev 4877) +++ contrib/1.1/aspell/current/sources/aspell-0.50.3.prefix.patch 2004-09-29 18:26:11 UTC (rev 4878) @@ -0,0 +1,15 @@ +--- aspell-0.50.3/common/Makefile.in.prefix 2003-04-28 14:47:40.000000000 -0400 ++++ aspell-0.50.3/common/Makefile.in 2003-04-28 14:50:50.000000000 -0400 +@@ -516,10 +516,10 @@ + + + dirs.h: mk-dirs_h +- echo '#define PREFIX "${prefix}"' > dirs.h ++ echo '#define PREFIX "/usr"' > dirs.h + ./mk-dirs_h ${prefix} DICT_DIR ${pkglibdir} >> dirs.h + ./mk-dirs_h ${prefix} DATA_DIR ${pkgdatadir} >> dirs.h +- ./mk-dirs_h ${prefix} CONF_DIR ${sysconfdir} >> dirs.h ++ echo '#define CONF_DIR "/etc"' >> dirs.h + + config.cpp: dirs.h + Added: contrib/1.1/aspell/current/sources/aspell-0.50.5.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/aspell/current/sources/aspell-0.50.5.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/aspell/current/specs/aspell.spec =================================================================== --- contrib/1.1/aspell/current/specs/aspell.spec 2004-09-29 18:22:40 UTC (rev 4877) +++ contrib/1.1/aspell/current/specs/aspell.spec 2004-09-29 18:26:11 UTC (rev 4878) @@ -0,0 +1,323 @@ +Summary: A spelling checker. +Name: aspell +Version: 0.50.5 +Release: 1gd +License: LGPL +Group: contrib +URL: http://aspell.net/ +Source0: ftp://ftp.gnu.org/gnu/aspell/aspell-%{version}.tar.gz +Patch0: aspell-0.50.3.prefix.patch +Patch1: aspell-0.50.3-gcc33.patch +Buildrequires: gcc-c++ +Requires: aspell-en +BuildRoot: %{_tmppath}/%{name}-%{version}-root +Provides: pspell + +%description +GNU Aspell is a spell checker designed to eventually replace Ispell. It can +either be used as a library or as an independent spell checker. Its main +feature is that it does a much better job of coming up with possible +suggestions than just about any other spell checker out there for the +English language, including Ispell and Microsoft Word. It also has many +other technical enhancements over Ispell such as using shared memory for +dictionaries and intelligently handling personal dictionaries when more +than one Aspell process is open at once. + +%package devel +Summary: Static libraries and header files for Aspell development. +Group: contrib +Requires: aspell = %{version} +Provides: pspell-devel + +%description devel +Aspell is a spelling checker. The aspell-devel package includes the +static libraries and header files needed for Aspell development. + +%prep +rm -rf $RPM_BUILD_ROOT +%setup -q -n aspell-%{version} +%patch -p1 -b .prefix +%patch1 -p1 -b .gcc33 + +%build +%configure +make + +%install +%makeinstall + +mkdir -p ${RPM_BUILD_ROOT}%{_libdir}/aspell + +mv ${RPM_BUILD_ROOT}%{_datadir}/aspell/ispell ${RPM_BUILD_ROOT}%{_bindir} +mv ${RPM_BUILD_ROOT}%{_datadir}/aspell/spell ${RPM_BUILD_ROOT}%{_bindir} + +rm -f ${RPM_BUILD_ROOT}%{_libdir}/libaspell.la +rm -f ${RPM_BUILD_ROOT}%{_libdir}/libpspell.la + +rm -f $RPM_BUILD_ROOT/usr/share/doc/aspell/manual.aux + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig +%clean +%clean_buildroot + +%files +%defattr(-,root,root) +%doc README TODO +%doc %{_docdir}/aspell/* +%dir %{_datadir}/aspell +%dir %{_datadir}/doc/aspell +%dir %{_libdir}/aspell +%{_bindir}/* +%{_libdir}/lib*.so.* +%{_datadir}/aspell/*.dat +%{_datadir}/aspell/*.kbd + +%files devel +%defattr(-,root,root) +%dir %{_includedir}/pspell +%{_includedir}/aspell.h +%{_includedir}/pspell/pspell.h +%{_libdir}/lib*spell.so + +%changelog +* Mon Sep 27 2004 Gerald Dachs 0.50.5-1gd +- backported from tes 2.0 for ts 1.1 contrib + +* Tue Mar 02 2004 Elliot Lee +- rebuilt + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Thu Jan 29 2004 Adrian Havill 12:0.50.50.3-18 +- make rpm own some unclaimed dirs (#112984, #113778) +- explicitly claim kbd anbd dat files in /usr/share/aspell +- a little spec file files cleanup-- macro subs, dir prefix +- make /usr/lib/aspell; don't make the dictionary packages do it + +* Mon Nov 17 2003 Thomas Woerner 12:0.50.3-17 +- fixed build: added make to %%build to avoid rpath for build directory + +* Tue Oct 07 2003 Adrian Havill 12:0.50.3-16 +- moved spell compat script from /usr/share/aspell to /usr/bin (#105921) + +* Tue Jul 01 2003 Adrian Havill 11:0.50.3-15 +- moved ispell compat script from /usr/share/aspell to /usr/bin (#90907) + +* Tue Jun 24 2003 Adrian Havill 10:0.50.3-14 +- removed emacs/xemacs el files which are already provided + +* Mon Jun 18 2003 Adrian Havill 9:0.50.3-13 +- provide pspell-devel in addition to obsoleting it + +* Tue Jun 10 2003 Adrian Havill 8:0.50.3-12 +- obsolete old dicts designed for previous aspell + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Fri May 30 2003 Joe Orton 7:0.50.3-10 +- rebuild again to fix libpspell deps + +* Fri May 30 2003 Joe Orton 7:0.50.3-9 +- remove ExcludeArch + +* Thu May 22 2003 Jeremy Katz 7:0.50.3-8 +- fix build with gcc 3.3 + +* Wed May 22 2003 Adrian Havill 0.50.3-7 +- require aspell-en for upgrades + +* Sun May 11 2003 Jeremy Katz 6:0.50.3-6 +- -devel should obsolete pspell-devel + +* Tue May 6 2003 Joe Orton 0.50.3-5 +- include libpspell.so in devel package + +* Wed May 1 2003 Adrian Havill 0.50.3-4 +- removed .la files + +* Wed Apr 16 2003 Adrian Havill 0.50.3-3 +- Changed the header for provides, obsoletes, epoch +- fixed config prefix in dirs.h + +* Wed Apr 16 2003 Adrian Havill 0.50.3-1 +- upgrade to 0.50.3 + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Fri Nov 8 2002 Tim Powers +- fix broken pspell epoch dep +- create $RPM_BUILD_ROOT/usr/bin by hand +- remove /usr/doc +- fix hardcoding of /usr/lib so that we can build on x86_64 + +* Tue Aug 13 2002 Nalin Dahyabhai 0.33.7.1-16 +- require pspell and pspell-devel using the proper epoch + +* Sat Aug 10 2002 Elliot Lee +- rebuilt with gcc-3.2 (we hope) + +* Mon Jul 22 2002 Tim Powers 0.33.7.1-14 +- rebuild using gcc-3.2-0.1 + +* Fri Jun 21 2002 Tim Powers 0.33.7.1-13 +- automated rebuild + +* Thu Jun 13 2002 Trond Eivind Glomsr?d 0.33.7.1-12 +- Rebuild to make it work again... #66708 + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Mon May 13 2002 Trond Eivind Glomsr?d 0.33.7.1-10 +- Rebuild + +* Thu Feb 21 2002 Trond Eivind Glomsr?d 0.33.7.1-9 +- Disable evil patch + +* Mon Jan 28 2002 Trond Eivind Glomsr?d 0.33.7.1-8 +- Build on more archs (doh) + +* Tue Jan 22 2002 Trond Eivind Glomsr?d 0.33.7.1-7 +- Make it compile with new compiler (evil workaround) + +* Wed Jan 16 2002 Trond Eivind Glomsr?d 0.33.7.1-5 +- Rebuild +- Unexclude alpha + +* Fri Dec 14 2001 Trond Eivind Glomsr?d 0.33.7.1-3 +- Rebuild +- Don't build on alpha + +* Mon Oct 29 2001 Bernhard Rosenkraenzer 0.33.7.1-2 +- "make it work with gcc 3.1" ;) + +* Tue Sep 18 2001 Trond Eivind Glomsr?d 0.33.7.1-1 +- 0.33.7.1, which is a "make it work with gcc 3" release + +* Wed Sep 12 2001 Tim Powers +- rebuild with new gcc and binutils + +* Thu Aug 9 2001 Trond Eivind Glomsr?d 0.33.7-1 +- 0.33.7 bugfix release. Requested by the author, it fixes + coredumps in sug-mode and when not using typo-analyses. + It also contains code cleanups so it compiles with -ansi +- should fix coredump on IA64 (#49746) + +* Wed Jul 11 2001 Trond Eivind Glomsr?d +- Add the .la files in the main package - used for dynamic loading + +* Sun Jun 3 2001 Trond Eivind Glomsr?d +- 0.33.6.3, which includes the fix made yesterday + +* Sat Jun 2 2001 Trond Eivind Glomsr?d +- Make it search for directories in the correct location + +* Wed May 30 2001 Trond Eivind Glomsr?d +- No more workarounds at the specfile level + +* Tue May 29 2001 Trond Eivind Glomsr?d +- Use custom ltmain.sh to work around buggy bundled libtool + +* Sun May 20 2001 Trond Eivind Glomsr?d +- 0.33.6 +- use standard %%configure macro - it works now. + +* Fri May 11 2001 Bernhard Rosenkraenzer 0.33.5-2 +- Rebuild with new libltdl + +* Mon Apr 23 2001 Trond Eivind Glomsr?d +- 0.33.5 + +* Thu Nov 30 2000 Trond Eivind Glomsr?d +- use new emacs init scheme for Emacs and XEmacs + +* Wed Nov 22 2000 Trond Eivind Glomsr?d +- .32.6 + +* Sat Aug 19 2000 Trond Eivind Glomsr?d +- .32.5 bugfix release (also contains improved documentation), + obsolete old patch +- the compatibility scripts are now part of the package itself +- clean up build procedure +- remove manual.aux file from docs (#16424) + +* Sun Aug 06 2000 Trond Eivind Glomsr?d +- .32.1 bugfix release, obsolete old patch +- rename to 0.32.1 +- add patch from author to change his email address +- add spell and ispell compatibility scripts + +* Fri Aug 04 2000 Trond Eivind Glomsr?d +- rebuild + +* Tue Aug 01 2000 Trond Eivind Glomsr?d +- remember to obsolete ispell +- build the Canadian and British dictionaries here now, + as part of the main package. Same package names and + descriptions. + +* Mon Jul 24 2000 Trond Eivind Glomsr?d +- .32 +- remove old patches, add a patch since namespace isn't + polluted as much anymore (as opposed to older toolchain) + +* Wed Jul 19 2000 Trond Eivind Glomsr?d +- rebuild + +* Wed Jul 12 2000 Prospector +- automatic rebuild + +* Tue Jul 4 2000 Jakub Jelinek +- Rebuild with new C++ + +* Fri Jun 30 2000 Trond Eivind Glomsr?d +- use RPM_OPT_FLAGS, not just -O0 +- dont include .la-files + +* Fri Jun 23 2000 Trond Eivind Glomsr?d +- excludearch ia64 + +* Fri Jun 23 2000 Trond Eivind Glomsr?d +- patch to work around compiler bug(?) wrt. inline functions +- use CFLAGS and CXXFLAGS +- set them to -O0 to work around YACB +- copy libtool files for IA64 support + +* Sun Jun 18 2000 Trond Eivind Glomsr?d +- update to .31.1. My patch was upstreamed and is no longer needed. +- new patch added so DESTDIR works properly + +* Fri Jun 16 2000 Trond Eivind Glomsr?d +- (this entry includes some old ones...) +- update to .31 +- added patch to make it compile with a pickier compiler +- include /usr/share/pspell + +* Mon May 1 2000 Tim Powers +- updated to .30.1 +- used build fixes from Ryan Weaver's 0.30.1-1 package on sourceforge +- updated URL, download/ftp location +- removed redundant define's at top of spec file + +* Thu Jul 8 1999 Tim Powers +- built for Powertools 6.1 +- removed %serial definitions from spec file to make versioning + consistant with the other packages we ship. +- changed build root path +- general spec file cleanups + +* Tue Mar 2 1999 Ryan Weaver + [aspell-.27.2-2] +- Changes from .27.1 to .27.2 (Mar 1, 1999) +- Fixed a major bug that caused aspell to dump core when used + without any arguments +- Fixed another major bug that caused aspell to do nothing when used + in interactive mode. +- Added an option to exit in Aspell's interactive mode. +- Removed some old documentation files from the distribution. +- Minor changes on to the section on using Aspell with egcs. +- Minor changes to remove -Wall warnings. From svn at tinysofa.org Wed Sep 29 18:26:53 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 29 Sep 2004 14:26:53 -0400 (EDT) Subject: [tinysofa-svn] r4879 - in contrib/1.1: . aspell-en aspell-en/current aspell-en/current/sources aspell-en/current/specs Message-ID: <20040929182653.B3BF7344187@minbar.tinysofa.org> Author: gda Date: 2004-09-29 14:26:53 -0400 (Wed, 29 Sep 2004) New Revision: 4879 Added: contrib/1.1/aspell-en/ contrib/1.1/aspell-en/current/ contrib/1.1/aspell-en/current/sources/ contrib/1.1/aspell-en/current/sources/aspell-en-0.51-0.tar.bz2 contrib/1.1/aspell-en/current/specs/ contrib/1.1/aspell-en/current/specs/aspell-en.spec Log: new in contrib Added: contrib/1.1/aspell-en/current/sources/aspell-en-0.51-0.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/aspell-en/current/sources/aspell-en-0.51-0.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/aspell-en/current/specs/aspell-en.spec =================================================================== --- contrib/1.1/aspell-en/current/specs/aspell-en.spec 2004-09-29 18:26:11 UTC (rev 4878) +++ contrib/1.1/aspell-en/current/specs/aspell-en.spec 2004-09-29 18:26:53 UTC (rev 4879) @@ -0,0 +1,59 @@ +%define lang en +%define langrelease 0 +Summary: English dictionaries for Aspell. +Name: aspell-%{lang} +Version: 0.51 +Release: 1gd +License: distributable +Group: contrib +URL: http://aspell.net/ +Source: ftp://ftp.gnu.org/gnu/aspell/dict/%{lang}/aspell-%{lang}-%{version}-%{langrelease}.tar.bz2 +Buildrequires: aspell >= 0.50 +Requires: aspell >= 0.50 +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Provides the word list/dictionaries for the following: English, Canadian +English, British English + +%prep +rm -rf $RPM_BUILD_ROOT +%setup -q -n aspell-%{lang}-%{version}-%{langrelease} + +%build +echo "ASPELL = aspell" > Makefile +echo "DEST_DIR = $RPM_BUILD_ROOT" >> Makefile +echo "WORD_LIST_COMPRESS = word-list-compress" >> Makefile +echo "dictdir = ${RPM_BUILD_ROOT}%{_libdir}/aspell" >> Makefile +echo "datadir = ${RPM_BUILD_ROOT}%{_datadir}/aspell" >> Makefile +cat Makefile.pre >> Makefile +make + +%install +make install + +%clean +%clean_buildroot + +%files +%defattr(-,root,root) + +%{_libdir}/aspell/* +%{_datadir}/aspell/* + +%changelog +* Mon Sep 27 2004 Gerald Dachs 0.51-1gd +- backported from tes 2.0 to ts 1.1 contrib + +* Tue Mar 02 2004 Elliot Lee +- rebuilt + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Mon Jun 23 2003 Adrian Havill 0.51-6 +- data files are not arch independent + +* Fri Jun 20 2003 Adrian Havill 0.51-5 +- first build for new aspell (0.50) + From svn at tinysofa.org Wed Sep 29 18:28:26 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 29 Sep 2004 14:28:26 -0400 (EDT) Subject: [tinysofa-svn] r4880 - in contrib/1.1: . aspell-de aspell-de/current aspell-de/current/sources aspell-de/current/specs Message-ID: <20040929182826.4FA4C344187@minbar.tinysofa.org> Author: gda Date: 2004-09-29 14:28:25 -0400 (Wed, 29 Sep 2004) New Revision: 4880 Added: contrib/1.1/aspell-de/ contrib/1.1/aspell-de/current/ contrib/1.1/aspell-de/current/sources/ contrib/1.1/aspell-de/current/sources/aspell-de-0.50-2.tar.bz2 contrib/1.1/aspell-de/current/specs/ contrib/1.1/aspell-de/current/specs/aspell-de.spec Log: new in contrib Added: contrib/1.1/aspell-de/current/sources/aspell-de-0.50-2.tar.bz2 =================================================================== (Binary files differ) Property changes on: contrib/1.1/aspell-de/current/sources/aspell-de-0.50-2.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: contrib/1.1/aspell-de/current/specs/aspell-de.spec =================================================================== --- contrib/1.1/aspell-de/current/specs/aspell-de.spec 2004-09-29 18:26:53 UTC (rev 4879) +++ contrib/1.1/aspell-de/current/specs/aspell-de.spec 2004-09-29 18:28:25 UTC (rev 4880) @@ -0,0 +1,56 @@ +%define lang de +%define langrelease 2 +Summary: German dictionaries for Aspell. +Name: aspell-%{lang} +Version: 0.50 +Release: 1gd +License: GPL +Group: contrib +URL: http://aspell.net/ +Source: ftp://ftp.gnu.org/gnu/aspell/dict/%{lang}/aspell-%{lang}-%{version}-%{langrelease}.tar.bz2 +Buildrequires: aspell >= 0.50 +Requires: aspell >= 0.50 +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Provides the word list/dictionaries for the following: German, Swiss German + +%prep +%setup -q -n aspell-%{lang}-%{version}-%{langrelease} + +%build +echo "ASPELL = aspell" > Makefile +echo "DEST_DIR = $RPM_BUILD_ROOT" >> Makefile +echo "WORD_LIST_COMPRESS = word-list-compress" >> Makefile +echo "dictdir = ${RPM_BUILD_ROOT}%{_libdir}/aspell" >> Makefile +echo "datadir = ${RPM_BUILD_ROOT}%{_datadir}/aspell" >> Makefile +cat Makefile.pre >> Makefile +make + +%install +make install + +%clean +%clean_buildroot + +%files +%defattr(-,root,root) + +%{_libdir}/aspell/* +%{_datadir}/aspell/* + +%changelog +* Mon Sep 27 2004 Gerald Dachs 0.51-1gd +- backported from tes 2.0 to ts 1.1 contrib + +* Tue Mar 02 2004 Elliot Lee +- rebuilt + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Mon Jun 23 2003 Adrian Havill 0.50-5 +- data files are arch dependent + +* Fri Jun 20 2003 Adrian Havill 0.50-4 +- first build for new aspell (0.50) From svn at tinysofa.org Wed Sep 29 19:04:48 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 29 Sep 2004 15:04:48 -0400 (EDT) Subject: [tinysofa-svn] r4881 - in contrib/1.1/dnsmasq/current: sources specs Message-ID: <20040929190448.497FE344187@minbar.tinysofa.org> Author: gda Date: 2004-09-29 15:04:47 -0400 (Wed, 29 Sep 2004) New Revision: 4881 Added: contrib/1.1/dnsmasq/current/sources/dnsmasq-2.15.tar.gz Removed: contrib/1.1/dnsmasq/current/sources/dnsmasq-2.14.tar.gz Modified: contrib/1.1/dnsmasq/current/specs/dnsmasq.spec Log: new upstream Deleted: contrib/1.1/dnsmasq/current/sources/dnsmasq-2.14.tar.gz =================================================================== (Binary files differ) Added: contrib/1.1/dnsmasq/current/sources/dnsmasq-2.15.tar.gz =================================================================== (Binary files differ) Property changes on: contrib/1.1/dnsmasq/current/sources/dnsmasq-2.15.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: contrib/1.1/dnsmasq/current/specs/dnsmasq.spec =================================================================== --- contrib/1.1/dnsmasq/current/specs/dnsmasq.spec 2004-09-29 18:28:25 UTC (rev 4880) +++ contrib/1.1/dnsmasq/current/specs/dnsmasq.spec 2004-09-29 19:04:47 UTC (rev 4881) @@ -1,6 +1,6 @@ Summary: A lightweight caching nameserver Name: dnsmasq -Version: 2.14 +Version: 2.15 Release: 1gd Group: Network/Services Source: http://www.thekelleys.org.uk/dnsmasq/%{name}-%{version}.tar.gz @@ -63,6 +63,9 @@ %changelog +* Wed Sep 29 2004 Gerald Dachs 2.15-1gd +- new upstream version + * Sun Sep 19 2004 Gerald Dachs 2.14-1gd - new upstream version From svn at tinysofa.org Wed Sep 29 19:17:36 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 29 Sep 2004 15:17:36 -0400 (EDT) Subject: [tinysofa-svn] r4882 - contrib/1.1/gtk12+/current/specs Message-ID: <20040929191736.75F0A344187@minbar.tinysofa.org> Author: jh Date: 2004-09-29 15:17:35 -0400 (Wed, 29 Sep 2004) New Revision: 4882 Modified: contrib/1.1/gtk12+/current/specs/gtk12+.spec Log: - make -devel require xorg-x11-devel Modified: contrib/1.1/gtk12+/current/specs/gtk12+.spec =================================================================== --- contrib/1.1/gtk12+/current/specs/gtk12+.spec 2004-09-29 19:04:47 UTC (rev 4881) +++ contrib/1.1/gtk12+/current/specs/gtk12+.spec 2004-09-29 19:17:35 UTC (rev 4882) @@ -1,7 +1,7 @@ Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X. Name: gtk12+ Version: 1.2.10 -Release: 4jh +Release: 5jh License: LGPL Group: contrib Source: ftp://ftp.gimp.org/pub/gtk/v1.2/gtk+-%{version}.tar.gz @@ -73,7 +73,7 @@ Summary: Development tools for GTK+ (GIMP ToolKit) applications. Group: contrib Provides: gtk+-devel = %{version} -Requires: %{name} = %{version}-%{release} glib12-devel +Requires: %{name} = %{version}-%{release} glib12-devel xorg-x11-devel %description devel The libgtk+1.2-devel package contains the static libraries and header files @@ -161,6 +161,9 @@ %changelog +* Wed Sep 29 2004 Jaakko Heinonen 1.2.10-5jh +- make -devel require xorg-x11-devel + * Mon Sep 20 2004 Jaakko Heinonen 1.2.10-4jh - enable native locale and xinput - fix various library permissions From svn at tinysofa.org Wed Sep 29 20:11:09 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Wed, 29 Sep 2004 16:11:09 -0400 (EDT) Subject: [tinysofa-svn] r4883 - contrib/1.1/aspell/current/specs Message-ID: <20040929201109.5B303344187@minbar.tinysofa.org> Author: gda Date: 2004-09-29 16:11:08 -0400 (Wed, 29 Sep 2004) New Revision: 4883 Modified: contrib/1.1/aspell/current/specs/aspell.spec Log: removed requirement Modified: contrib/1.1/aspell/current/specs/aspell.spec =================================================================== --- contrib/1.1/aspell/current/specs/aspell.spec 2004-09-29 19:17:35 UTC (rev 4882) +++ contrib/1.1/aspell/current/specs/aspell.spec 2004-09-29 20:11:08 UTC (rev 4883) @@ -1,7 +1,7 @@ Summary: A spelling checker. Name: aspell Version: 0.50.5 -Release: 1gd +Release: 2gd License: LGPL Group: contrib URL: http://aspell.net/ @@ -9,7 +9,6 @@ Patch0: aspell-0.50.3.prefix.patch Patch1: aspell-0.50.3-gcc33.patch Buildrequires: gcc-c++ -Requires: aspell-en BuildRoot: %{_tmppath}/%{name}-%{version}-root Provides: pspell @@ -81,6 +80,9 @@ %{_libdir}/lib*spell.so %changelog +* Wed Sep 29 2004 Gerald Dachs 0.50.5-2gd +- removed requirement for aspell-en + * Mon Sep 27 2004 Gerald Dachs 0.50.5-1gd - backported from tes 2.0 for ts 1.1 contrib From svn at tinysofa.org Thu Sep 30 05:43:21 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 01:43:21 -0400 (EDT) Subject: [tinysofa-svn] r4884 - in tinysofa/releases/1.1/gnupg/current: sources specs Message-ID: <20040930054321.09C98344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 01:43:19 -0400 (Thu, 30 Sep 2004) New Revision: 4884 Added: tinysofa/releases/1.1/gnupg/current/sources/gnupg-1.2.6.tar.bz2 Removed: tinysofa/releases/1.1/gnupg/current/sources/gnupg-1.2.4.tar.bz2 Modified: tinysofa/releases/1.1/gnupg/current/specs/gnupg.spec Log: - 1.2.6 - spec cleanup Deleted: tinysofa/releases/1.1/gnupg/current/sources/gnupg-1.2.4.tar.bz2 =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/gnupg/current/sources/gnupg-1.2.6.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/gnupg/current/sources/gnupg-1.2.6.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/gnupg/current/specs/gnupg.spec =================================================================== --- tinysofa/releases/1.1/gnupg/current/specs/gnupg.spec 2004-09-29 20:11:08 UTC (rev 4883) +++ tinysofa/releases/1.1/gnupg/current/specs/gnupg.spec 2004-09-30 05:43:19 UTC (rev 4884) @@ -1,28 +1,29 @@ -Summary: GPL public key crypto +Summary: A GNU utility for secure communication and data storage. Name: gnupg -Version: 1.2.4 -Release: 6ts +Version: 1.2.6 +Release: 1jh License: GPL -Group: extra +Group: main Source: http://ftp.gnupg.org/gcrypt/%{name}/%{name}-%{version}.tar.bz2 Source1: tinysofa.pub.gpg Source2: gnupg-index.html URL: http://www.gnupg.org Provides: gpg openpgp gnupg -Prereq: zlib, htmlinfo -BuildRequires: texinfo -BuildRequires: openldap-devel -BuildRoot: %{_tmppath}/%{name}-root +BuildRequires: openldap-devel zlib-devel +%info_requires +BuildRoot: %{_tmppath}/%{name}-%{version}-root %description -GnuPG is a complete and free replacement for PGP. Because it does not -use IDEA it can be used without any restrictions. GnuPG is in compliance -with the OpenPGP specification (RFC2440). +GnuPG (GNU Privacy Guard) is a GNU utility for encrypting data and +creating digital signatures. GnuPG has advanced key management +capabilities and is compliant with the proposed OpenPGP Internet +standard described in RFC2440. Since GnuPG doesn't use any patented +algorithm, it is not compatible with any version of PGP2 (PGP2.x uses +only IDEA for symmetric-key encryption, which is patented worldwide). - %package utils Summary: some utilities to get gpg-keys -Group: main +Group: extra Requires: gnupg = %{version}-%{release} Requires: openldap-libs Requires: perl @@ -39,61 +40,57 @@ %build [ -n "$LINGUAS" ] && unset LINGUAS +CFLAGS="$RPM_OPT_FLAGS -fPIE" ; export CFLAGS +LDFLAGS="$RPM_OPT_FLAGS -pie" ; export LDFLAGS + %configure \ - --program-prefix='' \ - --libexecdir="%{_libdir}/%{name}" \ - --with-mailprog=/usr/sbin/sendmail \ - --disable-nls - -make + --libexecdir="%{_libdir}" \ + --with-mailprog=/usr/sbin/sendmail \ + --disable-nls \ + --with-zlib + +%make cd doc -makeinfo --html --no-split gpg.texi -makeinfo --html --no-split gpgv.texi +%makeinfo_html gpg.texi +%makeinfo_html gpgv.texi %install %makeinstall install-strip libexecdir="$RPM_BUILD_ROOT/%{_libdir}/%{name}" -install -m755 -d $RPM_BUILD_ROOT/%{_libdir}/%{name} -install -m644 %SOURCE1 $RPM_BUILD_ROOT/%{_libdir}/%{name}/tinysofa.pub.gpg -install -m755 -d $RPM_BUILD_ROOT/usr/share/html/%{name} -install -m644 %SOURCE2 $RPM_BUILD_ROOT/usr/share/html/%{name}/ -install -m644 doc/gpg.html $RPM_BUILD_ROOT/usr/share/html/%{name}/ -install -m644 doc/gpgv.html $RPM_BUILD_ROOT/usr/share/html/%{name}/ +install -m 755 -d $RPM_BUILD_ROOT/%{_libdir}/%{name} \ + $RPM_BUILD_ROOT%{_htmldir}/%{name} +install -m 644 %SOURCE1 $RPM_BUILD_ROOT/%{_libdir}/%{name}/tinysofa.pub.gpg +install -m 644 %SOURCE2 doc/gpg.html doc/gpgv.html \ + $RPM_BUILD_ROOT%{_htmldir}/%{name} -mv $RPM_BUILD_ROOT/usr/share/gnupg/faq.html $RPM_BUILD_ROOT/usr/share/html/%{name}/ -rm -rf $RPM_BUILD_ROOT/usr/share/gnupg/FAQ -rm -rf $RPM_BUILD_ROOT/usr/share/info +mv $RPM_BUILD_ROOT/%{_datadir}/%{name}/faq.html \ + $RPM_BUILD_ROOT/%{_htmldir}/%{name}/ +rm -f $RPM_BUILD_ROOT/%{_datadir}/%{name}/FAQ +%nuke_info + %post -# Dummy gpg-run to create directory if new install... Silly but nessecary. -/usr/bin/gpg >/dev/null &1 +export HOME=/root # Import the tinysofa-sign-key -/usr/bin/gpg --import %{_libdir}/%{name}/tinysofa.pub.gpg >/dev/null 2>&1 /dev/null 2>&1 1.2.6-1jh +- 1.2.6 +- spec cleanup + * Thu Aug 05 2004 tsintegrate 1.2.4-6ts - current (1.2.4-6jh) integrated as 1.2.4-6ts for release 1.1 From svn at tinysofa.org Thu Sep 30 07:51:42 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 03:51:42 -0400 (EDT) Subject: [tinysofa-svn] r4885 - in tinysofa/releases/1.1/bind/current: sources specs Message-ID: <20040930075142.BFFED344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 03:51:41 -0400 (Thu, 30 Sep 2004) New Revision: 4885 Added: tinysofa/releases/1.1/bind/current/sources/bind-9.2.4.tar.gz tinysofa/releases/1.1/bind/current/sources/bind-9.2.4.tar.gz.asc tinysofa/releases/1.1/bind/current/sources/bind-9.2.4rc7-pie.patch Removed: tinysofa/releases/1.1/bind/current/sources/bind-9.2.2-pie.patch tinysofa/releases/1.1/bind/current/sources/bind-9.2.3.tar.gz tinysofa/releases/1.1/bind/current/sources/bind-9.2.3.tar.gz.asc tinysofa/releases/1.1/bind/current/sources/named.conf.5.gz tinysofa/releases/1.1/bind/current/sources/nslookup.8.gz Modified: tinysofa/releases/1.1/bind/current/specs/bind.spec Log: - 9.2.4 Deleted: tinysofa/releases/1.1/bind/current/sources/bind-9.2.2-pie.patch =================================================================== --- tinysofa/releases/1.1/bind/current/sources/bind-9.2.2-pie.patch 2004-09-30 05:43:19 UTC (rev 4884) +++ tinysofa/releases/1.1/bind/current/sources/bind-9.2.2-pie.patch 2004-09-30 07:51:41 UTC (rev 4885) @@ -1,29 +0,0 @@ ---- bind-9.2.2.P3/bin/named/unix/Makefile.in.pie 2003-10-27 15:20:53.000000000 -0800 -+++ bind-9.2.2.P3/bin/named/unix/Makefile.in 2003-10-27 15:21:13.000000000 -0800 -@@ -33,4 +33,6 @@ - - TARGETS = ${OBJS} - -+EXT_CFLAGS = -fPIE -+ - @BIND9_MAKE_RULES@ ---- bind-9.2.2.P3/bin/named/Makefile.in.pie 2001-05-31 17:45:00.000000000 -0700 -+++ bind-9.2.2.P3/bin/named/Makefile.in 2003-10-27 15:12:36.000000000 -0800 -@@ -87,6 +87,8 @@ - - MANOBJS = ${MANPAGES} ${HTMLPAGES} - -+EXT_CFLAGS = -fPIE -+ - @BIND9_MAKE_RULES@ - - main. at O@: main.c -@@ -100,7 +102,7 @@ - -c ${srcdir}/config.c - - named: ${OBJS} ${UOBJS} ${DEPLIBS} -- ${LIBTOOL} ${PURIFY} ${CC} ${CFLAGS} -o $@ ${OBJS} ${UOBJS} ${LIBS} -+ ${LIBTOOL} ${PURIFY} ${CC} ${CFLAGS} -pie -o $@ ${OBJS} ${UOBJS} ${LIBS} - - lwresd: named - rm -f lwresd Deleted: tinysofa/releases/1.1/bind/current/sources/bind-9.2.3.tar.gz =================================================================== (Binary files differ) Deleted: tinysofa/releases/1.1/bind/current/sources/bind-9.2.3.tar.gz.asc =================================================================== --- tinysofa/releases/1.1/bind/current/sources/bind-9.2.3.tar.gz.asc 2004-09-30 05:43:19 UTC (rev 4884) +++ tinysofa/releases/1.1/bind/current/sources/bind-9.2.3.tar.gz.asc 2004-09-30 07:51:41 UTC (rev 4885) @@ -1,10 +0,0 @@ ------BEGIN PGP SIGNATURE----- -Version: PGPfreeware 5.0i for non-commercial use -MessageID: w1uZMMeVgYQclTpHrHPeNPzWCMjSEKsM - -iQCVAwUAP4+YF22DN4pRurLtAQE65gQAlnYY7xM+4w5w1nT5R4V7dkuai/ZCZj/6 -8sOXAgMgiYLxxa3JDACXEft7HQUXpILe3Glrga/Xx23VkQvC4VOSISzcY2SrOMhH -mhoZL8cOXXEFLo0RpweKMDN+4BDTo0MZ3CNorGivKq8LX6H8BshcPRO3c9Uq34j2 -UZ0M26gTF+c= -=395h ------END PGP SIGNATURE----- Added: tinysofa/releases/1.1/bind/current/sources/bind-9.2.4.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/bind/current/sources/bind-9.2.4.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: tinysofa/releases/1.1/bind/current/sources/bind-9.2.4.tar.gz.asc =================================================================== --- tinysofa/releases/1.1/bind/current/sources/bind-9.2.4.tar.gz.asc 2004-09-30 05:43:19 UTC (rev 4884) +++ tinysofa/releases/1.1/bind/current/sources/bind-9.2.4.tar.gz.asc 2004-09-30 07:51:41 UTC (rev 4885) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.6 (Darwin) + +iD8DBQBBUaL8Z5EvUMN1X/cRApqTAJ9PfE0n7zw203iSzmvO+Opx27P9zACdEo3W +Hjy/2gayNoIzCpNrCNWGiE8= +=bhe3 +-----END PGP SIGNATURE----- Added: tinysofa/releases/1.1/bind/current/sources/bind-9.2.4rc7-pie.patch =================================================================== --- tinysofa/releases/1.1/bind/current/sources/bind-9.2.4rc7-pie.patch 2004-09-30 05:43:19 UTC (rev 4884) +++ tinysofa/releases/1.1/bind/current/sources/bind-9.2.4rc7-pie.patch 2004-09-30 07:51:41 UTC (rev 4885) @@ -0,0 +1,24 @@ +--- bind-9.2.4rc7/bin/named/unix/Makefile.in.pie 2004-03-09 01:09:23.000000000 -0500 ++++ bind-9.2.4rc7/bin/named/unix/Makefile.in 2004-08-19 12:04:00.226481000 -0400 +@@ -33,4 +33,6 @@ + + TARGETS = ${OBJS} + ++EXT_CFLAGS = -fPIE ++ + @BIND9_MAKE_RULES@ +--- bind-9.2.4rc7/bin/named/Makefile.in.pie 2004-07-20 03:00:10.000000000 -0400 ++++ bind-9.2.4rc7/bin/named/Makefile.in 2004-08-19 12:16:50.465471000 -0400 +@@ -87,8 +87,12 @@ + + MANOBJS = ${MANPAGES} ${HTMLPAGES} + ++EXT_CFLAGS = -fPIE ++ + @BIND9_MAKE_RULES@ + ++LDFLAGS += -pie ++ + main. at O@: main.c + ${LIBTOOL_MODE_COMPILE} ${CC} ${ALL_CFLAGS} -DVERSION=\"${VERSION}\" \ + -DNS_LOCALSTATEDIR=\"${localstatedir}\" \ Deleted: tinysofa/releases/1.1/bind/current/sources/named.conf.5.gz =================================================================== (Binary files differ) Deleted: tinysofa/releases/1.1/bind/current/sources/nslookup.8.gz =================================================================== (Binary files differ) Modified: tinysofa/releases/1.1/bind/current/specs/bind.spec =================================================================== --- tinysofa/releases/1.1/bind/current/specs/bind.spec 2004-09-30 05:43:19 UTC (rev 4884) +++ tinysofa/releases/1.1/bind/current/specs/bind.spec 2004-09-30 07:51:41 UTC (rev 4885) @@ -1,8 +1,8 @@ %define jail /var/lib/named Name: bind -Version: 9.2.3 -Release: 13ts +Version: 9.2.4 +Release: 1jh Epoch: 0 Summary: A chrooted DNS (Domain Name System) server Summary(pt_BR): BIND - Servidor de nomes DNS chrooted @@ -14,9 +14,7 @@ Source1: ftp://ftp.isc.org/isc/bind9/%{version}/%{name}-%{version}.tar.gz.asc Source2: named.conf.non-root.example Source3: named.sysconfig -Source4: nslookup.8.gz #Source5: resolver.5.gz -Source6: named.conf.5.gz Source7: named.conf.chroot #Source8: named.sysconfig Source9: named.ca @@ -25,7 +23,7 @@ Patch: %{name}-9.1.1-key.patch Patch1: %{name}-9.2.0.varrun.patch Patch2: bind-9.2.3-SO_BSDCOMPAT.patch -Patch3: bind-9.2.2-pie.patch +Patch3: bind-9.2.4rc7-pie.patch #Requires: glibc-iconv # this requirement if because of the /etc/sysconfig/syslog file # which should have a ADD_SOCKET entry @@ -199,10 +197,10 @@ install -m 644 bin/*/*.1 %{buildroot}%{_mandir}/man1/ install -m 644 bin/*/*.8 %{buildroot}%{_mandir}/man8/ install -m 644 lib/lwres/man/*.3 %{buildroot}%{_mandir}/man3/ -install -m 644 %{_sourcedir}/nslookup.8.gz %{buildroot}%{_mandir}/man8/ -#install -m 644 %{_sourcedir}/resolver.5.gz %{buildroot}%{_mandir}/man5/ -install -m 644 %{_sourcedir}/named.conf.5.gz %{buildroot}%{_mandir}/man5/ +# 9.2.4 installs named.conf.5 to wrong location +mv %{buildroot}%{_mandir}/man8/named.conf.5 %{buildroot}%{_mandir}/man5 + # - compress some documentation, do not fail if there are # no *.txt files (like when rpm -ba --without build) bzip2 -9 doc/rfc/*.txt || : @@ -448,9 +446,9 @@ %{_bindir}/nsupdate %{_sbindir}/nanny.pl %defattr(644,root,root) +%{_mandir}/man1/nslookup.1* %{_mandir}/man1/dig.1* %{_mandir}/man1/host.1* -%{_mandir}/man8/nslookup.8* %{_mandir}/man8/nsupdate.8* %files devel @@ -484,6 +482,9 @@ %changelog +* Thu Sep 30 2004 Jaakko Heinonen 9.2.4-1jh +- 9.2.4 + * Fri Aug 20 2004 tsintegrate 9.2.3-13ts - current (9.2.3-13jh) integrated as 9.2.3-13ts for release 1.1 From svn at tinysofa.org Thu Sep 30 10:19:30 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 06:19:30 -0400 (EDT) Subject: [tinysofa-svn] r4886 - in tinysofa/releases/1.1/glib/current: sources specs Message-ID: <20040930101930.21732344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 06:19:28 -0400 (Thu, 30 Sep 2004) New Revision: 4886 Added: tinysofa/releases/1.1/glib/current/sources/glib-2.4.6.tar.bz2 tinysofa/releases/1.1/glib/current/sources/glib2.csh tinysofa/releases/1.1/glib/current/sources/glib2.sh Removed: tinysofa/releases/1.1/glib/current/sources/glib-2.4.2.tar.bz2 Modified: tinysofa/releases/1.1/glib/current/specs/glib.spec Log: - new upstream - new spec file Deleted: tinysofa/releases/1.1/glib/current/sources/glib-2.4.2.tar.bz2 =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/glib/current/sources/glib-2.4.6.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/glib/current/sources/glib-2.4.6.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: tinysofa/releases/1.1/glib/current/sources/glib2.csh =================================================================== --- tinysofa/releases/1.1/glib/current/sources/glib2.csh 2004-09-30 07:51:41 UTC (rev 4885) +++ tinysofa/releases/1.1/glib/current/sources/glib2.csh 2004-09-30 10:19:28 UTC (rev 4886) @@ -0,0 +1,6 @@ + +## This caused GLib2 applications to convert filenames from +## locale encoding to UTF-8. If the locale encoding is already +## UTF-8 then it makes no difference. + +setenv G_BROKEN_FILENAMES 1 Added: tinysofa/releases/1.1/glib/current/sources/glib2.sh =================================================================== --- tinysofa/releases/1.1/glib/current/sources/glib2.sh 2004-09-30 07:51:41 UTC (rev 4885) +++ tinysofa/releases/1.1/glib/current/sources/glib2.sh 2004-09-30 10:19:28 UTC (rev 4886) @@ -0,0 +1,5 @@ +## This caused GLib2 applications to convert filenames from +## locale encoding to UTF-8. If the locale encoding is already +## UTF-8 then it makes no difference. + +export G_BROKEN_FILENAMES=1 \ No newline at end of file Modified: tinysofa/releases/1.1/glib/current/specs/glib.spec =================================================================== --- tinysofa/releases/1.1/glib/current/specs/glib.spec 2004-09-30 07:51:41 UTC (rev 4885) +++ tinysofa/releases/1.1/glib/current/specs/glib.spec 2004-09-30 10:19:28 UTC (rev 4886) @@ -1,128 +1,346 @@ Summary: A library of handy utility functions. Name: glib -Version: 2.4.2 -Release: 2ts +Version: 2.4.6 +Release: 1jh License: LGPL Group: main -Source: ftp://ftp.gtk.org/pub/gtk/v2.4/glib-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-root -URL: http://www.gtk.org -BuildRequires: pkgconfig gettext libstdc++-devel gcc-c++ +Source: glib-%{version}.tar.bz2 +Source2: glib2.sh +Source3: glib2.csh +Conflicts: libgnomeui <= 2.2.0 +BuildRoot: %{_tmppath}/%{name}-%{version}-root +BuildRequires: pkgconfig >= 0.8 +BuildRequires: gettext +BuildRequires: libstdc++-devel gcc-c++ +URL: http://www.gtk.org/ +Provides: glib2 = %{version} -%description -GLib is a handy library of utility functions. This C library is -designed to solve some portability problems and provide other useful -functionality which most programs require. +%description +GLib is the low-level core library that forms the basis +for projects such as GTK+ and GNOME. It provides data structure +handling for C, portability wrappers, and interfaces for such runtime +functionality as an event loop, threads, dynamic loading, and anobject system. -GLib is used by GDK, GTK+ and many applications. You should install -th glib package because many of your applications will depend on this -library. +This package provides version 2 of GLib. %package devel -Summary: The GIMP ToolKit (GTK+) and GIMP Drawing Kit (GDK) support library. +Summary: The GIMP ToolKit (GTK+) and GIMP Drawing Kit (GDK) support library Group: development -Requires: %{name} = %{version}-%{release} +Requires: pkgconfig >= 1:0.8 +Requires: %{name} = %{version} +Conflicts: glib-devel <= 1:1.2.8 +Provides: glib2-devel = %{version} %description devel -The glib-devel package includes the static libraries and header files -for the support library for the GIMP's X libraries (GTK+ and GDK), -which are available as public libraries. +The glib2-devel package includes the header files and static +libararies for version 2 of the GLib library. -Install glib-devel if you want to develop programs which will use -GLib. - %prep -%setup -q +%setup -q -n glib-%{version} %build -%configure --enable-static=yes +for i in config.guess config.sub ; do + test -f /usr/share/libtool/$i && cp /usr/share/libtool/$i . +done +%configure --disable-gtk-doc --enable-static %make +# test-thread fails on ia64: http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=116829 +%ifnarch ia64 s390 s390x +make check +%endif + %install +mkdir -p $RPM_BUILD_ROOT%{_bindir} %makeinstall -rm -rf $RPM_BUILD_ROOT/%{_datadir}/gtk-doc +## glib2.sh and glib2.csh +./mkinstalldirs $RPM_BUILD_ROOT%{_sysconfdir}/profile.d +install -m 755 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/%{name}.sh +install -m 755 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/%{name}.csh +rm -f $RPM_BUILD_ROOT%{_libdir}/*.la +%find_lang glib20 + + %clean -%clean_buildroot +rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig - + #-f glib20.lang %files %defattr(-, root, root) %doc AUTHORS COPYING ChangeLog NEWS README -%{_libdir}/lib*.so.* +%{_libdir}/libglib-2.0.so.* +%{_libdir}/libgthread-2.0.so.* +%{_libdir}/libgmodule-2.0.so.* +%{_libdir}/libgobject-2.0.so.* +%{_sysconfdir}/profile.d/* +%exclude %{_datadir}/locale - %files devel %defattr(-, root, root) %{_libdir}/lib*.so -%{_libdir}/*a +%{_libdir}/lib*.a %{_libdir}/glib-2.0 -%{_libdir}/pkgconfig/* %{_includedir}/* -%{_datadir}/glib-2.0/* -%{_datadir}/locale/*/*/* -%{_mandir}/man1/* %{_datadir}/aclocal/* +%{_datadir}/gtk-doc/ +%{_libdir}/pkgconfig/* +%{_datadir}/glib-2.0 %{_bindir}/* +%{_mandir}/man1/* %changelog -* Thu Aug 05 2004 tsintegrate 2.4.2-2ts -- current (2.4.2-2jh) integrated as 2.4.2-2ts for release 1.1 +* Fri Aug 13 2004 Matthias Clasen - 2.4.6-1 +- Update to 2.4.6 -* Wed May 19 2004 tsintegrate 2.4.1-1ts -- current (2.4.1-1ok) integrated as 2.4.1-1ts for release 1.0-U1 +* Sun Aug 1 2004 ALan Cox - 2.4.5-2 +- Fixed BuildRoot to use % macro not hardcode /var/tmp -* Thu May 13 2004 Omar Kilani 2.4.1-1ok -- New Upstream. +* Fri Jul 30 2004 Matthias Clasen - 2.4.5-1 +- Update to 2.4.5 +- Escape macros in changelog section -* Tue May 11 2004 Omar Kilani -- Add BuildRequires gettext gcc-c++-devel. +* Fri Jul 09 2004 Matthias Clasen - 2.4.4-1 +- Update to 2.4.4 -* Thu Mar 25 2004 Omar Kilani 2.4.0-1ts -- New upstream. +* Mon Jun 21 2004 Matthias Clasen - 2.4.2-1 +- Require gettext at build time (#125320) +- Update to 2.4.2 (#125736) -* Wed Jun 18 2003 Erlend Midttun 2.0.6-4tr -- Big rebuild +* Tue Jun 15 2004 Elliot Lee +- rebuilt -* Tue Apr 22 2003 Christian H. Toldnes 2.0.6-3ct -- Build static libraries, we dont want glib in base because of passwd... - :) +* Wed May 19 2004 Matthias Clasen 2.4.1-1 +- Update to 2.4.1 -* Mon Mar 24 2003 Erlend Midttun 2.0.6-2em -- Rebuilt against glibc 2.3.2. +* Tue Mar 16 2004 Owen Taylor 2.4.0-1 +- Update to 2.4.0 -* Fri Sep 20 2002 Gerald Dachs 2.0.6-1gd -- New upstream version: 2.0.6 +* Wed Mar 10 2004 Mark McLoughlin 2.3.6-1 +- Update to 2.3.6 +- Remove gatomic build fix -* Fri Sep 20 2002 Christian H. Toldnes 2.0.0-2ct -- Package cleanup to follow policy +* Tue Mar 02 2004 Elliot Lee +- rebuilt -* Thu Sep 19 2002 Gerald Dachs 2.0.0-1gd -- New upstream version: 2.0.0 +* Tue Mar 02 2004 Mark McLoughlin 2.3.5-1 +- Update to 2.3.5 +- Fix build on ppc64 +- Disable make check on s390 as well - test-thread failing -* Tue Jun 5 2001 Oystein Viggen -- New upstream version: 1.2.10 +* Wed Feb 25 2004 Mark McLoughlin 2.3.3-1 +- Update to 2.3.3 -* Fri Sep 15 2000 Per Ivar Paulsen -- Picked up 1.2.8 +* Fri Feb 13 2004 Elliot Lee +- rebuilt -* Thu May 11 2000 Oystein Viggen -- version 1.2.7 +* Fri Jan 23 2004 Jonathan Blandford 2.3.2-1 +- new version +- remove 'make check' temporarily -* Wed Mar 29 2000 Lars Gaarden -- Moved man pages to /usr/share, FHS. +* Mon Sep 8 2003 Owen Taylor 2.2.3-2.0 +- Conflict with libgnomeui <= 2.2.0 (#83581, G?ran Uddeborg) +* Tue Aug 26 2003 Owen Taylor 2.2.3-1.1 +- Version 2.2.3 + +* Tue Jul 8 2003 Owen Taylor 2.2.2-2.0 +- Bump for rebuild + +* Sun Jun 8 2003 Owen Taylor +- Version 2.2.2 + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Tue Jun 3 2003 Jeff Johnson +- add explicit epoch's where needed. + +* Sun Feb 2 2003 Owen Taylor +- Version 2.2.1 + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Thu Jan 9 2003 Owen Taylor +- Add static libraries to build (#78685, Bernd Kischnick) +- Bump-and-rebuild for new redhat-rpm-config + +* Fri Dec 20 2002 Owen Taylor +- Version 2.2.0 +- Add make check to the build process + +* Mon Dec 16 2002 Owen Taylor +- Version 2.1.5 + +* Wed Dec 11 2002 Owen Taylor +- Version 2.1.4 + +* Mon Dec 2 2002 Owen Taylor +- Version 2.1.3 + +* Mon Oct 07 2002 Havoc Pennington +- Try rebuilding with new arches + +* Tue Aug 13 2002 Havoc Pennington +- install glib2.sh and glib2.csh to set G_BROKEN_FILENAMES +- blow away unpackaged files in install + +* Thu Aug 8 2002 Owen Taylor +- Version 2.0.6 +- Remove fixed-ltmain.sh; shouldn't be needed any more. + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Sun Jun 16 2002 Havoc Pennington +- 2.0.4 + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Wed Apr 24 2002 Havoc Pennington + - rebuild in different environment + +* Mon Apr 15 2002 Owen Taylor +- Fix missing .po files (#63336) + +* Wed Apr 3 2002 Alex Larsson +- Update to version 2.0.1 + +* Fri Mar 8 2002 Owen Taylor +- Version 2.0.0 + +* Mon Feb 25 2002 Alex Larsson +- Update to 1.3.15 + +* Thu Feb 21 2002 Alex Larsson +- Bump for rebuild + +* Mon Feb 18 2002 Alex Larsson +- Update to 1.3.14 + +* Fri Feb 15 2002 Havoc Pennington +- add horrible buildrequires hack + +* Thu Feb 14 2002 Havoc Pennington +- 1.3.13.91 cvs snap + +* Mon Feb 11 2002 Matt Wilson +- rebuild from CVS snapshot +- use setup -q + +* Thu Jan 31 2002 Jeremy Katz +- rebuild + +* Tue Jan 29 2002 Owen Taylor +- 1.3.13 + +* Tue Jan 22 2002 Havoc Pennington +- attempting rebuild in rawhide + +* Wed Jan 2 2002 Havoc Pennington +- remove 64-bit patch now upstream, 1.3.12.90 + +* Mon Nov 26 2001 Havoc Pennington +- add some missing files to file list, langify + +* Sun Nov 25 2001 Havoc Pennington +- add temporary patch to fix GTypeFundamentals on 64-bit + +* Sun Nov 25 2001 Havoc Pennington +- Version 1.3.11 + +* Thu Oct 25 2001 Owen Taylor +- Version 1.3.10 + +* Tue Sep 25 2001 Owen Taylor +- Version 1.3.9 + +* Wed Sep 19 2001 Owen Taylor +- Version 1.3.8 + +* Fri Jul 20 2001 Owen Taylor +- Make -devel package require main package (#45388) +- Fix description and summary +- Configure with --disable-gtk-doc + +* Wed Jun 20 2001 Florian La Roche +- add some portability fixes needed at least on s390 +- copy config.{guess,sub} instead of calling libtoolize + +* Wed Jun 13 2001 Havoc Pennington +- try a new glib tarball with Makefile changes to work around + libtool linking to installed .la files +- make -devel require pkgconfig + +* Tue Jun 12 2001 Havoc Pennington +- either libtool or the bad libtool hacks caused link + against glib-gobject 1.3.2, rebuild + +* Tue Jun 12 2001 Havoc Pennington +- 1.3.6 +- bad libtool workarounds + +* Fri May 04 2001 Owen Taylor +- 1.3.5, rename to glib2 + +* Fri Nov 17 2000 Owen Taylor +- Final 1.3.2 + +* Mon Nov 13 2000 Owen Taylor +- Version 1.3.2pre1 +- Remove pkgconfig + +* Sun Aug 13 2000 Owen Taylor +- Call 1.3.1b instead of snap... the snap* naming doesn't + order correctly. + +* Thu Aug 10 2000 Havoc Pennington +- new snapshot with fixed .pc files + +* Thu Aug 10 2000 Havoc Pennington +- include .pc files in file list + +* Thu Aug 10 2000 Havoc Pennington +- Include pkg-config +- Upgrade to a glib CVS snapshot + +* Wed Jul 19 2000 Jakub Jelinek +- rebuild to cope with glibc locale binary incompatibility + +* Fri Jul 14 2000 Owen Taylor +- Remove glib-config.1 manpage from build since + it conflicts with glib-devel. When we go to + glib glib1.2 setup, we should add it back + +* Fri Jul 07 2000 Owen Taylor +- Version 1.3.1 +- Move back to standard %%{prefix} + +* Thu Jun 8 2000 Owen Taylor +- Rebuild in /opt/gtk-beta + +* Tue May 30 2000 Owen Taylor +- New version (adds gobject) + +* Wed Apr 25 2000 Owen Taylor +- Don't blow away /etc/ld.so.conf (sorry!) + +* Tue Apr 24 2000 Owen Taylor +- Snapshot RPM for Pango testing + * Fri Feb 04 2000 Owen Taylor - Added fixes from stable branch of CVS @@ -151,7 +369,7 @@ - new description tags * Sun Feb 21 1999 Michael Fulbright -- removed libtoolize from %build +- removed libtoolize from %%build * Thu Feb 11 1999 Michael Fulbright - added libgthread to file list @@ -173,3 +391,4 @@ * Mon Apr 13 1998 Marc Ewing - Split out glib package + From svn at tinysofa.org Thu Sep 30 12:12:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 08:12:28 -0400 (EDT) Subject: [tinysofa-svn] r4887 - in tinysofa/releases/1.1/libxml2/current: sources specs Message-ID: <20040930121228.53F20344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 08:12:27 -0400 (Thu, 30 Sep 2004) New Revision: 4887 Added: tinysofa/releases/1.1/libxml2/current/sources/libxml2-2.6.14.tar.gz Removed: tinysofa/releases/1.1/libxml2/current/sources/libxml2-2.6.9.tar.gz Modified: tinysofa/releases/1.1/libxml2/current/specs/libxml2.spec Log: - 2.6.14 - spec cleanup Added: tinysofa/releases/1.1/libxml2/current/sources/libxml2-2.6.14.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/libxml2/current/sources/libxml2-2.6.14.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Deleted: tinysofa/releases/1.1/libxml2/current/sources/libxml2-2.6.9.tar.gz =================================================================== (Binary files differ) Modified: tinysofa/releases/1.1/libxml2/current/specs/libxml2.spec =================================================================== --- tinysofa/releases/1.1/libxml2/current/specs/libxml2.spec 2004-09-30 10:19:28 UTC (rev 4886) +++ tinysofa/releases/1.1/libxml2/current/specs/libxml2.spec 2004-09-30 12:12:27 UTC (rev 4887) @@ -1,11 +1,11 @@ Summary: Library providing XML and HTML support Name: libxml2 -Version: 2.6.9 -Release: 2ts +Version: 2.6.14 +Release: 1jh License: MIT Group: main Source: ftp://xmlsoft.org/libxml2-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-root +BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: python python-devel libtool libstdc++-devel gcc-c++ URL: http://xmlsoft.org/ @@ -23,7 +23,7 @@ %package devel Summary: Libraries, includes, etc. to develop XML and HTML applications Group: development -Requires: libxml2 = %{version} +Requires: libxml2 = %{version}-%{release} Requires: zlib-devel %description devel @@ -41,7 +41,7 @@ %package python Summary: Python bindings for the libxml2 library Group: extra -Requires: libxml2 = %{version} +Requires: libxml2 = %{version}-%{release} Requires: python %description python @@ -57,45 +57,25 @@ %prep %setup -q + %build %configure -make -# LIBTOOL=/usr/bin/libtool +%make -%install -rm -fr %{buildroot} +%install %makeinstall -# -# this is a bit ugly but tries to generate the bindings for all versions -# of python installed -# -for i in %{_prefix}/include/python* -do - py_version=`echo $i | sed "s+%{_prefix}/include/python++"` - if test -x %{_prefix}/bin/python$py_version - then - echo generating bindings for Python $py_version - (cd python ; make clean ; \ - make PYTHON="%{_prefix}/bin/python$py_version" \ - PYTHON_INCLUDES="%{_prefix}/include/python$py_version" \ - PYTHON_VERSION="$py_version"; \ -%makeinstall PYTHON="%{_prefix}/bin/python$py_version" \ - PYTHON_INCLUDES="%{_prefix}/include/python$py_version" \ - PYTHON_VERSION="$py_version" ) - fi -done %clean -rm -fr %{buildroot} +%clean_buildroot -%post -/sbin/ldconfig -%postun -/sbin/ldconfig +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + + %files %defattr(-, root, root) @@ -105,8 +85,8 @@ %doc %{_mandir}/man3/libxml.3* %attr(755,root,root) %{_libdir}/lib*.so.* -%{_prefix}/bin/xmllint -%{_prefix}/bin/xmlcatalog +%{_bindir}/xmllint +%{_bindir}/xmlcatalog %files devel %defattr(-, root, root) @@ -119,9 +99,9 @@ %attr(755,root,root) %{_libdir}/lib*.so %attr(644,root,root) %{_libdir}/*a %{_libdir}/*.sh -%{_prefix}/include/* -%{_prefix}/bin/xml2-config -%{_prefix}/share/aclocal/libxml.m4 +%{_includedir}/* +%{_bindir}/xml2-config +%{_datadir}/aclocal/libxml.m4 %{_libdir}/pkgconfig/libxml-2.0.pc %files python %defattr(-, root, root) @@ -136,7 +116,12 @@ %doc doc/*.py %doc doc/python.html + %changelog +* Thu Sep 30 2004 Jaakko Heinonen 2.6.14-1jh +- 2.6.14 +- spec cleanup + * Thu Aug 05 2004 tsintegrate 2.6.9-2ts - current (2.6.9-2jh) integrated as 2.6.9-2ts for release 1.1 From svn at tinysofa.org Thu Sep 30 12:22:05 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 08:22:05 -0400 (EDT) Subject: [tinysofa-svn] r4888 - tinysofa/releases/1.1/openssl/current/specs Message-ID: <20040930122205.59EF5344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 08:22:04 -0400 (Thu, 30 Sep 2004) New Revision: 4888 Modified: tinysofa/releases/1.1/openssl/current/specs/openssl.spec Log: - exclude der_chop Modified: tinysofa/releases/1.1/openssl/current/specs/openssl.spec =================================================================== --- tinysofa/releases/1.1/openssl/current/specs/openssl.spec 2004-09-30 12:12:27 UTC (rev 4887) +++ tinysofa/releases/1.1/openssl/current/specs/openssl.spec 2004-09-30 12:22:04 UTC (rev 4888) @@ -232,7 +232,7 @@ %{_bindir}/c_info %{_bindir}/c_issuer %{_bindir}/c_name -%{_bindir}/der_chop +%exclude %{_bindir}/der_chop %{_bindir}/c_rehash %files devel From svn at tinysofa.org Thu Sep 30 12:25:40 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 08:25:40 -0400 (EDT) Subject: [tinysofa-svn] r4889 - tinysofa/releases/1.1/freetype/current/specs Message-ID: <20040930122540.78C8A344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 08:25:40 -0400 (Thu, 30 Sep 2004) New Revision: 4889 Modified: tinysofa/releases/1.1/freetype/current/specs/freetype.spec Log: %define with_xfree86 0 Modified: tinysofa/releases/1.1/freetype/current/specs/freetype.spec =================================================================== --- tinysofa/releases/1.1/freetype/current/specs/freetype.spec 2004-09-30 12:22:04 UTC (rev 4888) +++ tinysofa/releases/1.1/freetype/current/specs/freetype.spec 2004-09-30 12:25:40 UTC (rev 4889) @@ -6,7 +6,7 @@ %define ft1 freetype-pre1.4 -%{!?with_xfree86:%define with_xfree86 0} +%define with_xfree86 0 Summary: A free and portable TrueType font rendering engine. Name: freetype From svn at tinysofa.org Thu Sep 30 15:12:44 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 11:12:44 -0400 (EDT) Subject: [tinysofa-svn] r4890 - tinysofa/releases/1.1/iptables/current/specs Message-ID: <20040930151244.84396344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 11:12:43 -0400 (Thu, 30 Sep 2004) New Revision: 4890 Modified: tinysofa/releases/1.1/iptables/current/specs/iptables.spec Log: - fix library directory Modified: tinysofa/releases/1.1/iptables/current/specs/iptables.spec =================================================================== --- tinysofa/releases/1.1/iptables/current/specs/iptables.spec 2004-09-30 12:25:40 UTC (rev 4889) +++ tinysofa/releases/1.1/iptables/current/specs/iptables.spec 2004-09-30 15:12:43 UTC (rev 4890) @@ -49,36 +49,38 @@ %build OPT="$RPM_OPT_FLAGS %{?no_stack_protector}" perl -pi -e 's/_EXP//' Makefile -make COPT_FLAGS="$OPT" LIBDIR=/lib DO_IPV6=1 KERNEL_DIR=/usr +make \ + COPT_FLAGS="$OPT" \ + LIBDIR=/%{_lib} DO_IPV6=1 \ + KERNEL_DIR=/usr %install -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf "$RPM_BUILD_ROOT" make install install-devel \ DESTDIR=$RPM_BUILD_ROOT \ - BINDIR=/sbin LIBDIR=/lib \ + BINDIR=/sbin LIBDIR=/%{_lib} \ MANDIR=%{_mandir} \ - INCDIR=/usr/include DO_IPV6=1 + INCDIR=%{_includedir} DO_IPV6=1 # The sources mkdir -p $RPM_BUILD_ROOT/%{_initrddir} install -m 755 %{SOURCE1} $RPM_BUILD_ROOT/%{_initrddir}/iptables install -m 755 %{SOURCE2} $RPM_BUILD_ROOT/%{_initrddir}/iptables6 -mkdir -p $RPM_BUILD_ROOT/etc/sysconfig -install -m 644 %{SOURCE3} $RPM_BUILD_ROOT/etc/sysconfig/iptables -install -m 644 %{SOURCE4} $RPM_BUILD_ROOT/etc/sysconfig/iptables-modules-ipv4 -install -m 644 %{SOURCE5} $RPM_BUILD_ROOT/etc/sysconfig/iptables-modules-ipv6 +mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig +install -m 644 %{SOURCE3} $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/iptables +install -m 644 %{SOURCE4} $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/iptables-modules-ipv4 +install -m 644 %{SOURCE5} $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/iptables-modules-ipv6 %clean -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf "$RPM_BUILD_ROOT" +%clean_buildroot %files %defattr(-,root,root) -%config(noreplace) /etc/sysconfig/iptables -%config(noreplace) /etc/sysconfig/iptables-modules-ipv4 -%dir /lib/iptables +%config(noreplace) %{_sysconfdir}/sysconfig/iptables +%config(noreplace) %{_sysconfdir}/sysconfig/iptables-modules-ipv4 +%dir /%{_lib}/iptables %{_mandir}/*/iptables* /%{_initrddir}/iptables -/lib/iptables/libipt* +/%{_lib}/iptables/libipt* /sbin/iptables* %files ipv6 @@ -86,17 +88,20 @@ %config(noreplace) /etc/sysconfig/iptables-modules-ipv6 %{_mandir}/*/ip6tables* /%{_initrddir}/iptables6 -/lib/iptables/libip6t* +/%{_lib}/iptables/libip6t* /sbin/ip6tables* %files devel %defattr(-,root,root) %{_mandir}/man3/* -/usr/include/*.h -/lib/*.a +%{_includedir}/*.h +/%{_lib}/*.a %changelog +* Fri Sep 17 2004 Jaakko Heinonen +- fix library directory + * Thu Aug 05 2004 tsintegrate 1.2.10-2ts - current (1.2.10-2jh) integrated as 1.2.10-2ts for release 1.1 From svn at tinysofa.org Thu Sep 30 15:16:20 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 11:16:20 -0400 (EDT) Subject: [tinysofa-svn] r4891 - tinysofa/releases/1.1/tcpdump/current/specs Message-ID: <20040930151620.5DAC2344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 11:16:19 -0400 (Thu, 30 Sep 2004) New Revision: 4891 Modified: tinysofa/releases/1.1/tcpdump/current/specs/tcpdump.spec Log: - fix man page location Modified: tinysofa/releases/1.1/tcpdump/current/specs/tcpdump.spec =================================================================== --- tinysofa/releases/1.1/tcpdump/current/specs/tcpdump.spec 2004-09-30 15:12:43 UTC (rev 4890) +++ tinysofa/releases/1.1/tcpdump/current/specs/tcpdump.spec 2004-09-30 15:16:19 UTC (rev 4891) @@ -36,7 +36,7 @@ %{buildroot}%{_sbindir} install -m 755 -s tcpdump %{buildroot}%{_sbindir} -install -m 644 tcpdump.1 %{buildroot}%{_mandir}/man8 +install -m 644 tcpdump.1 %{buildroot}%{_mandir}/man8/tcpdump.8 %clean From svn at tinysofa.org Thu Sep 30 15:19:07 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 11:19:07 -0400 (EDT) Subject: [tinysofa-svn] r4892 - in tinysofa/releases/1.1/zlib/current: sources specs Message-ID: <20040930151907.04C37344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 11:19:06 -0400 (Thu, 30 Sep 2004) New Revision: 4892 Added: tinysofa/releases/1.1/zlib/current/sources/zlib-1.2.1.2.tar.gz Removed: tinysofa/releases/1.1/zlib/current/sources/zlib-1.2.1.1.tar.gz Modified: tinysofa/releases/1.1/zlib/current/specs/zlib.spec Log: - update to 1.2.1.2, which fixes DOS problems Deleted: tinysofa/releases/1.1/zlib/current/sources/zlib-1.2.1.1.tar.gz =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/zlib/current/sources/zlib-1.2.1.2.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/zlib/current/sources/zlib-1.2.1.2.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/zlib/current/specs/zlib.spec =================================================================== --- tinysofa/releases/1.1/zlib/current/specs/zlib.spec 2004-09-30 15:16:19 UTC (rev 4891) +++ tinysofa/releases/1.1/zlib/current/specs/zlib.spec 2004-09-30 15:19:06 UTC (rev 4892) @@ -1,7 +1,7 @@ Summary: The zlib compression and decompression library. Name: zlib -Version: 1.2.1.1 -Release: 1ts +Version: 1.2.1.2 +Release: 1jh Group: main Source: ftp://ftp.info-zip.org/pub/infozip/zlib/zlib-%{version}.tar.gz Patch0: zlib-1.1.4-make-test.patch @@ -82,6 +82,9 @@ %changelog +* Sun Sep 19 2004 Jaakko Heinonen 1.2.1.2-1jh +- update to 1.2.1.2, which fixes DOS problems + * Thu Aug 05 2004 tsintegrate 1.2.1.1-1ts - current (1.2.1.1-1jh) integrated as 1.2.1.1-1ts for release 1.1 From svn at tinysofa.org Thu Sep 30 15:25:47 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 11:25:47 -0400 (EDT) Subject: [tinysofa-svn] r4894 - tinysofa/releases/1.1/foomatic-filters/current/sources Message-ID: <20040930152547.3FF7A344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 11:25:46 -0400 (Thu, 30 Sep 2004) New Revision: 4894 Added: tinysofa/releases/1.1/foomatic-filters/current/sources/foomatic-filters-3.0.2.tar.gz Log: - add missing foomatic-filters-3.0.2.tar.gz Added: tinysofa/releases/1.1/foomatic-filters/current/sources/foomatic-filters-3.0.2.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/foomatic-filters/current/sources/foomatic-filters-3.0.2.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream From svn at tinysofa.org Thu Sep 30 15:29:28 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 11:29:28 -0400 (EDT) Subject: [tinysofa-svn] r4895 - in tinysofa/releases/1.1/cups/current: sources specs Message-ID: <20040930152928.E289D344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 11:29:28 -0400 (Thu, 30 Sep 2004) New Revision: 4895 Added: tinysofa/releases/1.1/cups/current/sources/cups-1.1.21-initscript.patch tinysofa/releases/1.1/cups/current/sources/cups-1.1.21-source.tar.bz2 Removed: tinysofa/releases/1.1/cups/current/sources/cups-1.1.19-initscript.patch tinysofa/releases/1.1/cups/current/sources/cups-1.1.20-source.tar.bz2 Modified: tinysofa/releases/1.1/cups/current/specs/cups.spec Log: - 1.1.21 which fixes CAN-2004-0558 Deleted: tinysofa/releases/1.1/cups/current/sources/cups-1.1.19-initscript.patch =================================================================== --- tinysofa/releases/1.1/cups/current/sources/cups-1.1.19-initscript.patch 2004-09-30 15:25:46 UTC (rev 4894) +++ tinysofa/releases/1.1/cups/current/sources/cups-1.1.19-initscript.patch 2004-09-30 15:29:28 UTC (rev 4895) @@ -1,55 +0,0 @@ ---- cups-1.1.15/systemv/Makefile.noinit Wed Jun 5 17:11:58 2002 -+++ cups-1.1.15/systemv/Makefile Fri Jun 21 11:22:34 2002 -@@ -76,7 +76,7 @@ - $(INSTALL_BIN) lpoptions $(BINDIR) - $(INSTALL_BIN) lpstat $(BINDIR) - $(INSTALL_BIN) lppasswd $(BINDIR) -- -$(INSTALL_BIN) -m 4755 -o $(CUPS_USER) -g $(CUPS_GROUP) lppasswd $(BINDIR) -+ -$(INSTALL_BIN) -m 4755 lppasswd $(BINDIR) - - - # ---- cups-1.1.15/Makedefs.in.noinit Tue Jun 4 22:32:02 2002 -+++ cups-1.1.15/Makedefs.in Fri Jun 21 11:21:08 2002 -@@ -47,7 +47,7 @@ - # Installation programs... - # - --INSTALL_BIN = $(LIBTOOL) $(INSTALL) -m 755 -s -+INSTALL_BIN = $(LIBTOOL) $(INSTALL) -m 755 - INSTALL_DATA = $(INSTALL) -m 644 - INSTALL_DIR = $(INSTALL) -d - INSTALL_LIB = $(LIBTOOL) $(INSTALL) -m 755 ---- cups-1.1.19/Makefile.noinit 2003-03-06 17:36:00.000000000 +0100 -+++ cups-1.1.19/Makefile 2003-05-28 00:17:14.000000000 +0200 -@@ -89,30 +89,6 @@ - echo Installing cups-config script... - $(INSTALL_DIR) $(BINDIR) - $(INSTALL_SCRIPT) cups-config $(BINDIR)/cups-config -- echo Installing startup script... -- if test "x$(INITDIR)" != "x"; then \ -- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/init.d; \ -- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDIR)/init.d/cups; \ -- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc0.d; \ -- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDIR)/rc0.d/K00cups; \ -- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc2.d; \ -- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDIR)/rc2.d/S99cups; \ -- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc3.d; \ -- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDIR)/rc3.d/S99cups; \ -- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc5.d; \ -- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDIR)/rc5.d/S99cups; \ -- fi -- if test "x$(INITDIR)" = "x" -a "x$(INITDDIR)" != "x"; then \ -- $(INSTALL_DIR) $(BUILDROOT)$(INITDDIR); \ -- if test "$(INITDDIR)" = "/System/Library/StartupItems/PrintingServices"; then \ -- $(INSTALL_SCRIPT) cups.osx $(BUILDROOT)$(INITDDIR)/PrintingServices; \ -- $(INSTALL_DATA) cups.plist $(BUILDROOT)$(INITDDIR)/StartupParameters.plist; \ -- $(INSTALL_DIR) $(BUILDROOT)$(INITDDIR)/Resources/English.lproj; \ -- $(INSTALL_DATA) cups.strings $(BUILDROOT)$(INITDDIR)/Resources/English.lproj/Localizable.strings; \ -- else \ -- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDDIR)/cups; \ -- fi \ -- fi - - # - # Install source and header files... Deleted: tinysofa/releases/1.1/cups/current/sources/cups-1.1.20-source.tar.bz2 =================================================================== (Binary files differ) Copied: tinysofa/releases/1.1/cups/current/sources/cups-1.1.21-initscript.patch (from rev 4796, tinysofa/releases/1.1/cups/current/sources/cups-1.1.19-initscript.patch) =================================================================== --- tinysofa/releases/1.1/cups/current/sources/cups-1.1.19-initscript.patch 2004-09-16 14:47:52 UTC (rev 4796) +++ tinysofa/releases/1.1/cups/current/sources/cups-1.1.21-initscript.patch 2004-09-30 15:29:28 UTC (rev 4895) @@ -0,0 +1,55 @@ +--- cups-1.1.21/Makefile.noinit 2004-02-25 22:14:50.000000000 +0200 ++++ cups-1.1.21/Makefile 2004-09-16 21:20:37.624839720 +0300 +@@ -89,30 +89,6 @@ + echo Installing cups-config script... + $(INSTALL_DIR) $(BINDIR) + $(INSTALL_SCRIPT) cups-config $(BINDIR)/cups-config +- echo Installing startup script... +- if test "x$(INITDIR)" != "x"; then \ +- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/init.d; \ +- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDIR)/init.d/cups; \ +- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc0.d; \ +- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDIR)/rc0.d/K00cups; \ +- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc2.d; \ +- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDIR)/rc2.d/S99cups; \ +- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc3.d; \ +- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDIR)/rc3.d/S99cups; \ +- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc5.d; \ +- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDIR)/rc5.d/S99cups; \ +- fi +- if test "x$(INITDIR)" = "x" -a "x$(INITDDIR)" != "x"; then \ +- $(INSTALL_DIR) $(BUILDROOT)$(INITDDIR); \ +- if test "$(INITDDIR)" = "/System/Library/StartupItems/PrintingServices"; then \ +- $(INSTALL_SCRIPT) cups.osx $(BUILDROOT)$(INITDDIR)/PrintingServices; \ +- $(INSTALL_DATA) cups.plist $(BUILDROOT)$(INITDDIR)/StartupParameters.plist; \ +- $(INSTALL_DIR) $(BUILDROOT)$(INITDDIR)/Resources/English.lproj; \ +- $(INSTALL_DATA) cups.strings $(BUILDROOT)$(INITDDIR)/Resources/English.lproj/Localizable.strings; \ +- else \ +- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDDIR)/cups; \ +- fi \ +- fi + + # + # Install source and header files... +--- cups-1.1.21/systemv/Makefile.noinit 2004-08-11 17:10:22.000000000 +0300 ++++ cups-1.1.21/systemv/Makefile 2004-09-16 21:20:56.981897000 +0300 +@@ -77,7 +77,7 @@ + $(INSTALL_BIN) lp $(BINDIR) + $(INSTALL_BIN) lpoptions $(BINDIR) + $(INSTALL_BIN) lpstat $(BINDIR) +- -$(INSTALL_BIN) -m 4755 -o $(CUPS_USER) -g $(CUPS_GROUP) lppasswd $(BINDIR) ++ -$(INSTALL_BIN) -m 4755 lppasswd $(BINDIR) + if test ! -x $(BINDIR)/lppasswd; then \ + chmod 755 $(BINDIR)/lppasswd; \ + fi +--- cups-1.1.21/Makedefs.in.noinit 2004-06-29 06:14:19.000000000 +0300 ++++ cups-1.1.21/Makedefs.in 2004-09-16 21:20:37.623839872 +0300 +@@ -47,7 +47,7 @@ + # Installation programs... + # + +-INSTALL_BIN = $(LIBTOOL) $(INSTALL) -m 755 -s ++INSTALL_BIN = $(LIBTOOL) $(INSTALL) -m 755 + INSTALL_DATA = $(INSTALL) -m 644 + INSTALL_DIR = $(INSTALL) -d + INSTALL_LIB = $(LIBTOOL) $(INSTALL) -m 755 Added: tinysofa/releases/1.1/cups/current/sources/cups-1.1.21-source.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/cups/current/sources/cups-1.1.21-source.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/cups/current/specs/cups.spec =================================================================== --- tinysofa/releases/1.1/cups/current/specs/cups.spec 2004-09-30 15:25:46 UTC (rev 4894) +++ tinysofa/releases/1.1/cups/current/specs/cups.spec 2004-09-30 15:29:28 UTC (rev 4895) @@ -1,7 +1,7 @@ Summary: Common Unix Printing System Name: cups -Version: 1.1.20 -Release: 6ts +Version: 1.1.21 +Release: 1jh License: GPL Group: main Source: ftp://ftp.easysw.com/pub/cups/cups-%{version}-source.tar.bz2 @@ -11,7 +11,7 @@ Source8: postscript.ppd.gz Source9: cups.logrotate Source10: ncp.backend -Patch0: cups-1.1.19-initscript.patch +Patch0: cups-1.1.21-initscript.patch Patch1: cups-1.1.14-doclink.patch Patch3: cups-1.1.17-backend.patch Patch6: cups-1.1.17-pdftops.patch @@ -201,6 +201,9 @@ %{_includedir}/cups %changelog +* Thu Sep 16 2004 Jaakko Heinonen 1.1.21-1jh +- 1.1.21 which fixes CAN-2004-0558 + * Thu Aug 05 2004 tsintegrate 1.1.20-6ts - current (1.1.20-6jh) integrated as 1.1.20-6ts for release 1.1 From svn at tinysofa.org Thu Sep 30 18:22:00 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 14:22:00 -0400 (EDT) Subject: [tinysofa-svn] r4896 - tinysofa/releases/1.1/sudo/current/specs Message-ID: <20040930182200.CFFF2344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 14:22:00 -0400 (Thu, 30 Sep 2004) New Revision: 4896 Modified: tinysofa/releases/1.1/sudo/current/specs/sudo.spec Log: - BuildRequires: gcc-c++ Modified: tinysofa/releases/1.1/sudo/current/specs/sudo.spec =================================================================== --- tinysofa/releases/1.1/sudo/current/specs/sudo.spec 2004-09-30 15:29:28 UTC (rev 4895) +++ tinysofa/releases/1.1/sudo/current/specs/sudo.spec 2004-09-30 18:22:00 UTC (rev 4896) @@ -7,7 +7,7 @@ Source: http://www.courtesan.com/sudo/dist/sudo-%{version}.tar.gz URL: http://www.courtesan.com/sudo/ BuildRoot: %{_tmppath}/%{name}-%{version}-root -BuildRequires: pam-devel groff +BuildRequires: pam-devel groff gcc-c++ %description Sudo (superuser do) allows a system administrator to give certain From svn at tinysofa.org Thu Sep 30 18:25:36 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 14:25:36 -0400 (EDT) Subject: [tinysofa-svn] r4897 - in tinysofa/releases/1.1/anaconda/current: sources specs Message-ID: <20040930182536.56912344187@minbar.tinysofa.org> Author: jh Date: 2004-09-30 14:25:35 -0400 (Thu, 30 Sep 2004) New Revision: 4897 Added: tinysofa/releases/1.1/anaconda/current/sources/ts-anaconda-1.1.7.tar.bz2 Removed: tinysofa/releases/1.1/anaconda/current/sources/ts-anaconda-1.1.6.tar.bz2 Modified: tinysofa/releases/1.1/anaconda/current/specs/anaconda.spec Log: - 1.1.7 Deleted: tinysofa/releases/1.1/anaconda/current/sources/ts-anaconda-1.1.6.tar.bz2 =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/anaconda/current/sources/ts-anaconda-1.1.7.tar.bz2 =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/anaconda/current/sources/ts-anaconda-1.1.7.tar.bz2 ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/anaconda/current/specs/anaconda.spec =================================================================== --- tinysofa/releases/1.1/anaconda/current/specs/anaconda.spec 2004-09-30 18:22:00 UTC (rev 4896) +++ tinysofa/releases/1.1/anaconda/current/specs/anaconda.spec 2004-09-30 18:25:35 UTC (rev 4897) @@ -1,8 +1,8 @@ # The modutils tarball should be kept in track with modutils.src.rpm ExclusiveArch: i386 i586 Name: anaconda -Version: 1.1.6 -Release: 1ts +Version: 1.1.7 +Release: 1jh Epoch: 1 License: GPL Summary: The tinysofa installation program. From svn at tinysofa.org Thu Sep 30 19:30:17 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 15:30:17 -0400 (EDT) Subject: [tinysofa-svn] r4898 - in contrib/1.1/mach/current: sources specs Message-ID: <20040930193017.A545934418A@minbar.tinysofa.org> Author: jh Date: 2004-09-30 15:30:16 -0400 (Thu, 30 Sep 2004) New Revision: 4898 Modified: contrib/1.1/mach/current/sources/mach-0.4.6-tinysofa.patch contrib/1.1/mach/current/specs/mach.spec Log: - mach-0.4.6-tinysofa.patch update Modified: contrib/1.1/mach/current/sources/mach-0.4.6-tinysofa.patch =================================================================== --- contrib/1.1/mach/current/sources/mach-0.4.6-tinysofa.patch 2004-09-30 18:25:35 UTC (rev 4897) +++ contrib/1.1/mach/current/sources/mach-0.4.6-tinysofa.patch 2004-09-30 19:30:16 UTC (rev 4898) @@ -1,5 +1,5 @@ ---- mach-0.4.6/scripts/mach.in.tinysofa 2004-07-05 13:21:49.000000000 +0300 -+++ mach-0.4.6/scripts/mach.in 2004-09-29 10:31:23.310414152 +0300 +--- mach-0.4.6/scripts/mach.in.tinysofa 2004-09-30 22:22:02.831707176 +0300 ++++ mach-0.4.6/scripts/mach.in 2004-09-30 22:19:14.584284672 +0300 @@ -5,7 +5,7 @@ # # script to set up a chroot using packages and optionally perform builds in it @@ -116,6 +116,15 @@ # True) # analyze log file and move all of the rpms listed as Wrote: +@@ -1356,7 +1361,7 @@ + #FIXME: add mach user and group + self.do_chroot ("echo %s:x:500:500::/usr/src/rpm:/bin/bash >> /etc/passwd" % builduser, fatal = True) + self.do_chroot ("echo %s::500:%s >> /etc/group" % (buildgroup, builduser), fatal = True) +- self.do_chroot ("mkdir -m 775 -p /usr/src/rpm", fatal = True) ++ self.do_chroot ("mkdir -p /usr/src/rpm", fatal = True) + self.do_chroot ("chown -R %s:%s /usr/src/rpm" % (builduser, buildgroup), fatal = True) + self.do_chroot ("su -c 'cp -p /etc/skel/.bashrc /usr/src/rpm/.bashrc || cp -p /etc/bashrc /usr/src/rpm/.bashrc || :' %s" % builduser, fatal = True) + @@ -1368,12 +1373,12 @@ self.do_chroot ("echo '#endif /* __BOOT_KERNEL_H_ */' >> /boot/kernel.h", fatal = True) Modified: contrib/1.1/mach/current/specs/mach.spec =================================================================== --- contrib/1.1/mach/current/specs/mach.spec 2004-09-30 18:25:35 UTC (rev 4897) +++ contrib/1.1/mach/current/specs/mach.spec 2004-09-30 19:30:16 UTC (rev 4898) @@ -2,7 +2,7 @@ Name: mach Version: 0.4.6 -Release: 5jh +Release: 6jh Summary: make a chroot buildsystem Group: contrib License: GPL From svn at tinysofa.org Thu Sep 30 21:06:12 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 17:06:12 -0400 (EDT) Subject: [tinysofa-svn] r4899 - in tinysofa/releases/1.1/procps/current: sources specs Message-ID: <20040930210612.88218344189@minbar.tinysofa.org> Author: jh Date: 2004-09-30 17:06:11 -0400 (Thu, 30 Sep 2004) New Revision: 4899 Added: tinysofa/releases/1.1/procps/current/sources/procps-3.2.1-selinux-workaround.patch tinysofa/releases/1.1/procps/current/sources/procps-3.2.1-top-vmsize-env.patch tinysofa/releases/1.1/procps/current/sources/procps-3.2.3-FAQ.patch tinysofa/releases/1.1/procps/current/sources/procps-3.2.3-batch.patch tinysofa/releases/1.1/procps/current/sources/procps-3.2.3-noproc.patch tinysofa/releases/1.1/procps/current/sources/procps-3.2.3.tar.gz Removed: tinysofa/releases/1.1/procps/current/sources/procps-3.1.15-nostrip.patch tinysofa/releases/1.1/procps/current/sources/procps-3.2.1.tar.gz Modified: tinysofa/releases/1.1/procps/current/sources/procps-3.1.15-misc.patch tinysofa/releases/1.1/procps/current/sources/procps-selinux.patch tinysofa/releases/1.1/procps/current/specs/procps.spec Log: - new procps package Modified: tinysofa/releases/1.1/procps/current/sources/procps-3.1.15-misc.patch =================================================================== --- tinysofa/releases/1.1/procps/current/sources/procps-3.1.15-misc.patch 2004-09-30 19:30:16 UTC (rev 4898) +++ tinysofa/releases/1.1/procps/current/sources/procps-3.1.15-misc.patch 2004-09-30 21:06:11 UTC (rev 4899) @@ -1,71 +1,5 @@ ---- procps-3.1.15/ps/global.c.misc 2003-09-20 01:13:27.000000000 -0400 -+++ procps-3.1.15/ps/global.c 2004-02-11 08:15:58.038149656 -0500 -@@ -16,6 +16,8 @@ - #include - #include - #include -+#include -+#include - - #include "common.h" - -@@ -105,12 +107,21 @@ - struct winsize ws; - char *columns; /* Unix98 environment variable */ - char *lines; /* Unix98 environment variable */ -+ - if(ioctl(1, TIOCGWINSZ, &ws) != -1 && ws.ws_col>0 && ws.ws_row>0){ - screen_cols = ws.ws_col; - screen_rows = ws.ws_row; -- }else{ /* TODO: ought to do tgetnum("co") and tgetnum("li") now */ -- screen_cols = 80; -- screen_rows = 24; -+ }else{ -+ struct stat sb; -+ fstat(1, &sb); -+ if (!S_ISFIFO(sb.st_mode)) { -+ /* TODO: ought to do tgetnum("co") and tgetnum("li") now */ -+ screen_cols = 80; -+ screen_rows = 24; -+ } else { -+ screen_cols = 80 * 4; /* arbitrary */ -+ screen_rows = 24; -+ } - } - if(!isatty(STDOUT_FILENO)) screen_cols = OUTBUF_SIZE; - columns = getenv("COLUMNS"); ---- procps-3.1.15/sysctl.c.misc 2002-12-28 18:26:50.000000000 -0500 -+++ procps-3.1.15/sysctl.c 2004-02-11 08:15:58.035150001 -0500 -@@ -287,9 +287,16 @@ - break; - } - } else { -- fprintf(fp, "%s\n", value); -- fclose(fp); -- -+ rc=fprintf(fp, "%s\n", value); -+ if (rc < 0) { -+ fprintf(stderr, ERR_UNKNOWN_WRITING, errno, outname); -+ fclose(fp); -+ } else { -+ rc=fclose(fp); -+ if (rc != 0) -+ fprintf(stderr, ERR_UNKNOWN_WRITING, errno, outname); -+ } -+ if (rc==0) { - if (PrintName) { - fprintf(stdout, "%s = %s\n", outname, value); - } else { -@@ -298,6 +305,7 @@ - else - fprintf(stdout, "%s", value); - } -+ } - } - - free(tmpname); ---- procps-3.1.15/watch.c.misc 2003-02-24 02:41:04.000000000 -0500 -+++ procps-3.1.15/watch.c 2004-02-11 08:15:58.036149886 -0500 +--- procps-3.2.2/watch.c.misc 2004-07-10 14:58:26.000000000 -0400 ++++ procps-3.2.2/watch.c 2004-07-19 10:54:05.905274300 -0400 @@ -24,6 +24,9 @@ #include #include @@ -84,7 +18,7 @@ int option_differences = 0, option_differences_cumulative = 0, option_help = 0, option_version = 0; -@@ -211,7 +215,13 @@ +@@ -213,7 +217,13 @@ mvaddstr(0, width - tsl + 1, ts); free(header); } Deleted: tinysofa/releases/1.1/procps/current/sources/procps-3.1.15-nostrip.patch =================================================================== --- tinysofa/releases/1.1/procps/current/sources/procps-3.1.15-nostrip.patch 2004-09-30 19:30:16 UTC (rev 4898) +++ tinysofa/releases/1.1/procps/current/sources/procps-3.1.15-nostrip.patch 2004-09-30 21:06:11 UTC (rev 4899) @@ -1,39 +0,0 @@ ---- procps-3.1.15/proc/module.mk.nostrip 2003-09-01 01:49:51.000000000 +0200 -+++ procps-3.1.15/proc/module.mk 2004-01-16 10:36:26.000000000 +0100 -@@ -61,12 +61,12 @@ - - - $(lib)/$(SONAME) : proc/$(SONAME) -- $(install) --mode a=rx --strip $< $@ -+ $(install) $< $@ - cd $(lib) && $(ln_sf) $(SONAME) lib$(NAME).so - $(ldconfig) - - #$(usr/lib)/lib$(NAME).a : proc/lib$(NAME).a --# $(install) --mode a=r --strip $< $@ -+# $(install) --mode a=r $< $@ - - # Junk anyway... supposed to go in /usr/include/$(NAME) - #$(HDRFILES) ??? : $(addprefix proc/,$(HDRFILES)) ??? ---- procps-3.1.15/ps/module.mk.nostrip 2003-09-13 00:05:29.000000000 +0200 -+++ procps-3.1.15/ps/module.mk 2004-01-16 10:36:40.000000000 +0100 -@@ -33,7 +33,7 @@ - - - $(bin)ps: ps/ps -- $(install) --mode a=rx --strip $< $@ -+ $(install) $< $@ - - $(man1)ps.1 : ps/ps.1 - $(install) --mode a=r $< $@ ---- procps-3.1.15/Makefile.nostrip 2003-12-24 03:01:55.000000000 +0100 -+++ procps-3.1.15/Makefile 2004-01-16 10:35:47.000000000 +0100 -@@ -147,7 +147,7 @@ - ###### install - - $(BINFILES) : all -- $(install) --mode a=rx --strip $(notdir $@) $@ -+ $(install) $(notdir $@) $@ - - $(MANFILES) : all - $(install) --mode a=r $(notdir $@) $@ Added: tinysofa/releases/1.1/procps/current/sources/procps-3.2.1-selinux-workaround.patch =================================================================== --- tinysofa/releases/1.1/procps/current/sources/procps-3.2.1-selinux-workaround.patch 2004-09-30 19:30:16 UTC (rev 4898) +++ tinysofa/releases/1.1/procps/current/sources/procps-3.2.1-selinux-workaround.patch 2004-09-30 21:06:11 UTC (rev 4899) @@ -0,0 +1,13 @@ +--- procps-3.2.1/w.c.selinux-workaround 2003-09-20 02:42:26.000000000 -0400 ++++ procps-3.2.1/w.c 2004-06-15 10:45:53.000000000 -0400 +@@ -162,6 +162,10 @@ + if(best && tmp->start_time <= best->start_time) continue; + best = tmp; + } ++ /* It is there but SELinux wouldn't allow us to know the detail. Really ++ w should just be given rights */ ++ if(!kill(u->ut_pid, 0) || errno != ESRCH) ++ *found_utpid = 1; + return best ? best : secondbest; + } + Added: tinysofa/releases/1.1/procps/current/sources/procps-3.2.1-top-vmsize-env.patch =================================================================== --- tinysofa/releases/1.1/procps/current/sources/procps-3.2.1-top-vmsize-env.patch 2004-09-30 19:30:16 UTC (rev 4898) +++ tinysofa/releases/1.1/procps/current/sources/procps-3.2.1-top-vmsize-env.patch 2004-09-30 21:06:11 UTC (rev 4899) @@ -0,0 +1,23 @@ +--- procps-3.2.2/top.c.top-vmsize-env 2004-07-18 22:13:26.000000000 -0400 ++++ procps-3.2.2/top.c 2004-07-19 11:15:08.944882720 -0400 +@@ -2069,6 +2069,8 @@ + } + if (!Frames_libflags) Frames_libflags = L_DEFAULT; + if (selection_type=='p') Frames_libflags |= PROC_PID; ++ if (( getenv("STATSIZE")) && ( atoi(getenv("STATSIZE")) == 1 )) ++ Frames_libflags |= L_status; + } + + +@@ -3017,7 +3019,10 @@ + MKCOL(p->ruser); + break; + case P_VRT: +- MKCOL(scale_num(PAGES_TO_KB(p->size), w, s)); ++ if (( getenv("STATSIZE")) && ( atoi(getenv("STATSIZE")) == 1 )) ++ MKCOL(scale_num(PAGES_TO_KB(p->vm_size), w, s)); ++ else ++ MKCOL(scale_num(PAGES_TO_KB(p->size), w, s)); + break; + case P_WCH: + if (No_ksyms) { Deleted: tinysofa/releases/1.1/procps/current/sources/procps-3.2.1.tar.gz =================================================================== (Binary files differ) Added: tinysofa/releases/1.1/procps/current/sources/procps-3.2.3-FAQ.patch =================================================================== --- tinysofa/releases/1.1/procps/current/sources/procps-3.2.3-FAQ.patch 2004-09-30 19:30:16 UTC (rev 4898) +++ tinysofa/releases/1.1/procps/current/sources/procps-3.2.3-FAQ.patch 2004-09-30 21:06:11 UTC (rev 4899) @@ -0,0 +1,46 @@ +--- procps-3.2.3/ps/parser.c.FAQ 2004-08-10 10:19:14.763608282 -0400 ++++ procps-3.2.3/ps/parser.c 2004-08-10 10:19:14.820602565 -0400 +@@ -1218,7 +1218,7 @@ + // as SysV options... and you're screwed if you've been patching + // out the friendly warning. Cut-over is likely to be in 2005. + if(!(personality & PER_FORCE_BSD)) +- fprintf(stderr, "Warning: bad ps syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html\n"); ++ fprintf(stderr, "Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-%s/FAQ\n",procps_number_version); + // Remember: contact albert at users.sf.net or procps-feedback at lists.sf.net + // if you should feel tempted. Be damn sure you understand all + // the issues. The same goes for other stuff too, BTW. Please ask. +--- procps-3.2.3/proc/version.c.FAQ 2003-01-28 20:11:43.000000000 -0500 ++++ procps-3.2.3/proc/version.c 2004-08-10 10:19:14.821602465 -0400 +@@ -16,8 +16,10 @@ + + #ifdef MINORVERSION + const char procps_version[] = "procps version " VERSION "." SUBVERSION "." MINORVERSION; ++const char procps_number_version[] = VERSION "." SUBVERSION "." MINORVERSION; + #else +-const char procps_version[] = "procps version " VERSION "." SUBVERSION; ++const char procps__version[] = "procps version " VERSION "." SUBVERSION; ++const char procps_number_version[] = VERSION "." SUBVERSION; + #endif + + void display_version(void) { +--- procps-3.2.3/proc/library.map.FAQ 2004-07-21 14:27:55.000000000 -0400 ++++ procps-3.2.3/proc/library.map 2004-08-10 10:21:38.796568918 -0400 +@@ -9,7 +9,7 @@ + escape_str; escape_strlist; + openproc; closeproc; + tty_to_dev; dev_to_tty; open_psdb_message; open_psdb; lookup_wchan; +- display_version; procps_version; linux_version_code; ++ display_version; procps_version; procps_number_version; linux_version_code; + Hertz; smp_num_cpus; + sprint_uptime; uptime; user_from_uid; print_uptime; loadavg; + pretty_print_signals; print_given_signals; unix_print_signals; signal_name_to_number; signal_number_to_name; +--- procps-3.2.3/proc/version.h.FAQ 2002-12-14 19:08:32.000000000 -0500 ++++ procps-3.2.3/proc/version.h 2004-08-10 10:19:14.834601161 -0400 +@@ -16,6 +16,7 @@ + + extern void display_version(void); /* display suite version */ + extern const char procps_version[]; /* global buf for suite version */ ++extern const char procps_number_version[]; /* global buf for suite number version */ + + extern int linux_version_code; /* runtime version of LINUX_VERSION_CODE + in /usr/include/linux/version.h */ Added: tinysofa/releases/1.1/procps/current/sources/procps-3.2.3-batch.patch =================================================================== --- tinysofa/releases/1.1/procps/current/sources/procps-3.2.3-batch.patch 2004-09-30 19:30:16 UTC (rev 4898) +++ tinysofa/releases/1.1/procps/current/sources/procps-3.2.3-batch.patch 2004-09-30 21:06:11 UTC (rev 4899) @@ -0,0 +1,29 @@ +--- procps-3.2.3/top.c.batch 2004-08-30 15:45:14.271562701 -0400 ++++ procps-3.2.3/top.c 2004-08-30 15:57:09.650372356 -0400 +@@ -1814,14 +1814,10 @@ + { + struct termios newtty; + +- // the curses part... +-#ifdef PRETENDNOCAP +- setupterm("dumb", STDOUT_FILENO, NULL); +-#else +- setupterm(NULL, STDOUT_FILENO, NULL); +-#endif + // our part... + if (!Batch) { ++ // the curses part... ++ setupterm(NULL, STDOUT_FILENO, NULL); + if (-1 == tcgetattr(STDIN_FILENO, &Savedtty)) + std_err("failed tty get"); + newtty = Savedtty; +@@ -1843,6 +1839,9 @@ + putp(Cap_clr_scr); + fflush(stdout); + } ++ else ++ setupterm("dumb", STDOUT_FILENO, NULL); ++ + } + + Added: tinysofa/releases/1.1/procps/current/sources/procps-3.2.3-noproc.patch =================================================================== --- tinysofa/releases/1.1/procps/current/sources/procps-3.2.3-noproc.patch 2004-09-30 19:30:16 UTC (rev 4898) +++ tinysofa/releases/1.1/procps/current/sources/procps-3.2.3-noproc.patch 2004-09-30 21:06:11 UTC (rev 4899) @@ -0,0 +1,18 @@ +--- procps-3.2.3/top.c~ 2004-09-28 13:39:31.352488862 -0400 ++++ procps-3.2.3/top.c 2004-09-28 13:42:47.659416849 -0400 +@@ -3201,12 +3201,15 @@ + + int main (int dont_care_argc, char *argv[]) + { ++ struct stat isproc; + (void)dont_care_argc; + before(*argv); + // +-------------+ + windows_stage1(); // top (sic) slice + configs_read(); // > spread etc, < + parse_args(&argv[1]); // > lean stuff, < ++ if (stat("/proc/self", &isproc)==-1) ++ std_err("/proc is not mounted, required for proper terminal handling"); + whack_terminal(); // > onions etc. < + windows_stage2(); // as bottom slice + // +-------------+ Added: tinysofa/releases/1.1/procps/current/sources/procps-3.2.3.tar.gz =================================================================== (Binary files differ) Property changes on: tinysofa/releases/1.1/procps/current/sources/procps-3.2.3.tar.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: tinysofa/releases/1.1/procps/current/sources/procps-selinux.patch =================================================================== --- tinysofa/releases/1.1/procps/current/sources/procps-selinux.patch 2004-09-30 19:30:16 UTC (rev 4898) +++ tinysofa/releases/1.1/procps/current/sources/procps-selinux.patch 2004-09-30 21:06:11 UTC (rev 4899) @@ -1,16 +1,19 @@ ---- procps-3.1.15/ps/ps.1.selinux 2003-12-23 20:59:47.000000000 -0500 -+++ procps-3.1.15/ps/ps.1 2004-01-21 13:12:33.000000000 -0500 -@@ -96,6 +96,7 @@ - s display signal format - u display user-oriented format - v display virtual memory format -+-Z display security context format (NSA SELinux, etc.) - --format user-defined format - --context display security context format (NSA SELinux, etc.) +--- procps-3.2.3/ps/ps.1.selinux 2004-08-09 21:09:31.000000000 -0400 ++++ procps-3.2.3/ps/ps.1 2004-08-10 10:17:06.069308484 -0400 +@@ -492,6 +492,10 @@ + This option can only be used with \fB\-l\fR. ---- procps-3.1.15/ps/parser.c.selinux 2003-12-23 18:58:06.000000000 -0500 -+++ procps-3.1.15/ps/parser.c 2004-01-22 23:57:36.238303681 -0500 -@@ -224,7 +224,7 @@ + .TP ++.B \-Z ++display security context format (NSA SELinux, etc.) ++ ++.TP + .BI \-\-format \ format + user\-defined format. Identical to \fB\-o\fR and \fBo\fR. + +--- procps-3.2.3/ps/parser.c.selinux 2004-08-09 20:41:10.000000000 -0400 ++++ procps-3.2.3/ps/parser.c 2004-08-10 10:15:28.654691049 -0400 +@@ -221,7 +221,7 @@ flagptr = ps_argv[thisarg]; while(*++flagptr){ /* Find any excuse to ignore stupid Unix98 misfeatures. */ @@ -19,43 +22,3 @@ switch(*flagptr){ case 'A': trace("-A selects all processes.\n"); -@@ -315,12 +315,10 @@ - exclusive("-V"); - display_version(); - exit(0); --#if 0 - case 'Z': /* full Mandatory Access Control level info */ - trace("-Z shows full MAC info\n"); -- return "Don't understand MAC on Linux."; -+ format_flags |= FF_Fc; - break; --#endif - case 'a': - trace("-a select all with a tty, but omit session leaders.\n"); - simple_select |= SS_U_a; -@@ -443,12 +441,10 @@ - trace("-y Print lnone info in UID/USER column or do Sun -l hack.\n"); - format_modifiers |= FM_y; - break; --#if 0 - case 'z': /* alias of Mandatory Access Control level info */ -- trace("-z shows aliased MAC info\n"); -- return "Don't understand MAC on Linux."; -+ trace("-Z shows full MAC info\n"); -+ format_flags |= FF_Fc; - break; --#endif - case '-': - return "Embedded '-' among SysV options makes no sense."; - break; -@@ -568,6 +564,10 @@ - trace("X Old Linux i386 register format\n"); - format_flags |= FF_LX; - break; -+ case 'Z': -+ trace("SElinux Security Context format\n"); -+ format_flags |= FF_Fc; -+ break; - case 'a': - trace("a Select all w/tty, including other users\n"); - simple_select |= SS_B_a; Modified: tinysofa/releases/1.1/procps/current/specs/procps.spec =================================================================== --- tinysofa/releases/1.1/procps/current/specs/procps.spec 2004-09-30 19:30:16 UTC (rev 4898) +++ tinysofa/releases/1.1/procps/current/specs/procps.spec 2004-09-30 21:06:11 UTC (rev 4899) @@ -1,175 +1,379 @@ -Summary: Utilities for monitoring your system and processes on your system. +Summary: System and process monitoring utilities. Name: procps -Version: 3.2.1 -Release: 2ts +Version: 3.2.3 +Release: 1jh License: GPL Group: main Source: http://procps.sourceforge.net/procps-%{version}.tar.gz -Patch1: procps-3.1.15-misc.patch -Patch2: procps-3.1.15-nostrip.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-root Patch3: procps-selinux.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-root -PreReq: coreutils -Requires: ncurses +Patch4: procps-3.1.15-misc.patch +Patch5: procps-3.2.3-FAQ.patch +Patch6: procps-3.2.1-selinux-workaround.patch +Patch7: procps-3.2.1-top-vmsize-env.patch +Patch9: procps-3.2.3-batch.patch +Patch10: procps-3.2.3-noproc.patch BuildRequires: ncurses-devel %description -The procps package contains a set of system utilities which provide -system information. Procps includes ps, free, sessreg, skill, snice, -tload, top, uptime, vmstat, w, and watch. The ps command displays a -snapshot of running processes. The top command provides a repetitive -update of the statuses of running processes. The free command -displays the amounts of free and used memory on your system. Sessreg -is a simple program for managing utmp/wtmp entries for xdm sessions. -The skill command sends a terminate command (or another specified -signal) to a specified set of processes. The snice command is used to -change the scheduling priority of specified processes. The tload -command prints a graph of the current system load average to a -specified tty. The uptime command displays the current time, how long -the system has been running, how many users are logged on and system -load averages for the past one, five and fifteen minutes. The w -command displays a list of the users who are currently logged on and -what they're running. The watch program watches a running program. -The vmstat command displays virtual memory statistics about processes, -memory, paging, block I/O, traps and CPU activity. +The procps package contains a set of system utilities that provide +system information. Procps includes ps, free, skill, snice, tload, +top, uptime, vmstat, w, and watch. The ps command displays a snapshot +of running processes. The top command provides a repetitive update of +the statuses of running processes. The free command displays the +amounts of free and used memory on your system. The skill command +sends a terminate command (or another specified signal) to a specified +set of processes. The snice command is used to change the scheduling +priority of specified processes. The tload command prints a graph of +the current system load average to a specified tty. The uptime command +displays the current time, how long the system has been running, how +many users are logged on, and system load averages for the past one, +five, and fifteen minutes. The w command displays a list of the users +who are currently logged on and what they are running. The watch +program watches a running program. The vmstat command displays virtual +memory statistics about processes, memory, paging, block I/O, traps, +and CPU activity. + %prep %setup -q -%patch1 -p1 -%patch2 -p1 -%if %{with_selinux} -%patch3 -p1 -%endif +%patch3 -p1 -b .selinux +%patch4 -p1 -b .misc +%patch5 -p1 -b .FAQ +%patch6 -p1 -b .selinux-workaround +%patch7 -p1 -b .top-vmsize-env +%patch9 -p1 -b .dumb +%patch10 -p1 -b .noproc +cp %SOURCE1 . + + %build -PATH=/usr/X11R6/bin:$PATH +make CC="gcc $RPM_OPT_FLAGS" W_SHOWFROM=-DW_SHOWFROM lib64=%{_lib} -make CC="gcc $RPM_OPT_FLAGS -DW_SHOWFROM=1" LDFLAGS=-s %install -mkdir -p $RPM_BUILD_ROOT/bin $RPM_BUILD_ROOT/usr/bin $RPM_BUILD_ROOT/sbin -mkdir -p $RPM_BUILD_ROOT/usr/share/man/man1 $RPM_BUILD_ROOT/usr/share/man/man8 -mkdir -p $RPM_BUILD_ROOT/usr/share/man/man5 -mkdir -p $RPM_BUILD_ROOT/lib +make ldconfig=true DESTDIR=%{buildroot} lib64=%{_lib} install="install -D" SKIP="/bin/kill /usr/share/man/man1/kill.1" install -make install \ - DESTDIR=$RPM_BUILD_ROOT \ - install="install -D" \ - ldconfig=true %clean -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT +%clean_buildroot -%post -# add libproc to the cache -/sbin/ldconfig -# remove obsolete files -rm -f /etc/psdevtab /etc/psdatabase +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + %files -%defattr(-,root,root) -%doc NEWS BUGS TODO -%attr(555,root,root) /bin/ps -%attr(555,root,root) /sbin/sysctl -%attr(555,root,root) /usr/bin/free -%attr(555,root,root) /usr/bin/pgrep -%attr(555,root,root) /usr/bin/pkill -%attr(555,root,root) /usr/bin/pmap -%attr(555,root,root) /usr/bin/skill -%attr(555,root,root) /usr/bin/slabtop -%attr(555,root,root) /usr/bin/snice -%attr(555,root,root) /usr/bin/tload -%attr(555,root,root) /usr/bin/top -%attr(555,root,root) /usr/bin/uptime -%attr(555,root,root) /usr/bin/vmstat -%attr(555,root,root) /usr/bin/w -%attr(555,root,root) /usr/bin/watch -%attr(755,root,root) /%{_lib}/libproc.so -%attr(755,root,root) /%{_lib}/libproc.so.%{version} +%defattr(0644,root,root,755) +%doc NEWS BUGS TODO FAQ +%attr(755,root,root) /%{_lib}/* +%attr(755,root,root) /bin/ps +%attr(755,root,root) /sbin/sysctl +%attr(755,root,root) /usr/bin/* -%attr(0644,root,root) /usr/share/man/man1/free.1* -%attr(0644,root,root) /usr/share/man/man1/pgrep.1* -%attr(0644,root,root) /usr/share/man/man1/pkill.1* -%attr(0644,root,root) /usr/share/man/man1/pmap.1* -%attr(0644,root,root) /usr/share/man/man1/ps.1* -%attr(0644,root,root) /usr/share/man/man1/skill.1* -%attr(0644,root,root) /usr/share/man/man1/slabtop.1.* -%attr(0644,root,root) /usr/share/man/man1/snice.1* -%attr(0644,root,root) /usr/share/man/man1/tload.1* -%attr(0644,root,root) /usr/share/man/man1/top.1* -%attr(0644,root,root) /usr/share/man/man1/uptime.1* -%attr(0644,root,root) /usr/share/man/man1/w.1* -%attr(0644,root,root) /usr/share/man/man1/watch.1* -%attr(0644,root,root) /usr/share/man/man5/sysctl.conf.5* -%attr(0644,root,root) /usr/share/man/man8/sysctl.8* -%attr(0644,root,root) /usr/share/man/man8/vmstat.8* +%attr(0644,root,root) %{_mandir}/man1/* +%attr(0644,root,root) %{_mandir}/man8/* +%attr(0644,root,root) %{_mandir}/man5/* -%exclude /bin/kill -%exclude /usr/share/man/man1/kill.1* %changelog -* Thu Aug 05 2004 tsintegrate 3.2.1-2ts -- current (3.2.1-2jh) integrated as 3.2.1-2ts for release 1.1 +* Tue Sep 28 2004 Dan Walsh 3.2.3-5 +- Fix terminal handling when /proc is not available. +- Patch provided by Karel Zak -* Wed May 19 2004 tsintegrate 3.2.1-1ts -- current (3.2.1-1ok) integrated as 3.2.1-1ts for release 1.0-U1 +* Thu Sep 16 2004 Dan Walsh 3.2.3-4 +- Fix spec file to use makefile -* Sun May 16 2004 Jaakko Heinonen -- fix non-root build +* Mon Aug 30 2004 Dan Walsh 3.2.3-3 +- Fix batch mode to use dumb terminal -* Fri May 14 2004 Omar Kilani 3.2.1-1ok -- New Upstream. -- New program: slabtop. +* Tue Aug 17 2004 Florian La Roche +- fix building as non-root, patch from Steve G -* Wed May 12 2004 Omar Kilani 3.1.15-4ts -- Add BuildRequires ncurses-devel. -- Add Requires ncurses. +* Tue Aug 10 2004 Dan Walsh 3.2.3-1 +- Latest from Upstream -* Thu Feb 12 2004 Oystein Viggen 3.1.15-1tr -- New upstream version +* Tue Jul 20 2004 Dan Walsh 3.2.2-2 +- Reformat ps man page -* Mon Dec 1 2003 Erlend Midttun 3.1.14-2tr -- Big rebuild +* Mon Jul 19 2004 Dan Walsh 3.2.2-1 +- Update to upstream version. -* Thu Nov 27 2003 Tor Hveem 3.1.14-1th -- New upstream +* Sat Jun 26 2004 Dan Walsh 3.2.1-7 +- Add patch to display vm_size when STATSIZE env set -* Wed Sep 24 2003 Tor Hveem 3.1.13-1th -- New upstream +* Tue Jun 15 2004 Alan Cox 3.2.1-6 +- Removed broken SELinux patch to w +- Added a better alternative whereby we get less data but don't fall for + vanished processes when SELinux is running -* Wed Jun 18 2003 Erlend Midttun 3.1.8-6tr -- Big rebuild +* Tue Jun 15 2004 Elliot Lee +- rebuilt -* Tue Jun 16 2003 Erlend Midttun 3.1.8-5em -- Now with correct %defattr. Take II. +* Mon Jun 14 2004 Dan Walsh 3.2.1-5 +- Fix FAQ Line -* Tue May 27 2003 Erlend Midttun 3.1.8-4em -- Now with correct %defattr. +* Mon Apr 09 2004 Colin Walters 3.2.1-4 +- Add little patch to make w/who work when getattr access + to /proc/ for the user's login process is denied -* Tue May 27 2003 Erlend Midttun 3.1.8-3em -- Now also show host in "w". +* Sun Mar 28 2004 Dan Walsh 3.2.1-3 +- bump for rhel3 -* Mon May 26 2003 Erlend Midttun 3.1.8-2em -- fileutils -> coreutils. +* Sun Mar 28 2004 Dan Walsh 3.2.1-2 +- Removed addtask patch, very buggy, +- Added FAQ to docdir -* Mon May 19 2003 Erlend Midttun 3.1.8-1em -- New upstream +* Sun Mar 28 2004 Dan Walsh 3.2.1-1 +- Update to latest from upstream -* Mon Mar 24 2003 Erlend Midttun 2.0.7-5em -- Rebuilt against glibc 2.3.2. +* Thu Mar 25 2004 Dan Walsh 3.2.0-3 +- Add addtask patch to total all threads times. -* Fri Nov 8 2002 Gerald Dachs 2.0.7-4gd -- prerequires now fileutils +* Wed Mar 17 2004 Dan Walsh +- Clean up spec file. -* Thu Sep 14 2000 Per Ivar Paulsen -- Picked up 2.07 +* Tue Mar 02 2004 Elliot Lee +- rebuilt -* Thu May 04 2000 Oystein Viggen -- Update to 2.0.6 -- Create a workaround a conflict between glibc and ncurses5 +* Tue Feb 24 2004 Dan Walsh 3.2.0-1 +- New version from upstream -* Fri Feb 25 2000 Lars Gaarden -- Removed X11/wmconfig/top -- Removed procps-X11 -- Added procps-2.0.4-noX.patch +* Fri Feb 13 2004 Elliot Lee +- rebuilt +* Thu Jan 22 2004 Dan Walsh 3.1.15-3 +- Match -Z to --context + +* Wed Jan 21 2004 Dan Walsh 3.1.15-2 +- Add back in -Z support + +* Wed Jan 21 2004 Alexander Larsson 3.1.15-1 +- upgrade to procps3 +- Some regressions, see bug #114012 + +* Tue Jan 20 2004 Dan Walsh 2.0.17-7 +- Remove LIBCURSES from skill and sysctl + +* Wed Dec 10 2003 Dan Walsh 2.0.17-6 +- Turn on SELinux + +* Mon Dec 8 2003 Alexander Larsson 2.0.17-5 +- Fix top total percentages (#109484) + +* Wed Oct 15 2003 Dan Walsh 2.0.17-4 +- Turn off selinux + +* Wed Oct 15 2003 Dan Walsh 2.0.17-3.sel +- Fix help message + +* Thu Oct 9 2003 Dan Walsh 2.0.17-2.sel +- Turn on selinux + +* Fri Oct 3 2003 Alexander Larsson 2.0.17-1 +- Update to 2.0.17, drop upstream patches, forward port remaining patches + +* Fri Sep 5 2003 Dan Walsh 2.0.13-11 +- Turn off selinux + +* Thu Aug 28 2003 Dan Walsh 2.0.13-10.sel +- Add -Z switch for SELinux + +* Sun Aug 17 2003 Doug Ledford 2.0.13-9E +- Add patch to recognize irq and softirq time accounting in kernels that + support this feature + +* Mon Aug 11 2003 Alexander Larsson 2.0.13-8 +- rebuild + +* Mon Aug 11 2003 Alexander Larsson 2.0.13-7E +- Add swapped patch from rik van riel + +* Wed Aug 6 2003 Alexander Larsson 2.0.13-6 +- rebuild + +* Wed Aug 6 2003 Alexander Larsson 2.0.13-5E +- Update iowait patch (#101657) +- Add wchan 64bit patch from Mark DeWandel + +* Mon Jul 28 2003 Dan Walsh 2.0.13-4E +- Add SELinux patch + +* Wed Jul 16 2003 Matt Wilson 2.0.13-3E +- display iowait with procps-2.0.13-iowait.patch (#99061) + +* Fri Jul 11 2003 Alexander Larsson 2.0.13-2E +- Disable linuxthreads thread hack + +* Mon Jul 7 2003 Alexander Larsson 2.0.13-1E +- rebuild + +* Fri Jul 4 2003 Alexander Larsson 2.0.13-1 +- update to 2.0.13 +- Re-merged ntpl patch +- Add hertz fix from Ernie Petrides + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Fri May 23 2003 Alexander Larsson 2.0.12-1 +- Update to 2.0.12 +- Add patch to fix segfault on ps axl (#91453) + +* Fri Mar 14 2003 Alexander Larsson 2.0.11-7 +- Add patch that fixes negative priorities in top. + +* Thu Feb 20 2003 Alexander Larsson 2.0.11-6 +- New NPTL patch: +- Added skipthreads optimization to top +- Don't read threads in 'w' + +* Thu Feb 20 2003 Alexander Larsson 2.0.11-5 +- Update the NPTL patch since the kernel /proc was fixed +- For kernels >= 2.4.20-2.50 + +* Mon Feb 17 2003 Alexander Larsson 2.0.11-4 +- Update nptl patch to new /proc layout. + +* Wed Jan 22 2003 Tim Powers 2.0.11-3 +- rebuilt + +* Wed Jan 22 2003 Alexander Larsson 2.0.11-2 +- Created nptl patch after discussion with ingo and arjan + +* Tue Jan 21 2003 Alexander Larsson 2.0.11-1 +- Update to 2.0.11 + +* Mon Dec 16 2002 Elliot Lee 2.0.10-4 +- Fix %%install in changelog + +* Tue Nov 19 2002 Jakub Jelinek 2.0.10-3 +- Fix for Hammer + +* Wed Oct 23 2002 Alexander Larsson 2.0.10-2 +- Remove uninstalled files in %%install. Add pmap to %%files + +* Tue Oct 8 2002 Alexander Larsson 2.0.10-1 +- Update to 2.0.10 +- Removed applied patches. + +* Mon Aug 12 2002 Alexander Larsson 2.0.7-25 +- Add patch to protect against idle ticks going backwards. Fixes #71237 + +* Thu Aug 8 2002 Alexander Larsson 2.0.7-24 +- Fix saving of sort, fixes #32757 +- Fix printing size, fixes #48224 +- Fix float decimal point input #58163 + +* Thu Aug 8 2002 Alexander Larsson 2.0.7-23 +- Fix unsigned/signed bug. Closes #60998. +- Update threadbadhack to correctly propagate process time to the main thread. + +* Wed Aug 7 2002 Alexander Larsson 2.0.7-22 +- Don't strip binaries + +* Fri Jul 12 2002 Alexander Larsson 2.0.7-21 +- Remove the X11 subpackage + +* Mon Jul 1 2002 Alexander Larsson 2.0.7-19 +- Added patch that fixes #35174 + +* Wed Jun 26 2002 Alexander Larsson 2.0.7-18 +- New thread badhack patch. Fixes a segfault. + +* Mon Jun 24 2002 Alexander Larsson 2.0.7-16 +- New thread badhack. Now enabled by default. + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Thu Jun 20 2002 Alexander Larsson 2.0.7-14 +- Added badhack to support hiding threads + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Mon Apr 15 2002 Bill Nottingham 2.0.7-12 +- add ldconfig in %postun + +* Mon Aug 27 2001 Trond Eivind Glomsr?d 2.0.7-11 +- Add ncurses-devel as a build dependency (#49562) + +* Sat Jul 21 2001 Tim Powers +- removed applnk entry, one of the things that's cluttering our menus + +* Sun Jun 24 2001 Elliot Lee +- Bump release + rebuild. + +* Thu Apr 5 2001 Jakub Jelinek +- fix AIX style user defined formats (#34833) + +* Thu Mar 22 2001 Bill Nottingham +- add a '-e' to sysctl to ignore errors (#31852) + +* Mon Mar 5 2001 Preston Brown +- bigger buffer for reading /proc/stat fixes segfault (#27840) + +* Thu Feb 1 2001 Preston Brown +- make sysctl return a value when errors occur (#18820). +- support big UIDs (#22683) + +* Mon Jan 22 2001 Helge Deller +- work-around for negative CPU output (Bug #18380) + +* Thu Aug 17 2000 Than Ngo +- fix failing in RPM post script (Bug #16226) + +* Wed Jul 26 2000 Michael K. Johnson +- Added Jakub's locale patch + +* Fri Jul 14 2000 Michael K. Johnson +- procps-2.0.7 +- integrated all patches except for signames patch, which is broken + and unnecessary +- See NEWS for changes between 2.0.6 and 2.0.7 +- Added patch to correctly install desktop file. Oops. + +* Wed Jul 12 2000 Prospector +- automatic rebuild + +* Tue Jul 03 2000 Preston Brown +- larger buffers for reading /proc/stat + +* Tue Jun 13 2000 Preston Brown +- FHS paths + +* Tue May 30 2000 Preston Brown +- add smp, signal name patches from VA Linux. Thanks guys. + +* Mon May 22 2000 Harald Hoyer +- added sysctl.conf (5) man page + +* Wed May 10 2000 Bill Nottingham +- fix PAGE_SIZE mismatch on ia64 + +* Sun May 7 2000 Bill Nottingham +- rebuild with different optimizations for ia64 + +* Fri Mar 24 2000 Bernhard Rosenkraenzer +- rebuild with current ncurses + +* Tue Mar 7 2000 Bill Nottingham +- fix end-of-file behavior in sysctl + +* Mon Feb 07 2000 Preston Brown +- wmconfig -> desktop + +* Mon Feb 7 2000 Jakub Jelinek +- don't try to load System.map (and spit error messages if it does not + exist) if ps or top are not going to use it, both to speed things up + and remove the ugly messages when they don't make sense. +- in top, print the possible error messages using standard top SHOWMESSAGE + (because it will be now printed out when already in terminal mode). + +* Thu Feb 3 2000 Matt Wilson +- added patch to prevent divide by zero on UltraSparc +- gzip man pages + From svn at tinysofa.org Thu Sep 30 22:09:06 2004 From: svn at tinysofa.org (svn at tinysofa.org) Date: Thu, 30 Sep 2004 18:09:06 -0400 (EDT) Subject: [tinysofa-svn] r4900 - contrib/1.1/xorg-x11/current/sources Message-ID: <20040930220906.C9F8E344189@minbar.tinysofa.org> Author: jh Date: 2004-09-30 18:09:06 -0400 (Thu, 30 Sep 2004) New Revision: 4900 Modified: contrib/1.1/xorg-x11/current/sources/xdm.init Log: - suppress which messages - fix pidof location Modified: contrib/1.1/xorg-x11/current/sources/xdm.init =================================================================== --- contrib/1.1/xorg-x11/current/sources/xdm.init 2004-09-30 21:06:11 UTC (rev 4899) +++ contrib/1.1/xorg-x11/current/sources/xdm.init 2004-09-30 22:09:06 UTC (rev 4900) @@ -55,10 +55,10 @@ if [ "x$preferred" != "x" ]; then echo -n $"Shutting down $title: " killproc $preferred - elif which gdm >/dev/null; then + elif which gdm >/dev/null 2>&1; then echo -n $"Shutting down GNOME Display Manager: " killproc gdm - elif which kdm >/dev/null; then + elif which kdm >/dev/null 2>&1; then echo -n $"Shutting down KDE Display Manager: " killproc kdm else @@ -71,9 +71,9 @@ status) if [ "x$preferred" != "x" ]; then status $preferred - elif which gdm >/dev/null; then + elif which gdm >/dev/null 2>&1; then status gdm - elif which kdm >/dev/null; then + elif which kdm >/dev/null 2>&1; then status kdm else status xdm @@ -83,9 +83,9 @@ echo -n $"Restarting Display Manager: " if [ "x$preferred" != "x" ]; then killproc $preferred -HUP - elif which gdm >/dev/null; then + elif which gdm >/dev/null 2>&1; then killproc gdm -HUP - elif which kdm >/dev/null; then + elif which kdm >/dev/null 2>&1; then killproc kdm -HUP else killproc xdm -HUP @@ -96,13 +96,13 @@ if [ ! -f /var/lock/subsys/xdm ] ; then echo $"start"; exit 0 fi - /sbin/pidof gdm >/dev/null 2>&1; DEAD="$?" + pidof gdm >/dev/null 2>&1; DEAD="$?" if [ "$DEAD" = 1 ]; then - /sbin/pidof kdm >/dev/null 2>&1 + pidof kdm >/dev/null 2>&1 DEAD="$?" fi if [ "$DEAD" = 1 ]; then - /sbin/pidof xdm >/dev/null 2>&1 + pidof xdm >/dev/null 2>&1 DEAD="$?" fi if [ $DEAD = 1 ] ; then