diff --git a/amd/am-utils-6.0.7.patch b/amd/amd.patch similarity index 100% rename from amd/am-utils-6.0.7.patch rename to amd/amd.patch diff --git a/amd/amd.spec b/amd/amd.spec index 9c2d7119c1..c3beb093d6 100644 --- a/amd/amd.spec +++ b/amd/amd.spec @@ -33,13 +33,13 @@ Distribution: OpenPKG [REL] Group: System License: BSD Version: 6.0.7 -Release: 20020206 +Release: 20020529 # list of sources Source0: ftp://ftp.am-utils.org/pub/am-utils/am-utils-%{version}.tar.gz Source1: amd.conf Source2: rc.amd -Patch0: am-utils-%{version}.patch +Patch0: amd.patch # build information Prefix: %{l_prefix} diff --git a/cpio/cpio-2.4.2.patch b/cpio/cpio.patch similarity index 100% rename from cpio/cpio-2.4.2.patch rename to cpio/cpio.patch diff --git a/cpio/cpio.spec b/cpio/cpio.spec index 5f01160d79..1d70778cf1 100644 --- a/cpio/cpio.spec +++ b/cpio/cpio.spec @@ -33,11 +33,11 @@ Distribution: OpenPKG [REL] Group: Archiver License: GPL Version: 2.4.2 -Release: 20020206 +Release: 20020529 # list of sources Source0: ftp://ftp.gnu.org/pub/gnu/cpio/cpio-%{version}.tar.gz -Patch0: cpio-%{version}.patch +Patch0: cpio.patch # build information Prefix: %{l_prefix} diff --git a/dcron/dcron.patch b/dcron/dcron.patch new file mode 100644 index 0000000000..225aca845b --- /dev/null +++ b/dcron/dcron.patch @@ -0,0 +1,106 @@ +diff -ru3 dcron-2.3.3.orig/database.c dcron-2.3.3/database.c +--- dcron-2.3.3.orig/database.c Mon May 2 17:28:08 1994 ++++ dcron-2.3.3/database.c Wed Jun 13 09:49:57 2001 +@@ -179,7 +179,7 @@ + if (--maxEntries == 0) + break; + +- bzero(&line, sizeof(line)); ++ memset(&line, 0, sizeof(line)); + + if (DebugOpt) + log9("User %s Entry %s\n", fileName, buf); +diff -ru3 dcron-2.3.3.orig/defs.h dcron-2.3.3/defs.h +--- dcron-2.3.3.orig/defs.h Fri Sep 5 21:44:32 1997 ++++ dcron-2.3.3/defs.h Wed Jun 13 09:51:08 2001 +@@ -21,12 +21,16 @@ + #include + #include + #include ++#include + + #define Prototype extern + #define arysize(ary) (sizeof(ary)/sizeof((ary)[0])) + + #ifndef CRONTABS + #define CRONTABS "/var/spool/cron/crontabs" ++#endif ++#ifndef PIDFILE ++#define PIDFILE "/var/run/dcron.pid" + #endif + #ifndef TMPDIR + #define TMPDIR "/tmp" +diff -ru3 dcron-2.3.3.orig/main.c dcron-2.3.3/main.c +--- dcron-2.3.3.orig/main.c Mon May 2 17:28:24 1994 ++++ dcron-2.3.3/main.c Wed Jun 13 09:53:09 2001 +@@ -122,8 +122,14 @@ + perror("fork"); + exit(1); + } +- if (pid > 0) ++ if (pid > 0) { ++ FILE *fp; ++ if ((fp = fopen(PIDFILE, "w")) != NULL) { ++ fprintf(fp, "%d\n", pid); ++ fclose(fp); ++ } + exit(0); ++ } + } + + /* +diff -ru3 dcron-2.3.3.orig/subs.c dcron-2.3.3/subs.c +--- dcron-2.3.3.orig/subs.c Mon Feb 16 20:35:10 1998 ++++ dcron-2.3.3/subs.c Wed Jun 13 09:49:57 2001 +@@ -15,7 +15,6 @@ + Prototype int ChangeUser(const char *user, short dochdir); + Prototype void vlog(int level, int fd, const char *ctl, va_list va); + Prototype int slog(char *buf, size_t sz, const char *ctl, va_list va, short useDate); +-Prototype char *strdup(const char *); + + void + log9(const char *ctl, ...) +@@ -80,7 +79,7 @@ + + buf[0] = 0; + if (useDate) +- strftime(buf, 128, "%d-%b-%y %H:%M ", tp); ++ strftime(buf, 128, "%d-%b-%Y %H:%M ", tp); + vsnprintf(buf + strlen(buf), sz - strlen(buf), ctl, va); + return(strlen(buf)); + } +@@ -98,9 +97,15 @@ + log(9, "failed to get uid for %s", user); + return(-1); + } +- setenv("USER", pas->pw_name, 1); +- setenv("HOME", pas->pw_dir, 1); +- setenv("SHELL", "/bin/sh", 1); ++ { ++ char buf[256]; ++ snprintf(buf, sizeof(buf), "USER=%s", pas->pw_name); ++ putenv(buf); ++ snprintf(buf, sizeof(buf), "HOME=%s", pas->pw_dir); ++ putenv(buf); ++ snprintf(buf, sizeof(buf), "SHELL=%s", "/bin/sh"); ++ putenv(buf); ++ } + + /* + * Change running state to the user in question +@@ -129,15 +134,5 @@ + } + } + return(pas->pw_uid); +-} +- +-char * +-strdup(const char *str) +-{ +- char *ptr = malloc(strlen(str) + 1); +- +- if (ptr) +- strcpy(ptr, str); +- return(ptr); + } + diff --git a/dcron/dcron.spec b/dcron/dcron.spec index 891d549ae4..0e3d6cd5df 100644 --- a/dcron/dcron.spec +++ b/dcron/dcron.spec @@ -33,12 +33,12 @@ Distribution: OpenPKG [BRK] Group: System License: GPL Version: 2.3.3 -Release: 20020206 +Release: 20020529 # list of sources Source0: http://www.ibiblio.org/pub/Linux/system/daemons/cron/dcron-%{version}.tar.gz Source1: rc.dcron -Patch0: dcron-%{version}.patch +Patch0: dcron.patch # build information Prefix: %{l_prefix} diff --git a/gated/gated-3-6.patch b/gated/gated.patch similarity index 100% rename from gated/gated-3-6.patch rename to gated/gated.patch diff --git a/gated/gated.spec b/gated/gated.spec index 14e90586ec..a86bfca289 100644 --- a/gated/gated.spec +++ b/gated/gated.spec @@ -23,6 +23,10 @@ ## SUCH DAMAGE. ## +%define V_here 3.6 +%define V_minus 3-6 +%define V_under 3_6 + # package information Name: gated Summary: Routing Daemon @@ -32,16 +36,16 @@ Packager: The OpenPKG Project Distribution: OpenPKG [EXP] Group: Net License: GPL -Version: 3.6 -Release: 20020206 +Version: %{V_here} +Release: 20020529 # list of sources -Source0: gated-3-6.tar.gz +Source0: gated-%{V_minus}.tar.gz Source1: gated.8 Source2: gdc.8 Source3: rc.gated Source4: gated.conf -Patch0: gated-3-6.patch +Patch0: gated.patch # build information Prefix: %{l_prefix} @@ -58,7 +62,7 @@ AutoReqProv: no IGMP, etc. %prep - %setup -q -n gated-public-3_6 + %setup -q -n gated-public-%{V_under} %patch -p0 %build diff --git a/limo/limo.patch b/limo/limo.patch new file mode 100644 index 0000000000..6ec4b72a4b --- /dev/null +++ b/limo/limo.patch @@ -0,0 +1,12 @@ +--- display.c.orig Mon Jan 24 01:39:03 2000 ++++ display.c Sun Mar 18 12:39:45 2001 +@@ -45,7 +45,9 @@ + + #include + #include ++#if !defined(__FreeBSD__) && !defined(__Linux__) + #include ++#endif + #include + #include + #include diff --git a/limo/limo.spec b/limo/limo.spec index e01e8da33f..167ce8f7b5 100644 --- a/limo/limo.spec +++ b/limo/limo.spec @@ -33,11 +33,11 @@ Distribution: OpenPKG [EXP] Group: System License: GPL Version: 0.3.2 -Release: 20020206 +Release: 20020529 # list of sources Source0: http://www.joat.ca/limo-%{version}.tar.gz -Patch0: limo-%{version}.patch +Patch0: limo.patch # build information Prefix: %{l_prefix} diff --git a/mailgrep/mailgrep.patch b/mailgrep/mailgrep.patch new file mode 100644 index 0000000000..db4f7c088c --- /dev/null +++ b/mailgrep/mailgrep.patch @@ -0,0 +1,14 @@ +--- src/date.c.orig Tue Aug 1 15:15:54 2000 ++++ src/date.c Mon Feb 19 12:20:57 2001 +@@ -193,9 +193,9 @@ + return 0; + if (offset) { + if (abs (offset) > 15) +- result -= timezone + (offset / 100) * 60 * 60 + (offset % 100) * 60; ++ result -= /* timezone + */ (offset / 100) * 60 * 60 + (offset % 100) * 60; + else +- result -= timezone + offset * 60 * 60; ++ result -= /* timezone + */ offset * 60 * 60; + } + chomp (r); + if (result_str) diff --git a/mailgrep/mailgrep.spec b/mailgrep/mailgrep.spec index 7eefea15d4..d187ea983c 100644 --- a/mailgrep/mailgrep.spec +++ b/mailgrep/mailgrep.spec @@ -33,11 +33,11 @@ Distribution: OpenPKG [EXP] Group: Mail License: GPL Version: 0.5.0 -Release: 20020206 +Release: 20020529 # list of sources Source0: ftp://ftp.obsidian.co.za/pub/mailgrep/mailgrep-%{version}.tar.gz -Patch0: mailgrep-%{version}.patch +Patch0: mailgrep.patch # build information Prefix: %{l_prefix} diff --git a/minicom/minicom.patch b/minicom/minicom.patch new file mode 100644 index 0000000000..1cbdcd7b41 --- /dev/null +++ b/minicom/minicom.patch @@ -0,0 +1,88 @@ +--- src/updown.c.orig Thu Jul 9 14:49:47 1998 ++++ src/updown.c Sun Dec 13 18:34:51 1998 +@@ -230,7 +230,7 @@ + do_log(cmdline); /* jl 22.06.97 */ + + if (P_PFULL(g) == 'N') { +- win = wopen(10, 7, 70, 13, BSINGLE, stdattr, mfcolor, mbcolor, 1, 0, 1); ++ win = wopen(5, 5, 74, 11, BSINGLE, stdattr, mfcolor, mbcolor, 1, 0, 1); + snprintf(title, sizeof(title), _("%.30s %s - Press CTRL-C to quit"), P_PNAME(g), + what == 'U' ? _("upload") : _("download")); + wtitle(win, TMID, title); +--- src/window.c.orig Tue Aug 11 03:10:29 1998 ++++ src/window.c Tue Aug 11 03:07:12 1998 +@@ -104,7 +104,7 @@ + + int useattr = 1; + int dirflush = 1; +-extern int LINES, COLS; ++int LINES, COLS; + int usecolor = 0; + WIN *stdwin; + char *_tptr = CNULL; +--- src/windiv.c.orig Mon Mar 2 14:28:51 1998 ++++ src/windiv.c Tue Aug 11 02:48:32 1998 +@@ -12,6 +12,7 @@ + * + * hgk+jl 02.98 File selection window + */ ++#include + #include + #include + #include "port.h" +@@ -244,8 +245,14 @@ + + /* get regular files */ + dirlist[nCnt].d_ino = dirent->d_ino; +- dirlist[nCnt].d_off = dirent->d_off; + dirlist[nCnt].d_reclen = dirent->d_reclen; ++#if (defined(BSD) && (BSD >= 199306)) ++ dirlist[nCnt].d_type = dirent->d_type; ++ dirlist[nCnt].d_namlen = dirent->d_namlen; ++#else ++ dirlist[nCnt].d_off = dirent->d_off; ++#endif ++ + strcpy(dirlist[nCnt].d_name, dirent->d_name ); + nMaxWidth = max(nMaxWidth, strlen(dirent->d_name)); + nCnt++; +--- src/ascii-xfr.c.orig Sun Mar 8 08:10:26 1998 ++++ src/ascii-xfr.c Sun Dec 13 21:55:16 1998 +@@ -14,6 +14,10 @@ + #include + #include + #include ++#if (defined(__unix__) || defined(unix)) && !defined(USG) ++#include /* get BSD definition if present */ ++#endif ++ + + /* + * Externals. +--- src/sysdep1.c.orig Wed Mar 15 08:45:03 2000 ++++ src/sysdep1.c Fri Nov 10 09:26:24 2000 +@@ -69 +69 @@ +-#if defined(TIOCM_RTS) && defined(TIOCMODG) ++#if defined(TIOCM_RTS) && defined(TIOCMGET) +@@ -72 +72 @@ +- ioctl(fd, TIOCMODG, &mcs); ++ ioctl(fd, TIOCMGET, &mcs); +@@ -74 +74 @@ +- ioctl(fd, TIOCMODS, &mcs); ++ ioctl(fd, TIOCMSET, &mcs); +@@ -180 +180 @@ +-#ifdef TIOCMODG ++#ifdef TIOCMGET +@@ -183 +183 @@ +- ioctl(fd, TIOCMODG, &mcs); ++ ioctl(fd, TIOCMGET, &mcs); +@@ -221,2 +221,2 @@ +-#ifdef TIOCMODG +- ioctl(fd, TIOCMODG, &m_word); ++#ifdef TIOCMGET ++ ioctl(fd, TIOCMGET, &m_word); +@@ -243,2 +243,2 @@ +-#ifdef TIOCMODS +- ioctl(fd, TIOCMODS, &m_word); ++#ifdef TIOCMSET ++ ioctl(fd, TIOCMSET, &m_word); diff --git a/minicom/minicom.spec b/minicom/minicom.spec index f7b7134780..39b8235ed6 100644 --- a/minicom/minicom.spec +++ b/minicom/minicom.spec @@ -32,11 +32,11 @@ Distribution: OpenPKG [EXP] Group: Communication License: BSD Version: 1.83.1 -Release: 20020206 +Release: 20020529 # list of sources Source0: http://www.clinet.fi/~walker/minicom-%{version}.src.tar.gz -Patch0: minicom-%{version}.patch +Patch0: minicom.patch # build information Prefix: %{l_prefix} diff --git a/mirror/mirror.patch b/mirror/mirror.patch new file mode 100644 index 0000000000..67b3e5d824 --- /dev/null +++ b/mirror/mirror.patch @@ -0,0 +1,36 @@ +--- ftp.pl~ Fri Jun 5 11:10:27 1998 ++++ ftp.pl Sat Feb 3 13:59:12 2001 +@@ -270,6 +270,13 @@ + $SIG{ 'PIPE' } = "ftp'ftp__sighandler"; + } + ++# Setup a signal handler for user interrupts. ++sub ftp'set_user_signals ++{ ++ $ftp_logger = @_; ++ $SIG{ 'INT' } = "ftp'ftp__sighandler"; ++} ++ + # &ftp'set_namemap( function to map outgoing name, function to map incoming ) + sub ftp'set_namemap + { +@@ -581,6 +588,9 @@ + return 0; + } + ++ # shut down our end of the socket ++ &close_data_socket; ++ + # read the close + # + $ret = &expect($timeout, +@@ -589,9 +599,6 @@ + &service_closed(); + $ret = 0; + } +- +- # shut down our end of the socket +- &close_data_socket; + + if( ! $ret ){ + return 0; diff --git a/mirror/mirror.spec b/mirror/mirror.spec index 59c8498c18..aa30d6672a 100644 --- a/mirror/mirror.spec +++ b/mirror/mirror.spec @@ -33,11 +33,11 @@ Distribution: OpenPKG [REL] Group: FTP License: BSD Version: 2.9 -Release: 20020206 +Release: 20020529 # list of sources Source0: ftp://sunsite.doc.ic.ac.uk/packages/mirror/mirror-%{version}.tar.gz -Patch0: mirror-%{version}.patch +Patch0: mirror.patch Source1: mirror-summary Source2: mirror.defaults Source3: Makefile diff --git a/openpkg/README b/openpkg/README index 6818a95b0a..e3a0613715 100644 --- a/openpkg/README +++ b/openpkg/README @@ -19,6 +19,7 @@ patch-2.5.4.tar.gz ...... untouched distribution tarball of the GNU patch tool bash-2.05a.tar.gz ....... untouched distribution tarball of the GNU bash tool curl-7.9.1.tar.gz ....... untouched distribution tarball of the cURL tool + curl.patch .............. patch for cURL tool rpm-4.0.2.tar.gz ........ distribution tarball of the RPM tool rpm-4.0.2.patch.bugfix .. patch for RPM (bugfixing parts) @@ -26,7 +27,7 @@ rpm-4.0.2.patch.porting . patch for RPM (portability enhancement parts) rpm-4.0.2.patch.regen ... patch for RPM (re-generated files parts) db-3.2.9.tar.gz ......... untouched distribution tarball of the Berkeley-DB library - db-3.2.9.patch .......... patch for Berkeley-DB library + db.patch ................ patch for Berkeley-DB library bzip2-1.0.1.tar.gz ...... untouched distribution tarball of the BZIP2 library zlib-1.1.3.tar.gz ....... untouched distribution tarball of the ZLIB library diff --git a/openpkg/db.patch b/openpkg/db.patch new file mode 100644 index 0000000000..2bb8c85538 --- /dev/null +++ b/openpkg/db.patch @@ -0,0 +1,125 @@ +*** include/log.h.orig 2001/01/25 18:22:51 11.20 +--- include/log.h 2001/02/06 05:02:28 11.21 +*************** +*** 198,203 **** +--- 198,204 ---- + */ + typedef enum { + DB_LV_INCOMPLETE, ++ DB_LV_NONEXISTENT, + DB_LV_NORMAL, + DB_LV_OLD_READABLE, + DB_LV_OLD_UNREADABLE +*** log/log.c.orig 2001/01/25 18:22:55 11.43 +--- log/log.c 2001/02/06 05:02:28 11.44 +*************** +*** 309,321 **** + int find_first, *valp; + logfile_validity *statusp; + { +! logfile_validity clv_status, status; + u_int32_t clv, logval; + int cnt, fcnt, ret; + const char *dir; + char **names, *p, *q, savech; + +! clv_status = status = DB_LV_NORMAL; + + /* Return a value of 0 as the log file number on failure. */ + *valp = 0; +--- 309,321 ---- + int find_first, *valp; + logfile_validity *statusp; + { +! logfile_validity logval_status, status; + u_int32_t clv, logval; + int cnt, fcnt, ret; + const char *dir; + char **names, *p, *q, savech; + +! logval_status = status = DB_LV_NONEXISTENT; + + /* Return a value of 0 as the log file number on failure. */ + *valp = 0; +*************** +*** 385,394 **** + * as a valid log file. + */ + break; + case DB_LV_NORMAL: + case DB_LV_OLD_READABLE: + logval = clv; +! clv_status = status; + break; + case DB_LV_OLD_UNREADABLE: + /* +--- 385,398 ---- + * as a valid log file. + */ + break; ++ case DB_LV_NONEXISTENT: ++ /* Should never happen. */ ++ DB_ASSERT(0); ++ break; + case DB_LV_NORMAL: + case DB_LV_OLD_READABLE: + logval = clv; +! logval_status = status; + break; + case DB_LV_OLD_UNREADABLE: + /* +*************** +*** 410,416 **** + */ + if (!find_first) { + logval = clv; +! clv_status = status; + } + break; + } +--- 414,420 ---- + */ + if (!find_first) { + logval = clv; +! logval_status = status; + } + break; + } +*************** +*** 420,426 **** + + err: __os_dirfree(names, fcnt); + __os_freestr(p); +! *statusp = clv_status; + + return (ret); + } +--- 424,430 ---- + + err: __os_dirfree(names, fcnt); + __os_freestr(p); +! *statusp = logval_status; + + return (ret); + } +*** log/log_rec.c.orig 2001/01/25 18:22:56 11.49 +--- log/log_rec.c 2001/02/07 22:17:46 +*************** +*** 404,410 **** + TAILQ_INIT(&logp->dbentry[i].dblist); + else + TAILQ_REINSERT_HEAD( +! &logp->dbentry[i].dblist, dbp, links); + } + + /* Initialize the new entries. */ +--- 404,410 ---- + TAILQ_INIT(&logp->dbentry[i].dblist); + else + TAILQ_REINSERT_HEAD( +! &logp->dbentry[i].dblist, dbtmp, links); + } + + /* Initialize the new entries. */ + + diff --git a/openpkg/openpkg.spec b/openpkg/openpkg.spec index 261fffc979..239a89e809 100644 --- a/openpkg/openpkg.spec +++ b/openpkg/openpkg.spec @@ -39,8 +39,8 @@ # o any cc(1) # the package version and release -%define V_openpkg 20020527 -%define R_openpkg 20020527 +%define V_openpkg 20020529 +%define R_openpkg 20020529 # the used software versions %define V_rpm 4.0.2 @@ -70,10 +70,10 @@ Release: %{R_openpkg} Source0: README Source1: openpkg.boot Source2: ftp://ftp.rpm.org/pub/rpm/dist/rpm-%{V_rpm}.x/rpm-%{V_rpm}.tar.gz -Source3: rpm-%{V_rpm}.patch.bugfix -Source4: rpm-%{V_rpm}.patch.feature -Source5: rpm-%{V_rpm}.patch.porting -Source6: rpm-%{V_rpm}.patch.regen +Source3: rpm.patch.bugfix +Source4: rpm.patch.feature +Source5: rpm.patch.porting +Source6: rpm.patch.regen Source7: http://www.sleepycat.com/update/%{V_db}/db-%{V_db}.tar.gz Source8: ftp://sources.redhat.com/pub/bzip2/v102/bzip2-%{V_bzip2}.tar.gz Source9: ftp://ftp.info-zip.org/pub/infozip/zlib/zlib-%{V_zlib}.tar.gz @@ -106,7 +106,7 @@ Source35: ftp://ftp.gnu.org/gnu/bash/bash-%{V_bash}.tar.gz Source36: dot.bashrc Source37: dot.bash_login Source38: dot.lsyncrc -Source39: db-%{V_db}.patch +Source39: db.patch Source40: rc.conf Source41: aux.prereq.sh Source42: aux.usrgrp.sh @@ -307,16 +307,16 @@ Provides: OpenPKG # apply OpenPKG patches to RPM distribution tree ( cd rpm-%{V_rpm} - ${l_patch} -p0 <`SOURCE rpm-%{V_rpm}.patch.bugfix` - ${l_patch} -p0 <`SOURCE rpm-%{V_rpm}.patch.feature` - ${l_patch} -p0 <`SOURCE rpm-%{V_rpm}.patch.porting` - ${l_patch} -p0 <`SOURCE rpm-%{V_rpm}.patch.regen` + ${l_patch} -p0 <`SOURCE rpm.patch.bugfix` + ${l_patch} -p0 <`SOURCE rpm.patch.feature` + ${l_patch} -p0 <`SOURCE rpm.patch.porting` + ${l_patch} -p0 <`SOURCE rpm.patch.regen` touch aclocal.m4 configure ) # apply OpenPKG patches to DB distribution tree ( cd db-%{V_db} - ${l_patch} -p0 <`SOURCE db-%{V_db}.patch` + ${l_patch} -p0 <`SOURCE db.patch` ) # apply OpenPKG patches to cURL distribution tree diff --git a/openpkg/rpm-4.0.2.patch.bugfix b/openpkg/rpm.patch.bugfix similarity index 100% rename from openpkg/rpm-4.0.2.patch.bugfix rename to openpkg/rpm.patch.bugfix diff --git a/openpkg/rpm-4.0.2.patch.feature b/openpkg/rpm.patch.feature similarity index 100% rename from openpkg/rpm-4.0.2.patch.feature rename to openpkg/rpm.patch.feature diff --git a/openpkg/rpm-4.0.2.patch.porting b/openpkg/rpm.patch.porting similarity index 100% rename from openpkg/rpm-4.0.2.patch.porting rename to openpkg/rpm.patch.porting diff --git a/openpkg/rpm-4.0.2.patch.regen b/openpkg/rpm.patch.regen similarity index 100% rename from openpkg/rpm-4.0.2.patch.regen rename to openpkg/rpm.patch.regen diff --git a/proftpd/proftpd-1.2.4.patch b/proftpd/proftpd.patch similarity index 100% rename from proftpd/proftpd-1.2.4.patch rename to proftpd/proftpd.patch diff --git a/proftpd/proftpd.spec b/proftpd/proftpd.spec index 61461bb106..a4796fc20f 100644 --- a/proftpd/proftpd.spec +++ b/proftpd/proftpd.spec @@ -38,7 +38,7 @@ Distribution: OpenPKG [REL] Group: FTP License: GPL Version: 1.2.4 -Release: 20020312 +Release: 20020529 # list of sources Source0: ftp://ftp.proftpd.net/distrib/source/proftpd-%{version}.tar.bz2 @@ -46,7 +46,7 @@ Source1: proftpd.conf Source2: proftpd.msg.goaway Source3: proftpd.msg.login Source4: rc.proftpd -Patch0: proftpd-%{version}.patch +Patch0: proftpd.patch # build information Prefix: %{l_prefix} diff --git a/strace/strace-4.4.patch b/strace/strace.patch similarity index 100% rename from strace/strace-4.4.patch rename to strace/strace.patch diff --git a/strace/strace.spec b/strace/strace.spec index 3de206ca85..37685fb6d0 100644 --- a/strace/strace.spec +++ b/strace/strace.spec @@ -36,11 +36,11 @@ Distribution: OpenPKG [EXP] Group: Development License: GPL Version: %{V_major} -Release: 20020206 +Release: 20020529 # list of sources Source0: http://belnet.dl.sourceforge.net/sourceforge/strace/strace_%{V_major}-%{V_minor}.tar.gz -Patch0: strace-%{V_major}.patch +Patch0: strace.patch # build information Prefix: %{l_prefix} diff --git a/uucp/uucp-1.06.1.patch b/uucp/uucp.patch similarity index 98% rename from uucp/uucp-1.06.1.patch rename to uucp/uucp.patch index 977b6616fc..4b94d0067f 100644 --- a/uucp/uucp-1.06.1.patch +++ b/uucp/uucp.patch @@ -10,7 +10,11 @@ + * require 8 characters, not 9) + * */ - /* $Log: uurate.c,v $ + /* $Log: uucp.patch,v $ + /* Revision 1.1 2002/05/29 19:56:16 rse + /* Finally rename all foo-X.Y.patch files to foo.patch in order + /* to allow us to preserve history in CVS for patch files. + /* * Revision 1.15 1994/04/07 21:47:11 kdburg @@ -302,6 +307,7 @@ int sent, called = IN; diff --git a/uucp/uucp.spec b/uucp/uucp.spec index d556178776..bee95f8cfe 100644 --- a/uucp/uucp.spec +++ b/uucp/uucp.spec @@ -33,14 +33,14 @@ Distribution: OpenPKG [REL] Group: Communication License: GPL Version: 1.06.1 -Release: 20020206 +Release: 20020529 # list of sources Source0: ftp://ftp.gnu.org/gnu/uucp/uucp-%{version}.tar.gz Source1: uucpd.tar.gz Source2: etc.tar Source3: rc.uucp -Patch0: uucp-%{version}.patch +Patch0: uucp.patch # build information Prefix: %{l_prefix}