summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--build/build.c5
-rw-r--r--build/expression.c56
-rw-r--r--build/files.c68
-rw-r--r--build/misc.c12
-rw-r--r--build/myftw.c4
-rw-r--r--build/pack.c14
-rw-r--r--build/parseChangelog.c15
-rw-r--r--build/parseDescription.c1
-rw-r--r--build/parsePreamble.c41
-rw-r--r--build/parseReqs.c3
-rw-r--r--build/parseScript.c2
-rw-r--r--build/parseSpec.c10
-rw-r--r--build/reqprov.c41
-rw-r--r--build/rpmbuild.h272
-rw-r--r--build/rpmspec.h43
-rw-r--r--build/spec.c46
-rw-r--r--po/cs.po266
-rw-r--r--po/da.po266
-rw-r--r--po/de.po266
-rw-r--r--po/es.po266
-rw-r--r--po/eu_ES.po266
-rw-r--r--po/fi.po266
-rw-r--r--po/fr.po266
-rw-r--r--po/gl.po266
-rw-r--r--po/hu.po266
-rw-r--r--po/id.po266
-rw-r--r--po/is.po266
-rw-r--r--po/it.po266
-rw-r--r--po/ja.po268
-rw-r--r--po/ko.po266
-rw-r--r--po/no.po266
-rw-r--r--po/pl.po266
-rw-r--r--po/pt.po266
-rw-r--r--po/pt_BR.po266
-rw-r--r--po/ro.po266
-rw-r--r--po/rpm.pot266
-rw-r--r--po/ru.po266
-rw-r--r--po/sk.po266
-rw-r--r--po/sl.po268
-rw-r--r--po/sr.po266
-rw-r--r--po/sv.po266
-rw-r--r--po/tr.po266
-rw-r--r--po/uk.po266
-rw-r--r--po/wa.po266
-rw-r--r--po/zh.po266
-rw-r--r--po/zh_CN.GB2312.po266
-rw-r--r--rpm.spec6
-rw-r--r--rpm.spec.in6
-rw-r--r--rpmio/rpmerr.h4
50 files changed, 4461 insertions, 4174 deletions
diff --git a/CHANGES b/CHANGES
index 3b5f4798f..30cd219dd 100644
--- a/CHANGES
+++ b/CHANGES
@@ -100,6 +100,8 @@
- fix: remove rebuilddb debugging leakage.
- successors from tsort are processed in presentation order.
- fix: find-requires.perl needed update (#23450).
+ - fix: don't hang on build error.
+ - fix: remove "error: " prefix from signature verification message.
3.0.6 -> 4.0
- use DIRNAMES/BASENAMES/DIRINDICES not FILENAMES in packages and db.
diff --git a/build/build.c b/build/build.c
index cda5f67ad..3f8ce87b7 100644
--- a/build/build.c
+++ b/build/build.c
@@ -12,6 +12,8 @@
static int _build_debug = 0;
+/**
+ */
static void doRmSource(Spec spec)
{
struct Source *p;
@@ -41,9 +43,8 @@ static void doRmSource(Spec spec)
}
/*
- * The _preScript string is expanded to export values to a script environment.
+ * @todo Single use by %%doc in files.c prevents static.
*/
-/** */
int doScript(Spec spec, int what, const char *name, StringBuf sb, int test)
{
const char * rootURL = spec->rootURL;
diff --git a/build/expression.c b/build/expression.c
index 7179ac056..1884905ad 100644
--- a/build/expression.c
+++ b/build/expression.c
@@ -27,12 +27,10 @@
#define DEBUG(x)
#endif
-/*
+/**
* Encapsulation of a "value"
*/
-
-typedef struct _value
-{
+typedef struct _value {
enum { VALUE_TYPE_INTEGER, VALUE_TYPE_STRING } type;
union {
const char *s;
@@ -40,6 +38,8 @@ typedef struct _value
} data;
} *Value;
+/**
+ */
static Value valueMakeInteger(int i)
{
Value v;
@@ -50,6 +50,8 @@ static Value valueMakeInteger(int i)
return v;
}
+/**
+ */
static Value valueMakeString(/*@only@*/ const char *s)
{
Value v;
@@ -60,6 +62,8 @@ static Value valueMakeString(/*@only@*/ const char *s)
return v;
}
+/**
+ */
static void valueFree( /*@only@*/ Value v)
{
if (v) {
@@ -88,23 +92,22 @@ static void valueDump(const char *msg, Value v, FILE *fp)
#define valueSameType(v1,v2) ((v1)->type == (v2)->type)
-/*
+/**
* Parser state.
*/
-
typedef struct _parseState {
- /*@owned@*/ char *str; /* expression string */
- /*@dependent@*/ char *p; /* current position in expression string */
- int nextToken; /* current lookahead token */
- Value tokenValue; /* valid when TOK_INTEGER or TOK_STRING */
- Spec spec; /* spec file that we are parsing inside of */
+ /*@owned@*/ char *str; /*!< expression string */
+ /*@dependent@*/ char *p; /*!< current position in expression string */
+ int nextToken; /*!< current lookahead token */
+ Value tokenValue; /*!< valid when TOK_INTEGER or TOK_STRING */
+ Spec spec; /*!< spec file that we are parsing inside of */
} *ParseState;
-/*
- * Token parser.
+/**
+ * \name Parser tokens
*/
-
+/*@{*/
#define TOK_EOF 1
#define TOK_INTEGER 2
#define TOK_STRING 3
@@ -124,6 +127,7 @@ typedef struct _parseState {
#define TOK_NOT 17
#define TOK_LOGICAL_AND 18
#define TOK_LOGICAL_OR 19
+/*@}*/
#define EXPRBUFSIZ BUFSIZ
@@ -168,6 +172,9 @@ static const char *prToken(int val)
}
#endif /* DEBUG_PARSER */
+/**
+ * @param state expression parser state
+ */
static int rdToken(ParseState state)
{
int token;
@@ -301,6 +308,9 @@ static int rdToken(ParseState state)
static Value doLogical(ParseState state);
+/**
+ * @param state expression parser state
+ */
static Value doPrimary(ParseState state)
{
Value v;
@@ -374,6 +384,9 @@ static Value doPrimary(ParseState state)
return v;
}
+/**
+ * @param state expression parser state
+ */
static Value doMultiplyDivide(ParseState state)
{
Value v1, v2 = NULL;
@@ -420,6 +433,9 @@ static Value doMultiplyDivide(ParseState state)
return v1;
}
+/**
+ * @param state expression parser state
+ */
static Value doAddSubtract(ParseState state)
{
Value v1, v2 = NULL;
@@ -475,6 +491,9 @@ static Value doAddSubtract(ParseState state)
return v1;
}
+/**
+ * @param state expression parser state
+ */
static Value doRelational(ParseState state)
{
Value v1, v2 = NULL;
@@ -563,6 +582,9 @@ static Value doRelational(ParseState state)
return v1;
}
+/**
+ * @param state expression parser state
+ */
static Value doLogical(ParseState state)
{
Value v1, v2 = NULL;
@@ -609,8 +631,7 @@ static Value doLogical(ParseState state)
return v1;
}
-/** */
-int parseExpressionBoolean(Spec spec, char *expr)
+int parseExpressionBoolean(Spec spec, const char *expr)
{
struct _parseState state;
int result = -1;
@@ -657,8 +678,7 @@ int parseExpressionBoolean(Spec spec, char *expr)
return result;
}
-/** */
-char * parseExpressionString(Spec spec, char *expr)
+char * parseExpressionString(Spec spec, const char *expr)
{
struct _parseState state;
char *result = NULL;
diff --git a/build/files.c b/build/files.c
index ad7dc21f9..140dd8d3f 100644
--- a/build/files.c
+++ b/build/files.c
@@ -26,6 +26,8 @@
#define MAXDOCDIR 1024
+/**
+ */
typedef struct {
struct stat fl_st;
#define fl_dev fl_st.st_dev
@@ -47,6 +49,8 @@ typedef struct {
const char *langs; /* XXX locales separated with | */
} FileListRec;
+/**
+ */
typedef struct {
const char *ar_fmodestr;
const char *ar_dmodestr;
@@ -56,8 +60,12 @@ typedef struct {
mode_t ar_dmode;
} AttrRec;
+/**
+ */
static int multiLib = 0; /* MULTILIB */
+/**
+ */
struct FileList {
const char *buildRootURL;
const char *prefix;
@@ -89,6 +97,8 @@ struct FileList {
int fileListRecsUsed;
};
+/**
+ */
static void nullAttrRec(/*@out@*/AttrRec *ar)
{
ar->ar_fmodestr = NULL;
@@ -99,6 +109,8 @@ static void nullAttrRec(/*@out@*/AttrRec *ar)
ar->ar_dmode = 0;
}
+/**
+ */
static void freeAttrRec(AttrRec *ar)
{
FREE(ar->ar_fmodestr);
@@ -108,6 +120,8 @@ static void freeAttrRec(AttrRec *ar)
/* XXX doesn't free ar (yet) */
}
+/**
+ */
static void dupAttrRec(AttrRec *oar, /*@out@*/ AttrRec *nar)
{
if (oar == nar) /* XXX pathological paranoia */
@@ -122,6 +136,8 @@ static void dupAttrRec(AttrRec *oar, /*@out@*/ AttrRec *nar)
}
#if 0
+/**
+ */
static void dumpAttrRec(const char *msg, AttrRec *ar) {
if (msg)
fprintf(stderr, "%s:\t", msg);
@@ -152,6 +168,8 @@ static void dumpAttrRec(const char *msg, AttrRec *ar) {
not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
+/**
+ */
static char *strtokWithQuotes(char *s, char *delim)
{
static char *olds = NULL;
@@ -190,6 +208,8 @@ static char *strtokWithQuotes(char *s, char *delim)
return token;
}
+/**
+ */
static void timeCheck(int tc, Header h)
{
int *mtime;
@@ -209,12 +229,15 @@ static void timeCheck(int tc, Header h)
FREE(files);
}
+/**
+ */
typedef struct VFA {
char * attribute;
int flag;
} VFA_t;
-/** */
+/**
+ */
VFA_t verifyAttrs[] = {
{ "md5", RPMVERIFY_MD5 },
{ "size", RPMVERIFY_FILESIZE },
@@ -227,6 +250,8 @@ VFA_t verifyAttrs[] = {
{ NULL, 0 }
};
+/**
+ */
static int parseForVerify(char *buf, struct FileList *fl)
{
char *p, *pe, *q;
@@ -310,6 +335,8 @@ static int parseForVerify(char *buf, struct FileList *fl)
#define isAttrDefault(_ars) ((_ars)[0] == '-' && (_ars)[1] == '\0')
+/**
+ */
static int parseForAttr(char *buf, struct FileList *fl)
{
char *p, *pe, *q;
@@ -425,6 +452,8 @@ static int parseForAttr(char *buf, struct FileList *fl)
return 0;
}
+/**
+ */
static int parseForConfig(char *buf, struct FileList *fl)
{
char *p, *pe, *q;
@@ -481,6 +510,8 @@ static int parseForConfig(char *buf, struct FileList *fl)
return 0;
}
+/**
+ */
static int parseForLang(char *buf, struct FileList *fl)
{
char *p, *pe, *q;
@@ -561,6 +592,8 @@ static int parseForLang(char *buf, struct FileList *fl)
return 0;
}
+/**
+ */
static int parseForRegexLang(const char *fileName, /*@out@*/char **lang)
{
static int initialized = 0;
@@ -600,6 +633,8 @@ static int parseForRegexLang(const char *fileName, /*@out@*/char **lang)
return 0;
}
+/**
+ */
static int parseForRegexMultiLib(const char *fileName)
{
static int initialized = 0;
@@ -628,7 +663,8 @@ static int parseForRegexMultiLib(const char *fileName)
return 0;
}
-/** */
+/**
+ */
VFA_t virtualFileAttributes[] = {
{ "%dir", 0 }, /* XXX why not RPMFILE_DIR? */
{ "%doc", RPMFILE_DOC },
@@ -648,6 +684,8 @@ VFA_t virtualFileAttributes[] = {
{ NULL, 0 }
};
+/**
+ */
static int parseForSimple(/*@unused@*/Spec spec, Package pkg, char *buf,
struct FileList *fl, const char **fileName)
{
@@ -763,6 +801,8 @@ static int parseForSimple(/*@unused@*/Spec spec, Package pkg, char *buf,
return res;
}
+/**
+ */
static int compareFileListRecs(const void *ap, const void *bp)
{
const char *a = ((FileListRec *)ap)->fileURL;
@@ -770,6 +810,8 @@ static int compareFileListRecs(const void *ap, const void *bp)
return strcmp(a, b);
}
+/**
+ */
static int isDoc(struct FileList *fl, const char *fileName)
{
int x = fl->docDirCount;
@@ -960,6 +1002,8 @@ static void genCpioListAndHeader(struct FileList *fl,
&multiLibMask, 1);
}
+/**
+ */
static void freeFileList(FileListRec *fileList, int count)
{
while (count--) {
@@ -970,6 +1014,8 @@ static void freeFileList(FileListRec *fileList, int count)
FREE(fileList);
}
+/**
+ */
static int addFile(struct FileList *fl, const char * diskURL, struct stat *statp)
{
const char *fileURL = diskURL;
@@ -1139,6 +1185,8 @@ static int addFile(struct FileList *fl, const char * diskURL, struct stat *statp
return 0;
}
+/**
+ */
static int processBinaryFile(/*@unused@*/Package pkg, struct FileList *fl,
const char *fileURL)
{
@@ -1196,6 +1244,8 @@ exit:
return rc;
}
+/**
+ */
static int processPackageFiles(Spec spec, Package pkg,
int installSpecialDoc, int test)
{
@@ -1600,6 +1650,8 @@ int processSourceFiles(Spec spec)
return fl.processingFailed;
}
+/**
+ */
static StringBuf getOutputFrom(char *dir, char *argv[],
const char *writePtr, int writeBytesLeft,
int failNonZero)
@@ -1732,7 +1784,8 @@ top:
return readBuff;
}
-/** */
+/**
+ */
typedef struct {
const char *msg;
const char *argv[4];
@@ -1743,7 +1796,8 @@ typedef struct {
int xor;
} DepMsg_t;
-/** */
+/**
+ */
DepMsg_t depMsgs[] = {
{ "Provides", { "%{__find_provides}", NULL, NULL, NULL },
RPMTAG_PROVIDENAME, RPMTAG_PROVIDEVERSION, RPMTAG_PROVIDEFLAGS,
@@ -1784,6 +1838,8 @@ DepMsg_t depMsgs[] = {
{ NULL, { NULL, NULL, NULL, NULL }, 0, 0, 0, 0, 0 }
};
+/**
+ */
static int generateDepends(Spec spec, Package pkg,
struct cpioFileMapping *cpioList, int cpioCount,
int multiLib)
@@ -1898,6 +1954,8 @@ static int generateDepends(Spec spec, Package pkg,
return rc;
}
+/**
+ */
static void printDepMsg(DepMsg_t *dm, int count, const char **names,
const char **versions, int *flags)
{
@@ -1937,6 +1995,8 @@ static void printDepMsg(DepMsg_t *dm, int count, const char **names,
rpmMessage(RPMMESS_NORMAL, "\n");
}
+/**
+ */
static void printDeps(Header h)
{
const char **names = NULL;
diff --git a/build/misc.c b/build/misc.c
index 1e6b026e4..459410832 100644
--- a/build/misc.c
+++ b/build/misc.c
@@ -6,16 +6,10 @@
#include "rpmbuild.h"
#include "debug.h"
-/** */
int parseNum(const char *line, int *res)
{
- char *s1;
-
- s1 = NULL;
- *res = strtoul(line, &s1, 10);
- if ((*s1) || (s1 == line) || (*res == ULONG_MAX)) {
- return 1;
- }
+ char * s1 = NULL;
- return 0;
+ *res = strtoul(line, &s1, 10);
+ return (((*s1) || (s1 == line) || (*res == ULONG_MAX)) ? 1 : 0);
}
diff --git a/build/myftw.c b/build/myftw.c
index dff0adac0..976a7f883 100644
--- a/build/myftw.c
+++ b/build/myftw.c
@@ -47,6 +47,8 @@ Cambridge, MA 02139, USA. */
/* Traverse one level of a directory tree. */
+/**
+ */
static int
myftw_dir (DIR **dirs, int level, int descriptors,
char *dir, size_t len,
@@ -166,8 +168,6 @@ myftw_dir (DIR **dirs, int level, int descriptors,
/* Call a function on every element in a directory tree. */
-
-/** */
int myftw (const char *dir,
int descriptors,
myftwFunc func,
diff --git a/build/pack.c b/build/pack.c
index 4ef703bc8..9074229e1 100644
--- a/build/pack.c
+++ b/build/pack.c
@@ -16,6 +16,8 @@
extern int _noDirTokens;
+/**
+ */
static inline int genSourceRpmName(Spec spec)
{
if (spec->sourceRpmName == NULL) {
@@ -31,6 +33,8 @@ static inline int genSourceRpmName(Spec spec)
return 0;
}
+/**
+ */
static int cpio_doio(FD_t fdo, CSA_t * csa, const char * fmodeMacro)
{
FD_t cfd;
@@ -58,6 +62,8 @@ static int cpio_doio(FD_t fdo, CSA_t * csa, const char * fmodeMacro)
return rc;
}
+/**
+ */
static int cpio_copy(FD_t fdo, CSA_t *csa)
{
char buf[BUFSIZ];
@@ -79,6 +85,8 @@ static int cpio_copy(FD_t fdo, CSA_t *csa)
return 0;
}
+/**
+ */
static StringBuf addFileToTagAux(Spec spec, const char *file, StringBuf sb)
{
char buf[BUFSIZ];
@@ -107,6 +115,8 @@ static StringBuf addFileToTagAux(Spec spec, const char *file, StringBuf sb)
return sb;
}
+/**
+ */
static int addFileToTag(Spec spec, const char *file, Header h, int tag)
{
StringBuf sb = newStringBuf();
@@ -126,6 +136,8 @@ static int addFileToTag(Spec spec, const char *file, Header h, int tag)
return 0;
}
+/**
+ */
static int addFileToArrayTag(Spec spec, char *file, Header h, int tag)
{
StringBuf sb = newStringBuf();
@@ -141,6 +153,8 @@ static int addFileToArrayTag(Spec spec, char *file, Header h, int tag)
return 0;
}
+/**
+ */
static int processScriptFiles(Spec spec, Package pkg)
{
struct TriggerFileEntry *p;
diff --git a/build/parseChangelog.c b/build/parseChangelog.c
index 3326d6fae..5e9123e3f 100644
--- a/build/parseChangelog.c
+++ b/build/parseChangelog.c
@@ -8,7 +8,6 @@
#include "rpmbuild.h"
#include "debug.h"
-/** */
void addChangelogEntry(Header h, time_t time, const char *name, const char *text)
{
int_32 mytime = time; /* XXX convert to header representation */
@@ -29,7 +28,12 @@ void addChangelogEntry(Header h, time_t time, const char *name, const char *text
}
}
-/* datestr is of the form 'Wed Jan 1 1997' */
+/**
+ * Parse date string to seconds.
+ * @param datestr date string (e.g. 'Wed Jan 1 1997')
+ * @retval secs secs since the unix epoch
+ * @return 0 on success, -1 on error
+ */
static int dateToTimet(const char * datestr, /*@out@*/ time_t * secs)
{
struct tm time;
@@ -92,6 +96,12 @@ static int dateToTimet(const char * datestr, /*@out@*/ time_t * secs)
return 0;
}
+/**
+ * Add %changelog section to header.
+ * @param h header
+ * @param sb changelog strings
+ * @return 0 on success
+ */
static int addChangelog(Header h, StringBuf sb)
{
char *s;
@@ -185,7 +195,6 @@ static int addChangelog(Header h, StringBuf sb)
return 0;
}
-/** */
int parseChangelog(Spec spec)
{
int nextPart, res, rc;
diff --git a/build/parseDescription.c b/build/parseDescription.c
index e889cf244..a5652e380 100644
--- a/build/parseDescription.c
+++ b/build/parseDescription.c
@@ -20,7 +20,6 @@ extern int noLang; /* XXX FIXME: pass as arg */
{ 0, 0, 0, 0, 0, NULL, NULL}
};
-/** */
int parseDescription(Spec spec)
{
int nextPart;
diff --git a/build/parsePreamble.c b/build/parsePreamble.c
index 8c64b66d0..2d7370878 100644
--- a/build/parsePreamble.c
+++ b/build/parsePreamble.c
@@ -9,6 +9,8 @@
#include <rpmbuild.h>
#include "debug.h"
+/**
+ */
static int_32 copyTagsDuringParse[] = {
RPMTAG_EPOCH,
RPMTAG_VERSION,
@@ -27,6 +29,8 @@ static int_32 copyTagsDuringParse[] = {
0
};
+/**
+ */
static int requiredTags[] = {
RPMTAG_NAME,
RPMTAG_VERSION,
@@ -37,6 +41,8 @@ static int requiredTags[] = {
0
};
+/**
+ */
static void addOrAppendListEntry(Header h, int_32 tag, char *line)
{
int argc;
@@ -51,6 +57,8 @@ static void addOrAppendListEntry(Header h, int_32 tag, char *line)
/* Parse a simple part line that only take -n <pkg> or <pkg> */
/* <pkg> is return in name as a pointer into a static buffer */
+/**
+ */
static int parseSimplePart(char *line, /*@out@*/char **name, /*@out@*/int *flag)
{
char *tok;
@@ -80,6 +88,8 @@ static int parseSimplePart(char *line, /*@out@*/char **name, /*@out@*/int *flag)
return (strtok(NULL, " \t\n")) ? 1 : 0;
}
+/**
+ */
static inline int parseYesNo(const char *s)
{
return ((!s || (s[0] == 'n' || s[0] == 'N' || s[0] == '0') ||
@@ -92,6 +102,8 @@ struct tokenBits {
int bits;
};
+/**
+ */
static struct tokenBits installScriptBits[] = {
{ "interp", RPMSENSE_INTERP },
{ "prereq", RPMSENSE_PREREQ },
@@ -104,6 +116,8 @@ static struct tokenBits installScriptBits[] = {
{ NULL, 0 }
};
+/**
+ */
static struct tokenBits buildScriptBits[] = {
{ "prep", RPMSENSE_SCRIPT_PREP },
{ "build", RPMSENSE_SCRIPT_BUILD },
@@ -112,6 +126,8 @@ static struct tokenBits buildScriptBits[] = {
{ NULL, 0 }
};
+/**
+ */
static int parseBits(const char * s, struct tokenBits * tokbits, int * bp)
{
struct tokenBits *tb;
@@ -143,6 +159,8 @@ static int parseBits(const char * s, struct tokenBits * tokbits, int * bp)
return (c ? RPMERR_BADSPEC : 0);
}
+/**
+ */
static inline char * findLastChar(char * s)
{
char *res = s;
@@ -156,6 +174,8 @@ static inline char * findLastChar(char * s)
return res;
}
+/**
+ */
static int isMemberInEntry(Header header, const char *name, int tag)
{
const char ** names;
@@ -171,6 +191,8 @@ static int isMemberInEntry(Header header, const char *name, int tag)
return (count >= 0 ? 1 : 0);
}
+/**
+ */
static int checkForValidArchitectures(Spec spec)
{
#ifndef DYING
@@ -208,6 +230,8 @@ static int checkForValidArchitectures(Spec spec)
return 0;
}
+/**
+ */
static int checkForRequired(Header h, const char *name)
{
int res = 0;
@@ -224,6 +248,8 @@ static int checkForRequired(Header h, const char *name)
return res;
}
+/**
+ */
static int checkForDuplicates(Header h, const char *name)
{
int res = 0;
@@ -249,6 +275,8 @@ static int checkForDuplicates(Header h, const char *name)
return res;
}
+/**
+ */
static struct optionalTag {
int ot_tag;
const char *ot_mac;
@@ -260,6 +288,8 @@ static struct optionalTag {
{ -1, NULL }
};
+/**
+ */
static void fillOutMainPackage(Header h)
{
struct optionalTag *ot;
@@ -274,6 +304,8 @@ static void fillOutMainPackage(Header h)
}
}
+/**
+ */
static int readIcon(Header h, const char *file)
{
const char *fn = NULL;
@@ -330,7 +362,6 @@ exit:
return rc;
}
-/** */
struct spectag *
stashSt(Spec spec, Header h, int tag, const char *lang)
{
@@ -369,6 +400,8 @@ if (multiToken) { \
extern int noLang; /* XXX FIXME: pass as arg */
+/**
+ */
static int handlePreambleTag(Spec spec, Package pkg, int tag, const char *macro,
const char *lang)
{
@@ -615,6 +648,8 @@ static int handlePreambleTag(Spec spec, Package pkg, int tag, const char *macro,
/* This table has to be in a peculiar order. If one tag is the */
/* same as another, plus a few letters, it must come first. */
+/**
+ */
static struct PreambleRec {
int tag;
int len;
@@ -664,6 +699,8 @@ static struct PreambleRec {
{0, 0, 0, 0}
};
+/**
+ */
static inline void initPreambleList(void)
{
struct PreambleRec *p;
@@ -671,6 +708,8 @@ static inline void initPreambleList(void)
p->len = strlen(p->token);
}
+/**
+ */
static int findPreambleTag(Spec spec, /*@out@*/int *tag, /*@out@*/char **macro, char *lang)
{
char *s;
diff --git a/build/parseReqs.c b/build/parseReqs.c
index 225c7a679..1c760c2a9 100644
--- a/build/parseReqs.c
+++ b/build/parseReqs.c
@@ -8,6 +8,8 @@
#include "rpmbuild.h"
#include "debug.h"
+/**
+ */
static struct ReqComp {
char *token;
int sense;
@@ -29,7 +31,6 @@ static struct ReqComp {
#define SKIPWHITE(_x) {while(*(_x) && (isspace(*_x) || *(_x) == ',')) (_x)++;}
#define SKIPNONWHITE(_x){while(*(_x) &&!(isspace(*_x) || *(_x) == ',')) (_x)++;}
-/** */
int parseRCPOT(Spec spec, Package pkg, const char *field, int tag,
int index, int tagflags)
{
diff --git a/build/parseScript.c b/build/parseScript.c
index ddd71d45e..d3a0bf100 100644
--- a/build/parseScript.c
+++ b/build/parseScript.c
@@ -8,6 +8,8 @@
#include "rpmbuild.h"
#include "debug.h"
+/**
+ */
static int addTriggerIndex(Package pkg, const char *file, const char *script, const char *prog)
{
struct TriggerFileEntry *new;
diff --git a/build/parseSpec.c b/build/parseSpec.c
index 7c728c5e8..7a729dab7 100644
--- a/build/parseSpec.c
+++ b/build/parseSpec.c
@@ -38,6 +38,8 @@ static struct PartRec {
{0, 0, 0}
};
+/**
+ */
static inline void initParts(struct PartRec *p)
{
for (; p->token != NULL; p++)
@@ -63,6 +65,8 @@ rpmParseState isPart(const char *line)
return (p->token ? p->part : PART_NONE);
}
+/**
+ */
static int matchTok(const char *token, const char *line)
{
const char *b, *be = line;
@@ -91,6 +95,8 @@ void handleComments(char *s)
*s = '\0';
}
+/**
+ */
static void forceIncludeFile(Spec spec, const char * fileName)
{
OFI_t * ofi;
@@ -101,6 +107,8 @@ static void forceIncludeFile(Spec spec, const char * fileName)
spec->fileStack = ofi;
}
+/**
+ */
static int copyNextLine(Spec spec, OFI_t *ofi, int strip)
{
char *last;
@@ -398,7 +406,7 @@ fprintf(stderr, "*** PS buildRootURL(%s) %p macro set to %s\n", spec->buildRootU
/* in the spec's line buffer. Except for parsePreamble(), */
/* which handles the initial entry into a spec file. */
- while (parsePart != PART_NONE) {
+ while (parsePart < PART_LAST && parsePart != PART_NONE) {
switch (parsePart) {
case PART_PREAMBLE:
parsePart = parsePreamble(spec, initialPackage);
diff --git a/build/reqprov.c b/build/reqprov.c
index b9ff99e4c..5ee4b96a9 100644
--- a/build/reqprov.c
+++ b/build/reqprov.c
@@ -8,9 +8,8 @@
#include "rpmbuild.h"
#include "debug.h"
-/** */
int addReqProv(/*@unused@*/ Spec spec, Header h,
- int flag, const char *name, const char *version, int index)
+ int depFlags, const char *depName, const char *depEVR, int index)
{
const char **names;
int nametag = 0;
@@ -20,41 +19,41 @@ int addReqProv(/*@unused@*/ Spec spec, Header h,
int len;
int extra = 0;
- if (flag & RPMSENSE_PROVIDES) {
+ if (depFlags & RPMSENSE_PROVIDES) {
nametag = RPMTAG_PROVIDENAME;
versiontag = RPMTAG_PROVIDEVERSION;
flagtag = RPMTAG_PROVIDEFLAGS;
- extra = flag & RPMSENSE_FIND_PROVIDES;
- } else if (flag & RPMSENSE_OBSOLETES) {
+ extra = depFlags & RPMSENSE_FIND_PROVIDES;
+ } else if (depFlags & RPMSENSE_OBSOLETES) {
nametag = RPMTAG_OBSOLETENAME;
versiontag = RPMTAG_OBSOLETEVERSION;
flagtag = RPMTAG_OBSOLETEFLAGS;
- } else if (flag & RPMSENSE_CONFLICTS) {
+ } else if (depFlags & RPMSENSE_CONFLICTS) {
nametag = RPMTAG_CONFLICTNAME;
versiontag = RPMTAG_CONFLICTVERSION;
flagtag = RPMTAG_CONFLICTFLAGS;
- } else if (flag & RPMSENSE_PREREQ) {
+ } else if (depFlags & RPMSENSE_PREREQ) {
nametag = RPMTAG_REQUIRENAME;
versiontag = RPMTAG_REQUIREVERSION;
flagtag = RPMTAG_REQUIREFLAGS;
- extra = flag & _ALL_REQUIRES_MASK;
- } else if (flag & RPMSENSE_TRIGGER) {
+ extra = depFlags & _ALL_REQUIRES_MASK;
+ } else if (depFlags & RPMSENSE_TRIGGER) {
nametag = RPMTAG_TRIGGERNAME;
versiontag = RPMTAG_TRIGGERVERSION;
flagtag = RPMTAG_TRIGGERFLAGS;
indextag = RPMTAG_TRIGGERINDEX;
- extra = flag & RPMSENSE_TRIGGER;
+ extra = depFlags & RPMSENSE_TRIGGER;
} else {
nametag = RPMTAG_REQUIRENAME;
versiontag = RPMTAG_REQUIREVERSION;
flagtag = RPMTAG_REQUIREFLAGS;
- extra = flag & _ALL_REQUIRES_MASK;
+ extra = depFlags & _ALL_REQUIRES_MASK;
}
- flag = (flag & (RPMSENSE_SENSEMASK | RPMSENSE_MULTILIB)) | extra;
+ depFlags = (depFlags & (RPMSENSE_SENSEMASK | RPMSENSE_MULTILIB)) | extra;
- if (!version)
- version = "";
+ if (depEVR == NULL)
+ depEVR = "";
/* Check for duplicate dependencies. */
if (headerGetEntry(h, nametag, NULL, (void **) &names, &len)) {
@@ -72,11 +71,11 @@ int addReqProv(/*@unused@*/ Spec spec, Header h,
while (len > 0) {
len--;
- if (strcmp(names[len], name))
+ if (strcmp(names[len], depName))
continue;
if (flagtag && versions != NULL &&
- (strcmp(versions[len], version) ||
- ((flags[len] | RPMSENSE_MULTILIB) != (flag | RPMSENSE_MULTILIB))))
+ (strcmp(versions[len], depEVR) ||
+ ((flags[len] | RPMSENSE_MULTILIB) != (depFlags | RPMSENSE_MULTILIB))))
continue;
if (indextag && indexes != NULL && indexes[len] != index)
continue;
@@ -84,7 +83,7 @@ int addReqProv(/*@unused@*/ Spec spec, Header h,
/* This is a duplicate dependency. */
duplicate = 1;
- if (flagtag && isDependsMULTILIB(flag) &&
+ if (flagtag && isDependsMULTILIB(depFlags) &&
!isDependsMULTILIB(flags[len]))
flags[len] |= RPMSENSE_MULTILIB;
@@ -97,12 +96,12 @@ int addReqProv(/*@unused@*/ Spec spec, Header h,
}
/* Add this dependency. */
- headerAddOrAppendEntry(h, nametag, RPM_STRING_ARRAY_TYPE, &name, 1);
+ headerAddOrAppendEntry(h, nametag, RPM_STRING_ARRAY_TYPE, &depName, 1);
if (flagtag) {
headerAddOrAppendEntry(h, versiontag,
- RPM_STRING_ARRAY_TYPE, &version, 1);
+ RPM_STRING_ARRAY_TYPE, &depEVR, 1);
headerAddOrAppendEntry(h, flagtag,
- RPM_INT32_TYPE, &flag, 1);
+ RPM_INT32_TYPE, &depFlags, 1);
}
if (indextag)
headerAddOrAppendEntry(h, indextag, RPM_INT32_TYPE, &index, 1);
diff --git a/build/rpmbuild.h b/build/rpmbuild.h
index 0fe7ef1ba..724a420e1 100644
--- a/build/rpmbuild.h
+++ b/build/rpmbuild.h
@@ -15,7 +15,7 @@
/* but this will be needed */
#include "rpmspec.h"
-/**
+/** \ingroup rpmbuild
* Bit(s) to control buildSpec() operation.
*/
typedef enum rpmBuildFlags_e {
@@ -32,8 +32,6 @@ typedef enum rpmBuildFlags_e {
RPMBUILD_RMSPEC = (1 << 10) /*!< Remove spec file. */
} rpmBuildFlags;
-/* from build/misc.h */
-
#include <ctype.h>
#define FREE(x) { if (x) free((void *)x); x = NULL; }
@@ -43,7 +41,7 @@ typedef enum rpmBuildFlags_e {
#define PART_SUBNAME 0
#define PART_NAME 1
-/**
+/** \ingroup rpmbuild
* Spec file parser states.
*/
typedef enum rpmParseState_e {
@@ -64,11 +62,10 @@ typedef enum rpmParseState_e {
PART_TRIGGERUN = 14, /*!< */
PART_VERIFYSCRIPT = 15, /*!< */
PART_BUILDARCHITECTURES= 16,/*!< */
- PART_TRIGGERPOSTUN = 17 /*!< */
+ PART_TRIGGERPOSTUN = 17, /*!< */
+ PART_LAST = 18 /*!< */
} rpmParseState;
-/* from build/read.h */
-
#define STRIP_NOTHING 0
#define STRIP_TRAILINGSPACE (1 << 0)
#define STRIP_COMMENTS (1 << 1)
@@ -77,12 +74,12 @@ typedef enum rpmParseState_e {
extern "C" {
#endif
-/**
+/** \ingroup rpmbuild
* Destroy uid/gid caches.
*/
void freeNames(void);
-/**
+/** \ingroup rpmbuild
* Return cached user name from user id.
* @todo Implement using hash.
* @param user id
@@ -90,7 +87,7 @@ void freeNames(void);
*/
/*@observer@*/ const char *getUname(uid_t uid);
-/**
+/** \ingroup rpmbuild
* Return cached user name.
* @todo Implement using hash.
* @param user name
@@ -98,7 +95,7 @@ void freeNames(void);
*/
/*@observer@*/ const char *getUnameS(const char *uname);
-/**
+/** \ingroup rpmbuild
* Return cached group name from group id.
* @todo Implement using hash.
* @param group id
@@ -106,7 +103,7 @@ void freeNames(void);
*/
/*@observer@*/ const char *getGname(gid_t gid);
-/**
+/** \ingroup rpmbuild
* Return cached group name.
* @todo Implement using hash.
* @param group name
@@ -114,156 +111,295 @@ void freeNames(void);
*/
/*@observer@*/ const char *getGnameS(const char *gname);
-/**
+/** \ingroup rpmbuild
* Return build hostname.
* @return build hostname
*/
/*@observer@*/ const char *const buildHost(void);
-/**
+/** \ingroup rpmbuild
* Return build time stamp.
* @return build time stamp
*/
/*@observer@*/ time_t *const getBuildTime(void);
-/**
+/** \ingroup rpmbuild
+ * Read next line from spec file.
+ * @param spec spec file control structure
+ * @param strip truncate comments?
* @return 0 on success, 1 on EOF, <0 on error
*/
int readLine(Spec spec, int strip);
-/** */
+/** \ingroup rpmbuild
+ * Stop reading from spec file, freeing resources.
+ * @param spec spec file control structure
+ */
void closeSpec(Spec spec);
-/** */
+/** \ingroup rpmbuild
+ * Truncate comment lines.
+ * @param s skip white space, truncate line at '#'
+ */
void handleComments(char *s);
-/* from build/part.h */
-
-/**
+/** \ingroup rpmbuild
* Check line for section separator, return next parser state.
* @param line from spec file
* @return next parser state
*/
rpmParseState isPart(const char *line);
-/* from build/misc.h */
-
-/** */
+/** \ingroup rpmbuild
+ * Parse a number.
+ * @param line from spec file
+ * @retval res pointer to int
+ * @return 0 on success, 1 on failure
+ */
int parseNum(const char *line, /*@out@*/int *res);
-/* from build/parse.h */
-
-/** */
+/** \ingroup rpmbuild
+ * Add changelog entry to header.
+ * @param h header
+ * @param time time of change
+ * @param name person who made the change
+ * @param text description of change
+ */
void addChangelogEntry(Header h, time_t time, const char *name, const char *text);
-/**
+/** \ingroup rpmbuild
+ * Parse %%build/%%install/%%clean section(s) of a spec file.
+ * @param spec spec file control structure
+ * @param parsePart current rpmParseState
* @return >= 0 next rpmParseState, < 0 on error
*/
int parseBuildInstallClean(Spec spec, rpmParseState parsePart);
-/**
+/** \ingroup rpmbuild
+ * Parse %%changelog section of a spec file.
+ * @param spec spec file control structure
* @return >= 0 next rpmParseState, < 0 on error
*/
int parseChangelog(Spec spec);
-/**
+/** \ingroup rpmbuild
+ * Parse %%description section of a spec file.
+ * @param spec spec file control structure
* @return >= 0 next rpmParseState, < 0 on error
*/
int parseDescription(Spec spec);
-/**
+/** \ingroup rpmbuild
+ * Parse %%files section of a spec file.
+ * @param spec spec file control structure
* @return >= 0 next rpmParseState, < 0 on error
*/
int parseFiles(Spec spec);
-/**
+/** \ingroup rpmbuild
+ * Parse tags from preamble of a spec file.
+ * @param spec spec file control structure
+ * @param initialPackage
* @return >= 0 next rpmParseState, < 0 on error
*/
int parsePreamble(Spec spec, int initialPackage);
-/**
+/** \ingroup rpmbuild
+ * Parse %%prep section of a spec file.
+ * @param spec spec file control structure
* @return >= 0 next rpmParseState, < 0 on error
*/
int parsePrep(Spec spec);
-/** */
+/** \ingroup rpmbuild
+ * Parse dependency relations from spec file and/or autogenerated output buffer.
+ * @param spec spec file control structure
+ * @param pkg package control structure
+ * @param field text to parse (e.g. "foo < 0:1.2-3, bar = 5:6.7")
+ * @param tag tag, identifies type of dependency
+ * @param index (0 always)
+ * @param flags dependency flags already known from context
+ * @return 0 on success, RPMERR_BADSPEC on failure
+ */
int parseRCPOT(Spec spec, Package pkg, const char *field, int tag, int index,
int flags);
-/**
+/** \ingroup rpmbuild
+ * Parse %%pre et al scriptlets from a spec file.
+ * @param spec spec file control structure
+ * @param parsePart current rpmParseState
* @return >= 0 next rpmParseState, < 0 on error
*/
int parseScript(Spec spec, int parsePart);
-/** */
+/** \ingroup rpmbuild
+ * Parse %%trigger et al scriptlets from a spec file.
+ * @param spec spec file control structure
+ * @param pkg package control structure
+ * @param field
+ * @param tag
+ * @return
+ */
int parseTrigger(Spec spec, Package pkg, char *field, int tag);
-/* from build/expression.h */
-
-/** */
-int parseExpressionBoolean(Spec, char *);
-
-/** */
-char *parseExpressionString(Spec, char *);
+/** \ingroup rpmbuild
+ * Evaluate boolean expression.
+ * @param spec spec file control structure
+ * @param expr expression to parse
+ * @return
+ */
+int parseExpressionBoolean(Spec spec, const char * expr);
-/* from build/build.h */
+/** \ingroup rpmbuild
+ * Evaluate string expression.
+ * @param spec spec file control structure
+ * @param expr expression to parse
+ * @return
+ */
+char *parseExpressionString(Spec spec, const char * expr);
-/** */
+/** \ingroup rpmbuild
+ * Run a build script, assembled from spec file scriptlet section.
+ *
+ * @param spec spec file control structure
+ * @param what type of script
+ * @param name name of scriptlet section
+ * @param sb lines that compose script body
+ * @param test don't execute scripts or package if testing
+ * @return 0 on success, RPMERR_SCRIPT on failure
+ */
int doScript(Spec spec, int what, const char *name, StringBuf sb, int test);
-/* from build/package.h */
-
-/** */
+/** \ingroup rpmbuild
+ * Find sub-package control structure by name.
+ * @param spec spec file control structure
+ * @param name (sub-)package name
+ * @param flag if PART_SUBNAME, then 1st package name is prepended
+ * @retval pkg package control structure
+ * @return 0 on success, 1 on failure
+ */
int lookupPackage(Spec spec, const char *name, int flag, /*@out@*/Package *pkg);
-/** */
+/** \ingroup rpmbuild
+ * Create and initialize package control structure.
+ * @param spec spec file control structure
+ * @return package control structure
+ */
/*@only@*/ Package newPackage(Spec spec);
-/** */
+/** \ingroup rpmbuild
+ * Destroy all packages associated with spec file.
+ * @param spec spec file control structure
+ */
void freePackages(Spec spec);
-/** */
-void freePackage(/*@only@*/ Package p);
-
-/* from build/reqprov.h */
+/** \ingroup rpmbuild
+ * Destroy package control structure.
+ * @param pkg package control structure
+ */
+void freePackage(/*@only@*/ Package pkg);
-/** */
+/** \ingroup rpmbuild
+ * Add dependency to header, filtering duplicates.
+ * @param spec spec file control structure
+ * @param h header
+ * @param depFlags (e.g. Requires: foo < 0:1.2-3, both "Requires:" and "<")
+ * @param depName (e.g. Requires: foo < 0:1.2-3, "foo")
+ * @param depEVR (e.g. Requires: foo < 0:1.2-3, "0:1.2-3")
+ * @param index (0 always)
+ * @return 0 always
+ */
int addReqProv(/*@unused@*/Spec spec, Header h,
- int flag, const char *name, const char *version, int index);
+ int flag, const char *depName, const char *depEVR, int index);
-/** */
+/** \ingroup rpmbuild
+ * Add rpmlib feature dependency.
+ * @param h header
+ * @param feature rpm feature name (i.e. "rpmlib(Foo)" for feature Foo)
+ * @param featureEVR rpm feature epoch/version/release
+ * @return 0 always
+ */
int rpmlibNeedsFeature(Header h, const char * feature, const char * featureEVR);
-/* from build/files.h */
-
-/** */
+/** \ingroup rpmbuild
+ * Post-build processing for binary package(s).
+ * @param spec spec file control structure
+ * @param installSpecialDoc
+ * @param test don't execute scripts or package if testing
+ * @return 0 on success
+ */
int processBinaryFiles(Spec spec, int installSpecialDoc, int test);
-/** */
+/** \ingroup rpmbuild
+ * Create and initialize header for source package.
+ * @param spec spec file control structure
+ */
void initSourceHeader(Spec spec);
-/** */
+/** \ingroup rpmbuild
+ * Post-build processing for source package.
+ * @param spec spec file control structure
+ * @return 0 on success
+ */
int processSourceFiles(Spec spec);
/* global entry points */
-/** */
+/** \ingroup rpmbuild
+ * Parse spec file into spec control structure.
+ * @retval specp spec file control structure
+ * @param specFile
+ * @param rootdir
+ * @param buildRoot
+ * @param inBuildArch
+ * @param passPhrase
+ * @param cookie
+ * @param anyarch
+ * @param force
+ * @return
+ */
int parseSpec(Spec *specp, const char *specFile, const char *rootdir,
const char *buildRoot, int inBuildArch, const char *passPhrase,
char *cookie, int anyarch, int force);
-/** */
-extern int (*parseSpecVec) (Spec *specp, const char *specFile, const char *rootdir,
- const char *buildRoot, int inBuildArch, const char *passPhrase,
+/** \ingroup rpmbuild
+ * @retval specp spec file control structure
+ * @param specFile
+ * @param rootdir
+ * @param buildRoot
+ * @param inBuildArch
+ * @param passPhrase
+ * @param cookie
+ * @param anyarch
+ * @param force
+ * @return
+ */
+extern int (*parseSpecVec) (Spec *specp, const char *specFile,
+ const char *rootdir, const char *buildRoot,
+ int inBuildArch, const char *passPhrase,
char *cookie, int anyarch, int force); /* XXX FIXME */
-/** */
+/** \ingroup rpmbuild
+ * Build stages state machine driver.
+ * @param spec spec file control structure
+ * @param what bit(s) to enable stages of build
+ * @param test don't execute scripts or package if testing
+ * @return 0 on success
+ */
int buildSpec(Spec spec, int what, int test);
-/** */
+/** \ingroup rpmbuild
+ * Generate binary package(s).
+ * @param spec spec file control structure
+ * @return 0 on success
+ */
int packageBinaries(Spec spec);
-/** */
+/** \ingroup rpmbuild
+ * Generate source package.
+ * @param spec spec file control structure
+ * @return 0 on success
+ */
int packageSources(Spec spec);
#ifdef __cplusplus
diff --git a/build/rpmspec.h b/build/rpmspec.h
index e55aed2ed..8cd9956b8 100644
--- a/build/rpmspec.h
+++ b/build/rpmspec.h
@@ -6,13 +6,13 @@
* The Spec and Package data structures used during build.
*/
-/**
+/** \ingroup rpmbuild
*/
typedef struct SpecStruct *Spec;
#include "rpmmacro.h"
-/**
+/** \ingroup rpmbuild
*/
struct TriggerFileEntry {
int index;
@@ -29,7 +29,7 @@ struct TriggerFileEntry {
#define RPMBUILD_DEFAULT_LANG "C"
-/**
+/** \ingroup rpmbuild
*/
struct Source {
/*@owned@*/ char *fullSource;
@@ -39,14 +39,14 @@ struct Source {
/*@owned@*/ struct Source *next;
};
-/**
+/** \ingroup rpmbuild
*/
typedef struct ReadLevelEntry {
int reading;
/*@dependent@*/ struct ReadLevelEntry *next;
} RLE_t;
-/**
+/** \ingroup rpmbuild
*/
typedef struct OpenFileInfo {
/*@only@*/ const char *fileName;
@@ -57,7 +57,7 @@ typedef struct OpenFileInfo {
/*@owned@*/ struct OpenFileInfo *next;
} OFI_t;
-/**
+/** \ingroup rpmbuild
*/
struct spectag {
int t_tag;
@@ -67,7 +67,7 @@ struct spectag {
/*@only@*/ const char *t_msgid;
};
-/**
+/** \ingroup rpmbuild
*/
struct spectags {
/*@owned@*/ struct spectag *st_t;
@@ -75,7 +75,7 @@ struct spectags {
int st_ntags;
};
-/**
+/** \ingroup rpmbuild
*/
struct speclines {
/*@only@*/ char **sl_lines;
@@ -83,7 +83,7 @@ struct speclines {
int sl_nlines;
};
-/**
+/** \ingroup rpmbuild
* The structure used to store values parsed from a spec file.
*/
struct SpecStruct {
@@ -138,7 +138,7 @@ struct SpecStruct {
/*@owned@*/ struct PackageStruct *packages; /*!< Package list. */
};
-/**
+/** \ingroup rpmbuild
* The structure used to store values for a package.
*/
struct PackageStruct {
@@ -173,7 +173,7 @@ struct PackageStruct {
/*@dependent@*/ struct PackageStruct *next;
};
-/**
+/** \ingroup rpmbuild
*/
typedef struct PackageStruct *Package;
@@ -181,31 +181,38 @@ typedef struct PackageStruct *Package;
extern "C" {
#endif
-/**
+/** \ingroup rpmbuild
+ * Create and initialize Spec structure.
*/
/*@only@*/ Spec newSpec(void);
-/**
+/** \ingroup rpmbuild
+ * Destroy Spec structure.
+ * @param spec spec file control structure
*/
void freeSpec(/*@only@*/ Spec spec);
-/**
+/** \ingroup rpmbuild
+ * @param spec spec file control structure
*/
extern void (*freeSpecVec) (Spec spec); /* XXX FIXME */
-/**
+/** \ingroup rpmbuild
*/
struct OpenFileInfo * newOpenFileInfo(void);
-/**
+/** \ingroup rpmbuild
+ * @param spec spec file control structure
*/
struct spectag *stashSt(Spec spec, Header h, int tag, const char *lang);
-/**
+/** \ingroup rpmbuild
+ * @param spec spec file control structure
*/
int addSource(Spec spec, Package pkg, const char *field, int tag);
-/**
+/** \ingroup rpmbuild
+ * @param spec spec file control structure
*/
int parseNoSource(Spec spec, const char *field, int tag);
diff --git a/build/spec.c b/build/spec.c
index 52f6dc3e9..31cb3a72f 100644
--- a/build/spec.c
+++ b/build/spec.c
@@ -15,6 +15,8 @@ extern MacroContext rpmGlobalMacroContext;
#define SKIPWHITE(_x) {while(*(_x) && (isspace(*_x) || *(_x) == ',')) (_x)++;}
#define SKIPNONWHITE(_x){while(*(_x) &&!(isspace(*_x) || *(_x) == ',')) (_x)++;}
+/**
+ */
static inline void freeTriggerFiles(/*@only@*/ struct TriggerFileEntry *p)
{
struct TriggerFileEntry *o, *q = p;
@@ -29,6 +31,8 @@ static inline void freeTriggerFiles(/*@only@*/ struct TriggerFileEntry *p)
}
}
+/**
+ */
static inline void freeCpioList(/*@only@*/ struct cpioFileMapping *cpioList, int cpioCount)
{
struct cpioFileMapping *p = cpioList;
@@ -43,6 +47,8 @@ static inline void freeCpioList(/*@only@*/ struct cpioFileMapping *cpioList, int
FREE(cpioList);
}
+/**
+ */
static inline void freeSources(/*@only@*/ struct Source *s)
{
struct Source *r, *t = s;
@@ -55,7 +61,6 @@ static inline void freeSources(/*@only@*/ struct Source *s)
}
}
-/** */
int lookupPackage(Spec spec, const char *name, int flag, /*@out@*/Package *pkg)
{
const char *pname;
@@ -95,7 +100,6 @@ int lookupPackage(Spec spec, const char *name, int flag, /*@out@*/Package *pkg)
return ((p == NULL) ? 1 : 0);
}
-/** */
Package newPackage(Spec spec)
{
Package p;
@@ -144,7 +148,6 @@ Package newPackage(Spec spec)
return p;
}
-/** */
void freePackage(/*@only@*/ Package p)
{
if (p == NULL)
@@ -170,7 +173,6 @@ void freePackage(/*@only@*/ Package p)
free(p);
}
-/** */
void freePackages(Spec spec)
{
Package p;
@@ -182,6 +184,8 @@ void freePackages(Spec spec)
}
}
+/**
+ */
static inline /*@owned@*/ struct Source *findSource(Spec spec, int num, int flag)
{
struct Source *p;
@@ -195,28 +199,6 @@ static inline /*@owned@*/ struct Source *findSource(Spec spec, int num, int flag
return NULL;
}
-#ifdef UNUSED
-static char *getSourceAux(Spec spec, int num, int flag, int full)
-{
- struct Source *p = spec->sources;
-
- p = findSource(spec, num, flag);
-
- return (p) ? (full ? p->fullSource : p->source) : NULL;
-}
-
-static char *getSource(Spec spec, int num, int flag)
-{
- return getSourceAux(spec, num, flag, 0);
-}
-
-static char *getFullSource(Spec spec, int num, int flag)
-{
- return getSourceAux(spec, num, flag, 1);
-}
-#endif /* UNUSED */
-
-/** */
int parseNoSource(Spec spec, const char *field, int tag)
{
const char *f, *fe;
@@ -261,7 +243,6 @@ int parseNoSource(Spec spec, const char *field, int tag)
return 0;
}
-/** */
int addSource(Spec spec, Package pkg, const char *field, int tag)
{
struct Source *p;
@@ -352,6 +333,8 @@ int addSource(Spec spec, Package pkg, const char *field, int tag)
return 0;
}
+/**
+ */
static inline struct speclines * newSl(void)
{
struct speclines *sl = NULL;
@@ -364,6 +347,8 @@ static inline struct speclines * newSl(void)
return sl;
}
+/**
+ */
static inline void freeSl(/*@only@*/struct speclines *sl)
{
int i;
@@ -375,6 +360,8 @@ static inline void freeSl(/*@only@*/struct speclines *sl)
free(sl);
}
+/**
+ */
static inline struct spectags * newSt(void)
{
struct spectags *st = NULL;
@@ -387,6 +374,8 @@ static inline struct spectags * newSt(void)
return st;
}
+/**
+ */
static inline void freeSt(/*@only@*/struct spectags *st)
{
int i;
@@ -401,7 +390,6 @@ static inline void freeSt(/*@only@*/struct spectags *st)
free(st);
}
-/** */
Spec newSpec(void)
{
Spec spec;
@@ -462,7 +450,6 @@ Spec newSpec(void)
return spec;
}
-/** */
void freeSpec(/*@only@*/ Spec spec)
{
struct OpenFileInfo *ofi;
@@ -527,7 +514,6 @@ void freeSpec(/*@only@*/ Spec spec)
free(spec);
}
-/** */
/*@only@*/ struct OpenFileInfo * newOpenFileInfo(void)
{
struct OpenFileInfo *ofi;
diff --git a/po/cs.po b/po/cs.po
index cdf437c3c..b1ecb1ecf 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 2000-08-23 22:24+0100\n"
"Last-Translator: Milan Kerslager <milan.kerslager@spsselib.hiedu.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
@@ -1593,243 +1593,243 @@ msgstr "pro sestavení nezadány ¾ádné spec soubory"
msgid "no tar files given for build"
msgstr "pro sestavení nezadány ¾ádné tar soubory"
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr "Nelze otevøít doèasný soubor."
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr "Provádìní(%s): %s\n"
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "Spu¹tìní %s selhalo (%s): %s"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "Návratový kód chyby ze %s: (%s)"
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr "chyba syntaxe pøi zpracování =="
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr "chyba syntaxe pøi zpracování &&"
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr "chyba syntaxe pøi zpracování ||"
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr "chyba pøi parsování ve výrazu"
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr "nedoplnìná ("
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr "- jen s èísly"
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr "! jen s èísly"
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr "typy musí souhlasit"
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr "* / nejsou podporovány pro øetìzce"
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr "- není podporováno pro øetìzce"
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr "&& a || není podporováno pro øetìzce"
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr "chyba syntaxe ve výrazu"
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "TIMECHECK selhal: %s\n"
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr "Chybí '(' v %s %s"
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr "Chybí ')' v %s(%s"
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr "Neplatný %s token: %s"
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr "Neprázdný znak následuje %s(): %s"
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr "©patná syntaxe: %s(%s)"
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "©patná práva: %s(%s)"
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "©patná práva adresáøe: %s(%s)"
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "Neobvyklá délka locale: \"%.*s\" v %%lang(%s)"
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr "Duplicitní locale %.*s v %%lang(%s)"
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr "Dosa¾en limit pro %%docdir"
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr "Jen jeden parametr pro %%docdir"
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr "Dav soubory na jednom øádku: %s"
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "Soubor musí zaèínat \"/\": %s"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr "Nelze míchat speciální %%doc s ostatnímí formáty: %s"
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr "Soubor uveden dvakrát: %s"
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr "Symbolická linka ukazuje na BuildRoot: %s -> %s"
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Soubor nesouhlasí s prefixem (%s): %s"
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr "Soubor nenalezen: %s"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "©patný vlastník/skupina: %s\n"
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Soubor %4d: %07o %s.%s\t %s\n"
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "Soubor potøebuje úvodní \"/\": %s"
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr "Soubor nenalezen: %s"
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr "Nemohu otevøít %%files soubor %s: %s"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr "øádek: %s"
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr "©patný soubor: %s: %s"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr "©patný vlastník/skupina: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr "Nemohu spustit %s: %s"
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr "Nemohu provést fork %s: %s"
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr "%s selhalo"
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr "Nemohu zapsat v¹echna data do %s"
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Hledám %s: (pou¾it %s)...\n"
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr "Selhalo vyhledání %s:"
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Zpracovávám soubory: %s-%s-%s\n"
@@ -1855,126 +1855,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr "Nemohu získat jméno poèítaèe: %s\n"
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr "vytváøení archívu selhalo na souboru %s: %s"
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr "zápis cpio_copy selhal: %s"
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr "ètení cpio_copy selhalo: %s"
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "Nemohu otevøít PreIn soubor: %s"
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "Nemohu otevøít PreUn soubor: %s"
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "Nemohu otevøít PostIn soubor: %s"
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "Nemohu otevøít PostUn soubor: %s"
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "Nemohu otevøít VerifyScript soubor: %s"
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "Nemohu otevøít soubor se spu¹tí (trigger): %s"
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: otevøení %s: %s\n"
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: ètení %s: %s\n"
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s není RPM balíèek\n"
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: ètení hlavièky z %s\n"
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr "©patná CSA data"
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr "Generuji podpis: %d\n"
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Nemohu otevøít %s: %s\n"
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr "Nemohu zapsat balíèek: %s"
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Nemohu otevøít cíl pro podepsání %s: %s"
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "Nemohu pøeèíst ikonu %s: %s"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "Nemohu zapsat balíèek %s: %s"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "Nemohu pøeèíst ikonu %s: %s"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "Nemohu zapsat balíèek %s: %s"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapsáno: %s\n"
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Nemohu vygenerovat jméno souboru pro balíèek %s: %s\n"
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
@@ -1984,50 +1984,50 @@ msgstr "nemohu vytvoøit %s: %s\n"
msgid "line %d: second %s"
msgstr "øádek: %d: druhý %s"
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr "Polo¾ky %%changelog musí zaèínat znakem *"
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr "nekompletní polo¾ka %%changelog"
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr "¹patný datum v %%changelog: %s"
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr "%%changelog není seøazen sestupnì podle èasu"
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr "chybìjící jméno v %%changelog"
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr "¾ádný popis v %%changelog"
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "øádek %d: Chyba pøi parsování %%description: %s"
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "øádek %d: ¹patná volba %s: %s"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr "øádek %d: Pøíli¹ mnoho jmen: %s"
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "øádek %d: Balíèek neexistuje: %s"
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "øádek %d: Druhé description"
@@ -2040,118 +2040,118 @@ msgstr "øádek %d: Chyba pøi parsování %%files: %s"
msgid "line %d: Second %%files list"
msgstr "øádek %d: Druhý %%files seznam"
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Architektura je vyøazena: %s"
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr "Architektura není vyøazena: %s"
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr "OS je vyøazen: %s"
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr "OS není vyøazen: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr "Polo¾ka %s musí být v balíèku pøítomna: %s"
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Duplikovaná polo¾ka %s v balíèku: %s"
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr "Nemohu otevøít ikonu %s: %s"
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr "Nemohu pøeèíst ikonu %s: %s"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr "Neznámý typ ikony: %s"
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "øádek %d: Poèkozená znaèka: %s"
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "øádek %d: Prázdná znaèka: %s"
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "øádek %d: Nepøípustný znak '-' v %s: %s"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "BuildRoot nemù¾e být \"/\": %s"
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "øádek %d: Prefixy nesmí konèit znakem \"/\": %s"
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "øádek %d: Docdir musí zaèínat '/': %s"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "øádek %d: Polo¾ka Epoch/Serial musí být èíslo: %s"
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "øádek %d: ©patné èíslo %s: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "øádek %d: ©patný formát BuildArchitecture: %s"
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "Interní chyba: ©patná znaèka: %d"
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr "¹patná specifikace balíèku: %s"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr "Balíèek ji¾ existuje: %s"
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "øádek %d: Neznámá znaèka: %s"
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr "Spec soubor nemù¾e pou¾ít BuildRoot"
@@ -2215,7 +2215,7 @@ msgstr "øádek %d: ©patný parametr pro %%patch: %s"
msgid "line %d: second %%prep"
msgstr "øádek %d: druhý %%prep"
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
@@ -2223,99 +2223,99 @@ msgstr ""
"øádek %d: Polo¾ky v závislostech musí zaèínat alfanumerickým znakem, '_' "
"nebo '/': %s"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr "øádek %d: Jméno souboru není dovoleno: %s"
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "øádek %d: Jméno s verzí není dovoleno: %s"
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr "øádek %d: Vy¾adována verze: %s"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "øádek %d: spou¹tì (triggery) musí mít --: %s"
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "øádek %d: Chyba pøi parsování %s: %s"
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "øádek %d: jméno skriptu musí zaèínat '/': %s"
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr "øádek %d: Druhý %s"
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "øádek %d: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Nemohu otevøít %s: %s\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr "Neuzavøený %%if"
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s:%d: parseExpressionBoolean vrátil %d"
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: %%else bez poèíteèního if"
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: %%endif bez poèáteèního if"
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr "po¹kozený pøíkaz %%include"
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr "®ádné architektury pro sestavení"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr "Balíèek nemá ¾ádné %%description: %s"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "archive = %s, fs = %s\n"
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr "øádek %d: ©patné èíslo: %s"
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "øádek %d: ©patné èíslo %s: %d"
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "øádek %d: ©patné èíslo %s: %s\n"
diff --git a/po/da.po b/po/da.po
index 4c4a7ed1b..b9af0621a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 2000-03-07 05:17+01:00\n"
"Last-Translator: K. Christiansen <kenneth@gnu.org>\n"
"Language-Team: Danish/Dansk <dansk@klid.dk>\n"
@@ -1558,243 +1558,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1820,126 +1820,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "Kan ikke åbne spec-fil %s: %s\n"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "Kan ikke åbne spec-fil %s: %s\n"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "Kan ikke åbne spec-fil %s: %s\n"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "Kan ikke åbne spec-fil %s: %s\n"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1949,50 +1949,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -2005,118 +2005,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2180,105 +2180,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/de.po b/po/de.po
index e7fd45011..13d1d122c 100644
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 1998-08-03 18:02+02:00\n"
"Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n"
"Language-Team: German <de@li.org>\n"
@@ -1749,261 +1749,261 @@ msgid "no tar files given for build"
msgstr "Es wurde keine tar-Datei für die Erstellung angegeben"
# , c-format
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
#, fuzzy
msgid "Unable to open temp file."
msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
# , c-format
-#: build/build.c:192
+#: build/build.c:193
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "Hole %s heraus\n"
-#: build/build.c:198
+#: build/build.c:199
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
#, fuzzy
msgid "syntax error while parsing =="
msgstr "? im Ausdruck erwartet"
-#: build/expression.c:238
+#: build/expression.c:245
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "? im Ausdruck erwartet"
-#: build/expression.c:247
+#: build/expression.c:254
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "? im Ausdruck erwartet"
-#: build/expression.c:287
+#: build/expression.c:294
#, fuzzy
msgid "parse error in expression"
msgstr "? im Ausdruck erwartet"
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
#, fuzzy
msgid "syntax error in expression"
msgstr "? im Ausdruck erwartet"
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "fehlende { nach %{"
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "fehlender ':' bei %s:%d"
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
# , c-format
-#: build/files.c:387
+#: build/files.c:414
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Lesen von %s fehlgeschlagen: %s."
# , c-format
-#: build/files.c:397
+#: build/files.c:424
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
# , c-format
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/files.c:715
+#: build/files.c:753
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "Verschiebungen müssen mit einem »/« beginnen"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
# , c-format
-#: build/files.c:817
+#: build/files.c:859
#, fuzzy, c-format
msgid "File listed twice: %s"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
# , c-format
-#: build/files.c:1016
+#: build/files.c:1062
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: build/files.c:1026
+#: build/files.c:1072
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "Datei auf dem Server nicht gefunden"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
# , c-format
-#: build/files.c:1081
+#: build/files.c:1127
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "Datei auf dem Server nicht gefunden"
-#: build/files.c:1236
+#: build/files.c:1286
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "Fehler: kann Datei %s nicht öffnen\n"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
# , c-format
-#: build/files.c:1571
+#: build/files.c:1621
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "Konnte pgp nicht durchführen"
-#: build/files.c:1643
+#: build/files.c:1695
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Konnte Signatur-Ziel (»sigtarget«) nicht lesen"
-#: build/files.c:1725
+#: build/files.c:1777
#, fuzzy, c-format
msgid "%s failed"
msgstr "pgp fehlgeschlagen"
# , c-format
-#: build/files.c:1729
+#: build/files.c:1781
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "anlegen von %s fehlgeschlagen\n"
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
# , c-format
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "anlegen von %s fehlgeschlagen\n"
# , c-format
-#: build/files.c:2001
+#: build/files.c:2061
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -2030,135 +2030,135 @@ msgid "Could not canonicalize hostname: %s\n"
msgstr ""
# , c-format
-#: build/pack.c:48
+#: build/pack.c:52
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, fuzzy, c-format
msgid "cpio_copy read failed: %s"
msgstr "lesen fehlgeschlagen: %s (%d)"
-#: build/pack.c:151
+#: build/pack.c:165
#, fuzzy, c-format
msgid "Could not open PreIn file: %s"
msgstr "Fehler: kann Datei %s nicht öffnen\n"
-#: build/pack.c:158
+#: build/pack.c:172
#, fuzzy, c-format
msgid "Could not open PreUn file: %s"
msgstr "Fehler: kann Datei %s nicht öffnen\n"
-#: build/pack.c:165
+#: build/pack.c:179
#, fuzzy, c-format
msgid "Could not open PostIn file: %s"
msgstr "Fehler: kann Datei %s nicht öffnen\n"
-#: build/pack.c:172
+#: build/pack.c:186
#, fuzzy, c-format
msgid "Could not open PostUn file: %s"
msgstr "Fehler: kann Datei %s nicht öffnen\n"
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
# , c-format
-#: build/pack.c:221
+#: build/pack.c:235
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: build/pack.c:231
+#: build/pack.c:245
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: build/pack.c:252
+#: build/pack.c:266
#, fuzzy, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "Fehler: %s scheint zu keinem RPM-Paket zu gehören\n"
-#: build/pack.c:258
+#: build/pack.c:272
#, fuzzy, c-format
msgid "readRPM: reading header from %s\n"
msgstr "Fehler beim Eintrag %s von %s"
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr "PGP-Signatur generieren"
# , c-format
-#: build/pack.c:418
+#: build/pack.c:432
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen\n"
# , c-format
-#: build/pack.c:455
+#: build/pack.c:469
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
-#: build/pack.c:470
+#: build/pack.c:484
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "Nicht möglich %s zu schreiben"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "kann Datei %s nicht öffnen: "
@@ -2168,51 +2168,51 @@ msgstr "kann Datei %s nicht öffnen: "
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
# , c-format
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, fuzzy, c-format
msgid "line %d: Package does not exist: %s"
msgstr "Paket %s wird nicht in %s aufgeführt"
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -2225,121 +2225,121 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Nicht möglich %s zu schreiben"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(unbekannter Typ)"
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "Verschiebungen müssen mit einem »/« beginnen"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "ungültige Paket-Nummer: %s\n"
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "ungültige Paket-Nummer: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "fehlende Architektur für %s bei %s:%d"
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Optionen der Paketauswahl:"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2405,110 +2405,110 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "Verschiebungen müssen mit einem »/« beginnen"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "Paket %s wird nicht in %s aufgeführt"
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "Paket %s wird nicht in %s aufgeführt"
# , c-format
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
# , c-format
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
#, fuzzy
msgid "No buildable architectures"
msgstr "Paket-Architektur nicht überprüfen"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "Paket %s wird nicht in %s aufgeführt"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, fuzzy, c-format
msgid "line %d: Bad number: %s"
msgstr "ungültige Paket-Nummer: %s\n"
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
diff --git a/po/es.po b/po/es.po
index 626edee2b..339c25342 100644
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1525,243 +1525,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1787,126 +1787,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1916,50 +1916,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1972,118 +1972,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2147,105 +2147,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/eu_ES.po b/po/eu_ES.po
index 787446fee..f715a7b45 100644
--- a/po/eu_ES.po
+++ b/po/eu_ES.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1525,243 +1525,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1787,126 +1787,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1916,50 +1916,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1972,118 +1972,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2147,105 +2147,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 9b1206ec5..821239ddc 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"Content-Type: text/plain; charset=\n"
@@ -1703,250 +1703,250 @@ msgstr "käännökselle ei annettu määrittelytiedostoja"
msgid "no tar files given for build"
msgstr "käännökselle ei määritelty tar-tiedostoja"
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
#, fuzzy
msgid "Unable to open temp file."
msgstr "En voi avata %s luettavaksi: %s."
-#: build/build.c:192
+#: build/build.c:193
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "Haen: %s\n"
-#: build/build.c:198
+#: build/build.c:199
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "%s:n avaus ei onnistunut: %s\n"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
#, fuzzy
msgid "syntax error while parsing =="
msgstr "odotin '?'-merkkiä ilmauksessa"
-#: build/expression.c:238
+#: build/expression.c:245
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "odotin '?'-merkkiä ilmauksessa"
-#: build/expression.c:247
+#: build/expression.c:254
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "odotin '?'-merkkiä ilmauksessa"
-#: build/expression.c:287
+#: build/expression.c:294
#, fuzzy
msgid "parse error in expression"
msgstr "odotin '?'-merkkiä ilmauksessa"
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
#, fuzzy
msgid "syntax error in expression"
msgstr "odotin '?'-merkkiä ilmauksessa"
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "puuttuva '{' '%':n jälkeen"
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "puuttuva ':', %s:%d"
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "En voi lukea %s: %s."
-#: build/files.c:397
+#: build/files.c:424
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "En voi lukea %s: %s."
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "en voinut avata %s: %s"
-#: build/files.c:715
+#: build/files.c:753
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "siirtojen pitää alkaa /-merkillä"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, fuzzy, c-format
msgid "File listed twice: %s"
msgstr "En voi lukea %s: %s."
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "En voi lukea %s: %s."
-#: build/files.c:1026
+#: build/files.c:1072
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "Tiedostoa ei löytynyt palvelimelta"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "en voinut avata %s: %s"
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "Tiedostoa ei löytynyt palvelimelta"
-#: build/files.c:1236
+#: build/files.c:1286
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "virhe: tiedostoa %s ei voi avata\n"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "en voinut avata %s: %s"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "En voinut ajaa pgp:tä"
-#: build/files.c:1643
+#: build/files.c:1695
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "En voinut ajaa pgp:tä"
-#: build/files.c:1725
+#: build/files.c:1777
#, fuzzy, c-format
msgid "%s failed"
msgstr "pgp epäonnistui"
-#: build/files.c:1729
+#: build/files.c:1781
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "%s:n luonti epäonnistui\n"
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "%s:n luonti epäonnistui\n"
-#: build/files.c:2001
+#: build/files.c:2061
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "en voinut avata %s: %s"
@@ -1972,126 +1972,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "en voinut avata %s: %s"
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, fuzzy, c-format
msgid "cpio_copy read failed: %s"
msgstr "luku epäonnistui: %s (%d)"
-#: build/pack.c:151
+#: build/pack.c:165
#, fuzzy, c-format
msgid "Could not open PreIn file: %s"
msgstr "virhe: tiedostoa %s ei voi avata\n"
-#: build/pack.c:158
+#: build/pack.c:172
#, fuzzy, c-format
msgid "Could not open PreUn file: %s"
msgstr "virhe: tiedostoa %s ei voi avata\n"
-#: build/pack.c:165
+#: build/pack.c:179
#, fuzzy, c-format
msgid "Could not open PostIn file: %s"
msgstr "virhe: tiedostoa %s ei voi avata\n"
-#: build/pack.c:172
+#: build/pack.c:186
#, fuzzy, c-format
msgid "Could not open PostUn file: %s"
msgstr "virhe: tiedostoa %s ei voi avata\n"
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: build/pack.c:231
+#: build/pack.c:245
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "En voi lukea %s: %s."
-#: build/pack.c:252
+#: build/pack.c:266
#, fuzzy, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "virhe: %s ei vaikuta RPM paketilta\n"
-#: build/pack.c:258
+#: build/pack.c:272
#, fuzzy, c-format
msgid "readRPM: reading header from %s\n"
msgstr "virhe luettaessa tietuetta %s %s:stä"
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr "generoi PGP-allekirjoitus"
-#: build/pack.c:418
+#: build/pack.c:432
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "%s:n avaus epäonnistui\n"
-#: build/pack.c:455
+#: build/pack.c:469
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:470
+#: build/pack.c:484
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "en voinut avata tiedostoa %s: "
@@ -2101,50 +2101,50 @@ msgstr "en voinut avata tiedostoa %s: "
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "en voinut avata %s: %s"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, fuzzy, c-format
msgid "line %d: Package does not exist: %s"
msgstr "paketti %s ei ole %s:ssä"
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -2157,118 +2157,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(tuntematon tyyppi)"
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "en voinut avata %s: %s"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "siirtojen pitää alkaa /-merkillä"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "virheellinen paketin numero: %s\n"
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "virheellinen paketin numero: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "%s:n puuttuva arkkitehtuuri %s:%d"
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Paketin määrittelyparametrit:"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2332,107 +2332,107 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "siirtojen pitää alkaa /-merkillä"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "paketti %s ei ole %s:ssä"
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "paketti %s ei ole %s:ssä"
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "en voinut avata %s: %s"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "en voinut avata %s: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "%s:n avaus epäonnistui\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
#, fuzzy
msgid "No buildable architectures"
msgstr "älä tarkista paketin arkkitehtuuria"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "paketti %s ei ole %s:ssä"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, fuzzy, c-format
msgid "line %d: Bad number: %s"
msgstr "virheellinen paketin numero: %s\n"
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "virheellinen paketin numero: %s\n"
diff --git a/po/fr.po b/po/fr.po
index 9e9438d6f..cc27e213f 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,5 +1,5 @@
msgid ""
-msgstr "POT-Creation-Date: 2001-01-10 17:13-0500\n"
+msgstr "POT-Creation-Date: 2001-01-11 08:57-0500\n"
#: build.c:26
#, fuzzy, c-format
@@ -1722,245 +1722,245 @@ msgstr "aucun package n'a été spécifié pour la construction"
msgid "no tar files given for build"
msgstr "aucun package n'a été spécifié pour la construction"
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
#, fuzzy
msgid "Unable to open temp file."
msgstr "impossible d'ouvrir: %s\n"
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "La construction a échoué.\n"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:397
+#: build/files.c:424
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:715
+#: build/files.c:753
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "les arguments de --root (-r) doivent commencer par un /"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: build/files.c:1236
+#: build/files.c:1286
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1643
+#: build/files.c:1695
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1725
+#: build/files.c:1777
#, fuzzy, c-format
msgid "%s failed"
msgstr "La construction a échoué.\n"
-#: build/files.c:1729
+#: build/files.c:1781
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1986,126 +1986,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:231
+#: build/pack.c:245
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr " --sign - genère une signature PGP"
-#: build/pack.c:418
+#: build/pack.c:432
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:455
+#: build/pack.c:469
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:470
+#: build/pack.c:484
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
@@ -2115,50 +2115,50 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -2171,118 +2171,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "les arguments de --root (-r) doivent commencer par un /"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Options de spécification de package:"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2346,107 +2346,107 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "les arguments de --root (-r) doivent commencer par un /"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "impossible d'ouvrir: %s\n"
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
#, fuzzy
msgid "No buildable architectures"
msgstr "%s ne peut être construit sur cette architecture\n"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/gl.po b/po/gl.po
index 626edee2b..339c25342 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1525,243 +1525,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1787,126 +1787,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1916,50 +1916,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1972,118 +1972,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2147,105 +2147,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/hu.po b/po/hu.po
index 626edee2b..339c25342 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1525,243 +1525,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1787,126 +1787,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1916,50 +1916,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1972,118 +1972,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2147,105 +2147,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/id.po b/po/id.po
index 626edee2b..339c25342 100644
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1525,243 +1525,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1787,126 +1787,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1916,50 +1916,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1972,118 +1972,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2147,105 +2147,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/is.po b/po/is.po
index a4e46add7..1a5f0f960 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 2000-08-02 13:00+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
@@ -1558,243 +1558,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1820,126 +1820,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "Get ekki opnað spec skrána %s: %s\n"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "Gat ekki endurnefnt %s sem %s: %s\n"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "Get ekki opnað spec skrána %s: %s\n"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "Get ekki opnað spec skrána %s: %s\n"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1949,50 +1949,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -2005,118 +2005,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2180,105 +2180,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/it.po b/po/it.po
index 626edee2b..339c25342 100644
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1525,243 +1525,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1787,126 +1787,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1916,50 +1916,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1972,118 +1972,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2147,105 +2147,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index e1cf4c8e1..f4a166734 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 1999-12-01 22:49 +JST\n"
"Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
"Language-Team: JRPM <jrpm@linux.or.jp>\n"
@@ -88,7 +88,7 @@ msgstr "¥¿¡¼¥²¥Ã¥È %s ÍѤ˺îÀ®Ãæ\n"
# build root [BuildRoot]
# net share [¥Í¥Ã¥È¶¦Í­]
# reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë]
-# $Id: ja.po,v 1.146 2001/01/10 22:19:57 jbj Exp $
+# $Id: ja.po,v 1.147 2001/01/11 14:13:06 jbj Exp $
#: rpm.c:185 rpmqv.c:386
#, c-format
msgid "rpm: %s\n"
@@ -1665,248 +1665,248 @@ msgstr "ºîÀ®¤Î¤¿¤á¤Î spec ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
msgid "no tar files given for build"
msgstr "ºîÀ®(build)¤Î¤¿¤á¤Î tar ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
#, fuzzy
msgid "Unable to open temp file."
msgstr "°ì»þ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó"
-#: build/build.c:192
+#: build/build.c:193
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "¼Â¹ÔÃæ: %s\n"
-#: build/build.c:198
+#: build/build.c:199
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "%s ¤Î¼Â¹Ô¤Ë¼ºÇÔ (%s)"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "%s ¤ÎÉÔÀµ¤Ê½ªÎ»¥¹¥Æ¡¼¥¿¥¹ (%s)"
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr "¹½Ê¸²òÀÏÃæ¤Îʸˡ¥¨¥é¡¼ =="
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr "¹½Ê¸²òÀÏÃæ¤Îʸˡ¥¨¥é¡¼ &&"
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr "¹½Ê¸²òÀÏÃæ¤Îʸˡ¥¨¥é¡¼ ||"
-#: build/expression.c:287
+#: build/expression.c:294
#, fuzzy
msgid "parse error in expression"
msgstr "¼°Ãæ¤Ç¹½Ê¸²òÀÏ¥¨¥é¡¼"
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr "°ìÃפ·¤Ê¤¤ ("
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr "- ¿ô¤Î¤ß"
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr "! ¿ô¤Î¤ß"
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr "·¿¤Ï°ìÃפ·¤Æ¤¤¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr "* / ¤Ïʸ»úÎóÍѤ˥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr "- ¤Ïʸ»úÎóÍѤ˥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr "&& ¤È || ¤Ïʸ»úÎóÍѤ˥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
#, fuzzy
msgid "syntax error in expression"
msgstr "¼°Ãæ¤Çʸˡ¥¨¥é¡¼"
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "TIMECHECK ¼ºÇÔ: %s\n"
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "%s %s ¤Ç '('¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "')' ¤¬¤¢¤ê¤Þ¤»¤ó %s(%s "
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr "̵¸ú¤Ê %s ¤Î¥È¡¼¥¯¥ó: %s"
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr "%s() ¤Ë³¤¯¶õÇò¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-#: build/files.c:387
+#: build/files.c:414
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "ÉÔÀµ¤Êʸˡ: %s(%s)"
-#: build/files.c:397
+#: build/files.c:424
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "ÉÔÀµ¤Ê¥â¡¼¥É¥¹¥Ú¥Ã¥¯: %s(%s)"
-#: build/files.c:409
+#: build/files.c:436
#, fuzzy, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "ÉÔÀµ¤Ê¥Ç¥£¥ì¥¯¥È¥ê¥â¡¼¥É¥¹¥Ú¥Ã¥¯: %s(%s)"
-#: build/files.c:533
+#: build/files.c:564
#, fuzzy
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "°Û¾ï¤Ê¥í¥«¡¼¥ëĹ: \"%.*s\" %%lang(%s)"
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr "Ê£¿ô¤Î¥í¥«¡¼¥ë %.*s %%lang(%s)"
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr "%%docdir ¤Î¸Â³¦¤Ë㤷¤Þ¤·¤¿"
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr "%%docdir ¤Î°ú¿ô¤Ï1¤Ä¤Î¤ß¤Ç¤¹"
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr "1¹Ô¤Ë2¤Ä¤Î¥Õ¥¡¥¤¥ë: %s"
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "¥Õ¥¡¥¤¥ë¤Ï \"/\" ¤«¤é»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr "¾¤Î¥Õ¥©¡¼¥à¤ÇÆÃÊÌ¤Ê %%doc ¤òº®¤¼¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr "¥Õ¥¡¥¤¥ë¤¬2²óɽµ­¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "¥Õ¥¡¥¤¥ë¤Ï prefix (%s) ¤È°ìÃפ·¤Þ¤»¤ó: %s"
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô/¥°¥ë¡¼¥×: %s\n"
-#: build/files.c:1081
+#: build/files.c:1127
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "¥Õ¥¡¥¤¥ë %4d: %07o %s.%s\t %s\n"
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "¥Õ¥¡¥¤¥ë¤ÏÀèƬ¤Ë \"/\" ¤¬É¬ÍפǤ¹: %s"
-#: build/files.c:1184
+#: build/files.c:1232
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó(by glob): %s"
-#: build/files.c:1236
+#: build/files.c:1286
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "%%files ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr "¹ÔÌÜ: %s"
-#: build/files.c:1571
+#: build/files.c:1621
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô/¥°¥ë¡¼¥×: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/files.c:1643
+#: build/files.c:1695
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "%s ¤ò fork ¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr "%s ¼ºÇÔ"
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr "Á´¤Æ¤Î¥Ç¡¼¥¿¤ò %s ¤Ë½ñ¤¯¤³¤È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-#: build/files.c:1850
+#: build/files.c:1906
#, fuzzy, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "%s ¤òõ¤·¤Æ¤¤¤Þ¤¹: (%s ¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹)...\n"
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "%s ¤ò¸«¤Ä¤±¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿:"
-#: build/files.c:2001
+#: build/files.c:2061
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "¥Õ¥¡¥¤¥ë¤Î½èÍýÃæ: %s-%s-%s\n"
@@ -1932,126 +1932,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr "¥Û¥¹¥È̾¤òÀµ¼°¤Ê¤â¤Î¤Ë¤Ç¤­¤Þ¤»¤ó: %s\n"
-#: build/pack.c:48
+#: build/pack.c:52
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Ç¥¢¡¼¥«¥¤¥Ö¤ÎºîÀ®¤Ë¼ºÇÔ: %s"
-#: build/pack.c:68
+#: build/pack.c:74
#, fuzzy, c-format
msgid "cpio_copy write failed: %s"
msgstr "cpio_copy ¤Ç½ñ¤­¹þ¤ß¼ºÇÔ: %s"
-#: build/pack.c:75
+#: build/pack.c:81
#, fuzzy, c-format
msgid "cpio_copy read failed: %s"
msgstr "cpio_copy ¤ÇÆɤ߹þ¤ß¼ºÇÔ: %s"
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "PreIn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "PreUn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "PostIn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "PostUn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "VerifyScript ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "¥È¥ê¥¬¡¼¥¹¥¯¥ê¥×¥È¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:221
+#: build/pack.c:235
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: %s ¤Î¥ª¡¼¥×¥ó: %s\n"
-#: build/pack.c:231
+#: build/pack.c:245
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: %s ¤ÎÆɤ߹þ¤ß: %s\n"
-#: build/pack.c:252
+#: build/pack.c:266
#, fuzzy, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s ¤Ï RPM ¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n"
-#: build/pack.c:258
+#: build/pack.c:272
#, fuzzy, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: %s ¤«¤é¤Î¥Ø¥Ã¥À¤ÎÆɤ߹þ¤ß\n"
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr "ÉÔÀµ¤Ê CSA ¥Ç¡¼¥¿"
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr "½ð̾¤ÎÀ¸À®Ãæ: %d\n"
-#: build/pack.c:418
+#: build/pack.c:432
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
-#: build/pack.c:470
+#: build/pack.c:484
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "sigtarget ¤ÎÆɤ߹þ¤ß¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr "½ñ¤­¹þ¤ßÃæ: %s\n"
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Î ½ÐÎÏ¥Õ¥¡¥¤¥ë̾¤òÀ¸À®¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s\n"
-#: build/pack.c:619
+#: build/pack.c:633
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n"
@@ -2061,50 +2061,50 @@ msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n"
msgid "line %d: second %s"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%s"
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr "%%chagelog ¥¨¥ó¥È¥ê¤Ï * ¤Ç»Ï¤Þ¤é¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr "ÉÔ´°Á´¤Ê %%changelog ¥¨¥ó¥È¥ê"
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr "%%changelog Ãæ¤ÎÉÔÀµ¤ÊÆüÉÕ: %s"
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr "%%changelog ¤Ï½½¿Ê¿ô¤ÎǯÂå½ç¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤»¤ó"
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr "%%changelog Ãæ¤Ë̾Á°¤¬¤¢¤ê¤Þ¤»¤ó"
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr "%%changelog Ãæ¤ËÀâÌÀ¤¬¤¢¤ê¤Þ¤»¤ó"
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "%d ¹ÔÌÜ: %%description ¤Î²òÀÏ¥¨¥é¡¼: %s"
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê¥ª¥×¥·¥ç¥ó %s:%s"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr "%d ¹ÔÌÜ: ̾Á°¤¬Â¿¤¹¤®¤Þ¤¹: %s"
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "%d ¹ÔÌÜ: ¥Ñ¥Ã¥±¡¼¥¸¤¬Â¸ºß¤·¤Þ¤»¤ó: %s"
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤÎÀâÌÀ"
@@ -2117,118 +2117,118 @@ msgstr "%d ¹ÔÌÜ: %%files ¤Î²òÀÏ¥¨¥é¡¼: %s"
msgid "line %d: Second %%files list"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%%files ¥ê¥¹¥È"
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr "¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr "¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr "OS ¤Ï´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr "%s ¥Õ¥£¡¼¥ë¥É¤Ï¥Ñ¥Ã¥±¡¼¥¸Ãæ¤ËɬÍפǤ¹: %s"
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤ÎÆó½Å¤Î %s ¥¨¥ó¥È¥ê: %s"
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr "ÉÔÌÀ¤Ê¥¢¥¤¥³¥ó¥¿¥¤¥×: %s"
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "%d ¹ÔÌÜ: ÉÔ´°Á´¤Ê·Á¤Î¥¿¥°: %s"
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "%d ¹ÔÌÜ: ¶õ¤Î¥¿¥°: %s"
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "%d ¹ÔÌÜ: %s Ãæ¤ËÉÔÀµ¤Êʸ»ú '-' : %s"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "%d ¹ÔÌÜ: BuildRoot ¤Ï \"/\" ¤Ë¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "%d ¹ÔÌÜ: Prefixes ¤Ï \"/\" ¤Ç½ª¤ï¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "%d ¹ÔÌÜ: Docdir ¤Ï '/' ¤Ç»Ï¤Þ¤é¤Ê¤¯¤Æ¤Ï¤¤¤±¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "%d ¹ÔÌÜ: Epoch/Serial ¥Õ¥£¡¼¥ë¥É¤ÏÈÖ¹æ¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê BuildArchitecture ¥Õ¥©¡¼¥Þ¥Ã¥È: %s"
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "ÆâÉô¥¨¥é¡¼: ¤Ë¤»¤Î¥¿¥° %d"
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr "ÉÔÀµ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤Î»ØÄê: %s"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹: %s"
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÌÀ¤Ê¥¿¥°: %s"
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤Ï BuildRoot ¤ò»ÈÍѤǤ­¤Þ¤»¤ó"
@@ -2292,108 +2292,108 @@ msgstr "%d ¹ÔÌÜ: %%patch ¤Ø¤ÎÉÔÀµ¤Ê°ú¿ô: %s"
msgid "line %d: second %%prep"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%%prep"
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
"%d ¹ÔÌÜ: °Í¸À­¥È¡¼¥¯¥ó¤Ï±Ñ¿ô»ú¡¢'_'¡¢'/' ¤Ç»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "%d ¹ÔÌÜ: ¥Õ¥¡¥¤¥ë̾¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥óÉÕ¤±¤µ¤ì¤¿¥Õ¥¡¥¤¥ë̾¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹: %s"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "%d ¹ÔÌÜ: ¥È¥ê¥¬¡¼¤Ï -- ¤¬¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "%d ¹ÔÌÜ: %s ¤Î¹½Ê¸²òÀÏ¥¨¥é¡¼: %s"
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "%d ¹ÔÌÜ: ¥¹¥¯¥ê¥×¥È¥×¥í¥°¥é¥à¤Ï '/' ¤Ç»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%s"
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "%d ¹ÔÌÜ: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr "%%if ¤¬ÊĤ¸¤Æ¤¤¤Þ¤»¤ó"
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s%d: parseExpressionBoolean ¤¬ %d ¤òÊÖ¤·¤Þ¤·¤¿"
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
#, fuzzy
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: if ¤¬¤Ê¤¤¤Î¤Ë %%else ¤¬¤¢¤ê¤Þ¤¹"
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
#, fuzzy
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: if ¤¬¤Ê¤¤¤Î¤Ë %%endif ¤¬¤¢¤ê¤Þ¤¹"
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr "¤ª¤«¤·¤Ê %%include ¥¹¥Æ¡¼¥È¥á¥ó¥È¤Ç¤¹"
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr "ºîÀ®(build)²Äǽ¤Ê¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï¤¢¤ê¤Þ¤»¤ó"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ï %%description ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "¥¢¡¼¥«¥¤¥Ö = %s, fs = %s\n"
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤ÊÈÖ¹æ: %s"
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê no%s ÈÖ¹æ: %d"
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n"
diff --git a/po/ko.po b/po/ko.po
index 626edee2b..339c25342 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1525,243 +1525,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1787,126 +1787,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1916,50 +1916,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1972,118 +1972,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2147,105 +2147,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/no.po b/po/no.po
index 955bce1f3..55bb4d9cf 100644
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 2000-08-17 20:22+02:00\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
@@ -1579,243 +1579,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1841,126 +1841,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "Feil under endring av navn fra %s til %s: %s\n"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1970,50 +1970,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -2026,118 +2026,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2201,105 +2201,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 61b876843..806ed7215 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 1999-05-25 17:00+0100\n"
"Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
"Language-Team: Polish <pl@li.org>\n"
@@ -1670,248 +1670,248 @@ msgstr "nie podano nazw plików spec do budowania"
msgid "no tar files given for build"
msgstr "nie podano nazw plików tar do budowania"
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
#, fuzzy
msgid "Unable to open temp file."
msgstr "Nie mo¿na otworzyæ pliku tymczasowego"
-#: build/build.c:192
+#: build/build.c:193
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "Wykonywanie: %s\n"
-#: build/build.c:198
+#: build/build.c:199
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "Wykonanie %s nie powiod³o siê (%s)"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "B³êdny status wyj¶cia z %s (%s)"
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
#, fuzzy
msgid "syntax error while parsing =="
msgstr "b³±d sk³adni w wyra¿eniu"
-#: build/expression.c:238
+#: build/expression.c:245
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "b³±d sk³adni w wyra¿eniu"
-#: build/expression.c:247
+#: build/expression.c:254
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "b³±d sk³adni w wyra¿eniu"
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr "b³±d interpretacji wyra¿enia"
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr "niesparowane ("
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr "- tylko na liczbach"
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr "! tylko na liczbach"
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr "typy musz± siê zgadzaæ"
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr "* / nie jest wspierane dla ³añcuchów znakowych"
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr "- nie jest wspierane dla ³añcuchów znakowych"
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr "&& i || nie jest wspierane dla ³añcuchów znakowych"
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr "b³±d sk³adni w wyra¿eniu"
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "TIMECHECK nie powiod³o siê: %s\n"
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr "Brak '(' w %s %s"
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr "Brak ')' w %s(%s"
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr "B³êdny znak %s: %s"
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr "Brak bia³ego znaku po %s(): %s"
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr "B³êdna sk³adnia: %s(%s)"
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "B³êdne okre¶lenie trybu: %s(%s)"
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "B³êdne okre¶lenie dirmode: %s(%s)"
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "Niespotykana d³ugo¶æ okre¶lenia lokalizacji \"%.*s\" w %%lang(%s)"
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr "Powtórzone okre¶lenie lokalizacji %.*s w %%lang(%s)"
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr "Limit trafieñ dla %%docdir"
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr "Tylko jeden argument dla %%docdir"
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr "Dwa pliki w jedenj linii: %s"
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "Plik musi siê zaczynaæ od \"/\": %s"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr "Nie mo¿na mieszaæ specjalnej %%doc z innymi formami: %s"
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr "Plik podany dwukrotnie: %s"
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Plik nie zgadza siê z prefiksem (%s): %s"
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr "Nie znaleziono pliku: %s"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "B³êdny u¿ytkownik/grupa: %s\n"
-#: build/files.c:1081
+#: build/files.c:1127
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Plik %4d: 0%o %s.%s\t %s\n"
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "Plik musi siê zaczynaæ od \"/\": %s"
-#: build/files.c:1184
+#: build/files.c:1232
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "Nie znaleziono pliku: %s"
-#: build/files.c:1236
+#: build/files.c:1286
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "Nie mo¿na otworzyæ %%files pliku: %s"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr "linia: %s"
-#: build/files.c:1571
+#: build/files.c:1621
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "plik %s: %s\n"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr "B³êdny u¿ytkownik/grupa: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "Nie mo¿na uruchomiæ %s"
-#: build/files.c:1643
+#: build/files.c:1695
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Nie mo¿na wykonaæ fork na %s"
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr "%s nie powiod³o siê"
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr "zapisanie wszystkich danych do %s nie powiod³o siê"
-#: build/files.c:1850
+#: build/files.c:1906
#, fuzzy, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Wyszukiwanie wymaganych zasobów...\n"
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "Wyszukiwanie nie powiod³o siê"
-#: build/files.c:2001
+#: build/files.c:2061
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Przetwarzanie plików: %s\n"
@@ -1937,126 +1937,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr "Nie mo¿na rozwi±zaæ nazwy systemu: %s\n"
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr "utworzenie archiwum pliku %s nie powiod³o siê: %s"
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr "zapis w trybie cpio_copy nie powiód³ siê: %s"
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr "odczyt w trybie cpio_copy nie powiód³ siê: %s"
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "Nie mo¿na otworzyæ pliku PreIn: %s"
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "Nie mo¿na otworzyæ pliku PreUn: %s"
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "Nie mo¿na otworzyæ pliku PostIn: %s"
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "Nie mo¿na otworzyæ pliku PostUn: %s"
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "Nie mo¿na otworzyæ pliku VerifyScript: %s"
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "Nie mo¿na otworzyæ skryptu Trigger: %s"
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: otwieranie %s: %s\n"
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: czytanie %s: %s\n"
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s nie jest pakietem RPM\n"
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: czytanie nag³ówka z %s\n"
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr "B³êdne dane CSA"
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr "Generowanie sygnatury: %d\n"
-#: build/pack.c:418
+#: build/pack.c:432
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "Nie mo¿na otworzyæ %s\n"
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
-#: build/pack.c:470
+#: build/pack.c:484
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Nie mo¿na odczytaæ sigtarget: %s"
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "Nie mo¿na odczytaæ ikony: %s"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "Nie mo¿na odczytaæ ikony: %s"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Nie mo¿na wygenerowaæ wyj¶ciowej nazwy dla pakietu %s: %s\n"
-#: build/pack.c:619
+#: build/pack.c:633
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "nie mo¿na utworzyæ %s"
@@ -2066,50 +2066,50 @@ msgstr "nie mo¿na utworzyæ %s"
msgid "line %d: second %s"
msgstr "linia %d: druga %s"
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr "wpisy %%changelog musz± zaczynaæ siê od *"
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr "niekompletny wpis %%changelog"
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr "b³êdna data w %%changelog: %s"
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr "wpisy w %%changelog u³o¿one niechronologicznie"
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr "brak nazwiska w %%changelog"
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr "brak opisu w %%changelog"
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "linia %d: b³±d w interpretacji wpisu %%description: %s"
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "linia %d: B³edna opcja %s: %s"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr "linia %d: Zbyt du¿o nazw: %s"
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "linia %d: Pakiet nie istnieje: %s"
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "linia %d: Drugi opis"
@@ -2122,118 +2122,118 @@ msgstr "linia %d: B³±d w interpretacji wpisu %%files: %s"
msgid "line %d: Second %%files list"
msgstr "linia %d: Druga lista %%files"
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Architektura nie jest wspierana: %s"
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr "Architektura nie jest wspierana: %s"
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr "Ten OS nie jest wspierany: %s"
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr "Ten OS nie jest wspierany: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr "pole %s musi byæ obecne w pakiecie: %s"
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Podwójne wpisy %s w pakiecie: %s"
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Nie mo¿na odczytaæ ikony: %s"
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Nie mo¿na odczytaæ ikony: %s"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr "Nieznany typ ikony: %s"
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "linia %d: Niepoprawna forma etykiety: %s"
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "linia %d: Pusta etykieta: %s"
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "linia %d: Nielegalny znak '-' w %s: %s"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "linia %d: wpis BuildRoot nie mo¿e byæ \"/\": %s"
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "linia %d: Prefiksy nie mog± siê koñczyæ na \"/\": %s"
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "linia %d: wpis Docdir musi siê zaczynaæ od '/': %s"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "linia %d: pole Epoch/Serial musi byæ liczb±: %s"
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "linia %d: B³êdny numer %s: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "linia %d: B³êdny format wpisu BuildArchitecture: %s"
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "B³±d wewnêtrzny: Fa³szywa etykieta %d"
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr "B³êdna specyfikacja pakietu: $s"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr "Pakiet ju¿ istnieje: %s"
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "linia %d: Nieznana etykieta: %s"
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr "W pliku spec nie mo¿na u¿ywaæ wpisów BuildRoot"
@@ -2297,106 +2297,106 @@ msgstr "linia %d: B³êdny argument dla %%patch: %s"
msgid "line %d: second %%prep"
msgstr "linia %d: druga sekcja %%prep"
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
"linia %d: Znaki musz± sie zaczynaæ od alfanumerycznych, '_' lub '/': %s"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr "linia %d: Nazwa pliku niedozwolona: %s"
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "linia %d: Wersja w nazwach plików niedozwolona: %s"
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr "linia %d: Wymagana wersja: %s"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "linia %d: triggery musz± mieæ --: %s"
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "linia %d: B³±d przetwarzania %s: %s"
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "linia %d: skrypt (tu jako program) musi siê zaczynaæ od '/': %s"
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr "linia %d: Drugi %s"
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "linia %d: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "Nie mo¿na otworzyæ: %s\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr "Niedomkniête %%if"
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: Napotkano %%else bez if"
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: Napotkano %%endif bez if"
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr "b³ednie sformatowany wpis %%include"
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr "Nie mo¿na budowaæ na takie architektury"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr "Pakiet nie ma %%description: %s"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "archiwum = %s fs = %s\n"
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr "linia %d: B³êdny numer: %s"
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "linia %d: b³êdny numer no%s: %d"
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "linia %d: B³êdny numer %s: %s\n"
diff --git a/po/pt.po b/po/pt.po
index 990e7f635..8db0507eb 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 2000-08-01 21:11+01:00\n"
"Last-Translator: Pedro Morais <morais@poli.org>\n"
"Language-Team: pt <morais@poli.org>\n"
@@ -1522,243 +1522,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1784,126 +1784,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "não consigo abrir ficheiro spec %s: %s\n"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "não consigo abrir ficheiro spec %s: %s\n"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "não consigo abrir ficheiro spec %s: %s\n"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "não consigo abrir ficheiro spec %s: %s\n"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1913,50 +1913,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1969,118 +1969,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2144,105 +2144,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index abdb4c730..5bf39c935 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -2,7 +2,7 @@
# Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
#
msgid ""
-msgstr "POT-Creation-Date: 2001-01-10 17:13-0500\n"
+msgstr "POT-Creation-Date: 2001-01-11 08:57-0500\n"
# , c-format
#: build.c:26
@@ -1747,7 +1747,7 @@ msgid "no tar files given for build"
msgstr "não foram passados arquivos tar para construção"
# , c-format
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
#, fuzzy
msgid "Unable to open temp file."
msgstr "Não consegui abrir: %s\n"
@@ -1760,251 +1760,251 @@ msgstr "Não consegui abrir: %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: build/build.c:192
+#: build/build.c:193
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "RPM versão %s\n"
-#: build/build.c:198
+#: build/build.c:199
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "Construção falhou.\n"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
# , c-format
-#: build/files.c:387
+#: build/files.c:414
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Não consegui ler o arquivo spec de %s\n"
# , c-format
-#: build/files.c:397
+#: build/files.c:424
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
# , c-format
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/files.c:715
+#: build/files.c:753
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "argumentos para o --dbpath devem começar com uma /"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
# , c-format
-#: build/files.c:817
+#: build/files.c:859
#, fuzzy, c-format
msgid "File listed twice: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
# , c-format
-#: build/files.c:1016
+#: build/files.c:1062
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/files.c:1026
+#: build/files.c:1072
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "não foi passado pacote para desinstalação"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "não foi passado pacote para desinstalação"
# , c-format
-#: build/files.c:1236
+#: build/files.c:1286
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
# , c-format
-#: build/files.c:1571
+#: build/files.c:1621
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
# , c-format
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
# , c-format
-#: build/files.c:1643
+#: build/files.c:1695
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/files.c:1725
+#: build/files.c:1777
#, fuzzy, c-format
msgid "%s failed"
msgstr "Construção falhou.\n"
# , c-format
-#: build/files.c:1729
+#: build/files.c:1781
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "Não consegui abrir o pipe tar: %s\n"
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
# , c-format
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "Não consegui abrir o pipe tar: %s\n"
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -2031,136 +2031,136 @@ msgid "Could not canonicalize hostname: %s\n"
msgstr ""
# , c-format
-#: build/pack.c:48
+#: build/pack.c:52
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
# , c-format
-#: build/pack.c:221
+#: build/pack.c:235
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/pack.c:231
+#: build/pack.c:245
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr "gere assinatura PGP"
# , c-format
-#: build/pack.c:418
+#: build/pack.c:432
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/pack.c:455
+#: build/pack.c:469
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/pack.c:470
+#: build/pack.c:484
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
# , c-format
-#: build/pack.c:619
+#: build/pack.c:633
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "Não consegui abrir: %s\n"
@@ -2170,51 +2170,51 @@ msgstr "Não consegui abrir: %s\n"
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
# , c-format
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -2227,122 +2227,122 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "argumentos para o --dbpath devem começar com uma /"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Opcões para especificação de pacotes:"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2408,111 +2408,111 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "argumentos para o --dbpath devem começar com uma /"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
# , c-format
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
# , c-format
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
# , c-format
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "Não consegui abrir: %s\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
# , c-format
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
#, fuzzy
msgid "No buildable architectures"
msgstr "%s não pode ser construido nesta arquitetura\n"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "não foi passado pacote para desinstalação"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/ro.po b/po/ro.po
index 209b7811e..fbc6d8b43 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 1999-04-10 12:00+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
@@ -1520,243 +1520,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1782,126 +1782,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1911,50 +1911,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1967,118 +1967,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2142,105 +2142,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/rpm.pot b/po/rpm.pot
index 787446fee..f715a7b45 100644
--- a/po/rpm.pot
+++ b/po/rpm.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1525,243 +1525,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1787,126 +1787,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1916,50 +1916,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1972,118 +1972,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2147,105 +2147,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 664154948..59a226d93 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 2000-08-08 01:20+0300\n"
"Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -1608,243 +1608,243 @@ msgstr "ÎÅ ÚÁÄÁÎ spec-ÆÁÊÌ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
msgid "no tar files given for build"
msgstr "ÎÅ ÚÁÄÁÎÙ tar-ÆÁÊÌÙ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ"
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr "÷ÙÐÏÌÎÑÅÔÓÑ(%s): %s\n"
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "÷ÙÐÏÌÎÉÔØ %s ÎÅ ÕÄÁÌÏÓØ (%s): %s"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "îÅ×ÅÒÎÙÊ ËÏÄ ×ÏÚ×ÒÁÔÁ ÉÚ %s (%s)"
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ ÐÒÉ ÁÎÁÌÉÚÅ =="
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ ÐÒÉ ÁÎÁÌÉÚÅ &&"
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ ÐÒÉ ÁÎÁÌÉÚÅ ||"
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr "ÏÛÉÂËÁ ÁÎÁÌÉÚÁ ×ÙÒÁÖÅÎÉÑ"
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr "ÎÅÚÁËÒÙÔÁÑ ("
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr "- ÔÏÌØËÏ ÄÌÑ ÞÉÓÅÌ"
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr "! ÔÏÌØËÏ ÄÌÑ ÞÉÓÅÌ"
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr "ÔÉÐÙ ÄÏÌÖÎÙ ÓÏ×ÐÁÄÁÔØ"
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr "* / ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÄÌÑ ÓÔÒÏË"
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr "- ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÄÌÑ ÓÔÒÏË"
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr "&& É || ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÄÌÑ ÓÔÒÏË"
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ"
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "ïÛÉÂËÁ TIMECHECK: %s\n"
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr "ïÔÓÕÔÓÔ×ÕÅÔ '(' × %s %s"
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ')' × %s(%s"
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr "îÅ×ÅÒÎÙÊ ÔÏËÅÎ %s: %s"
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr "îÅ ÐÒÏÂÅÌ ÓÌÅÄÕÅÔ ÐÏÓÌÅ %s(): %s"
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr "îÅ×ÅÒÎÙÊ ÓÉÎÔÁËÓÉÓ: %s(%s)"
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á: %s(%s)"
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á ÎÁ ËÁÔÁÌÏÇ %s(%s)"
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "îÅÏÂÙÞÎÁÑ ÄÌÉÎÁ locale: \"%.*s\" × %%lang(%s)"
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr "äÕÂÌÉËÁÔ locale %.*s × %%lang(%s)"
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr "ìÉÍÉÔ ÄÌÑ %%docdir ÐÒÅ×ÙÛÅÎ"
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr "ôÏÌØËÏ ÏÄÉÎ ÁÒÇÕÍÅÎÔ ÄÌÑ %%docdir"
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr "ä×Á ÆÁÊÌÁ × ÏÄÎÏÊ ÓÔÒÏËÅ: %s"
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "æÁÊÌ ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr "îÅÌØÚÑ ÓÍÅÛÉ×ÁÔØ ÓÐÅÃ. %%doc Ó ÄÒÕÇÉÍÉ ÆÏÒÍÁÍÉ: %s"
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr "æÁÊÌ ÕËÁÚÁÎ Ä×ÁÖÄÙ: %s"
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr "óÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ ÕËÁÚÙ×ÁÅÔ ÎÁ BuildRoot: %s -> %s"
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "æÁÊÌ ÎÅ ÓÏÏÔ×ÅÔÓÔÕÅÔ ÐÒÅÆÉËÓÕ (%s): %s"
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ÈÏÚÑÉÎ/ÇÒÕÐÐÁ: %s\n"
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "æÁÊÌ %4d: %07o %s.%s\t %s\n"
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "æÁÊÌ ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s"
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s"
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files: %s"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr "ÓÔÒÏËÁ: %s"
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ×ÌÁÄÅÌÅÃ/ÇÒÕÐÐÁ: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÌÎÉÔØ %s: %s"
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr "óÂÏÊ ×ÅÔ×ÌÅÎÉÑ %s: %s"
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr "%s ÎÅ ÕÄÁÌÏÓØ"
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr "ÚÁÐÉÓØ ×ÓÅÈ ÄÁÎÎÙÈ × %s ÎÅ ÕÄÁÌÁÓØ"
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "ðÏÉÓË %s (ÉÓÐÏÌØÚÕÑ %s): ...\n"
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ %s:"
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
@@ -1870,126 +1870,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ËÁÎÏÎÉÚÉÒÏ×ÁÔØ ÉÍÑ ËÏÍÐØÀÔÅÒÁ: %s\n"
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ÁÒÈÉ×Á ÎÁ ÆÁÊÌÅ %s: %s"
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr "cpio_copy: ÏÛÉÂËÁ ÚÁÐÉÓÉ: %s"
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr "cpio_copy: ÏÛÉÂËÁ ÞÔÅÎÉÑ: %s"
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PreIn: %s"
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PreUn: %s"
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PostIn: %s"
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PostUn: %s"
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ VerifyScript: %s"
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ Trigger script: %s"
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: ÏÔËÒÙÔÉÅ %s: %s\n"
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: ÞÔÅÎÉÅ %s: %s\n"
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s ÎÅ Ñ×ÌÑÅÔÓÑ ÐÁËÅÔÏÍ RPM\n"
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: ÞÉÔÁÅÔÓÑ ÚÁÇÏÌÏ×ÏË ÉÚ %s\n"
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr "îÅ×ÅÒÎÙÅ ÄÁÎÎÙÅ CSA"
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ: %d\n"
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s"
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÃÅÌØ ÐÏÄÐÉÓÉ %s: %s"
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÐÉËÔÏÇÒÁÍÍÕ %s: %s"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ %s: %s"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÐÉËÔÏÇÒÁÍÍÕ %s: %s"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ %s: %s"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr "úÁÐÉÓÁÎ: %s\n"
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÇÅÎÅÒÉÒÏ×ÁÔØ ÉÍÑ ÆÁÊÌÁ ÄÌÑ ÐÁËÅÔÁ %s: %s\n"
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n"
@@ -1999,50 +1999,50 @@ msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n"
msgid "line %d: second %s"
msgstr "ÓÔÒÏËÁ %d: ×ÔÏÒÏÅ %s"
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr "ÚÁÐÉÓÉ %%changelog ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó *"
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr "ÎÅÐÏÌÎÁÑ ÚÁÐÉÓØ %%changelog"
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr "ÎÅ×ÅÒÎÁÑ ÄÁÔÁ × %%changelog: %s"
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr "%%changelog ÎÅ × ÎÉÓÈÏÄÑÝÅÍ ÈÒÏÎÏÌÏÇÉÞÅÓËÏÍ ÐÏÒÑÄËÅ"
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr "ÐÒÏÐÕÝÅÎÏ ÉÍÑ × %%changelog"
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr "ÎÅÔ ÏÐÉÓÁÎÉÑ × %%changelog"
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "ÓÔÒÏËÁ %d: ïÛÉÂËÁ ÁÎÁÌÉÚÁ %%description: %s"
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÁÑ ÏÐÃÉÑ %s: %s"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr "ÓÔÒÏËÁ %d: óÌÉÛËÏÍ ÍÎÏÇÏ ÉÍÅÎ: %s"
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "ÓÔÒÏËÁ %d: ðÁËÅÔ ÎÅ ÓÕÝÅÓÔ×ÕÅÔ: %s"
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÅ ÏÐÉÓÁÎÉÅ"
@@ -2055,118 +2055,118 @@ msgstr "ÓÔÒÏËÁ %d: ïÛÉÂËÁ ÒÁÚÂÏÒÁ %%files: %s"
msgid "line %d: Second %%files list"
msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÊ ÓÐÉÓÏË %%files"
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr "áÒÈÉÔÅËÔÕÒÁ ÉÓËÌÀÞÅÎÁ: %s"
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr "áÒÈÉÔÅËÔÕÒÁ ÎÅ ×ËÌÀÞÅÎÁ: %s"
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr "ïó ÉÓËÌÀÞÅÎÁ: %s"
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr "ïó ÎÅ ×ËÌÀÞÅÎÁ: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr "ðÏÌÅ %s ÏÂÑÚÁÎÏ ÐÒÉÓÕÔÓÔ×Ï×ÁÔØ × ÐÁËÅÔÅ: %s"
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "äÕÂÌÉÒÕÀÝÉÅÓÑ ÚÁÐÉÓÉ %s × ÐÁËÅÔÅ: %s"
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÐÉËÔÏÇÒÁÍÍÕ %s: %s"
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÐÉËÔÏÇÒÁÍÍÕ %s: %s"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ ÐÉËÔÏÇÒÁÍÍÙ: %s"
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÔÜÇ: %s"
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "ÓÔÒÏËÁ %d: ðÕÓÔÏÊ ÔÜÇ: %s"
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "ÓÔÒÏËÁ %d: îÅÄÏÐÕÓÔÉÍÙÊ ÓÉÍ×ÏÌ '-' × %s: %s"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "BuildRoot ÎÅ ÍÏÖÅÔ ÂÙÔØ \"/\": %s"
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "ÓÔÒÏËÁ %d: ðÒÅÆÉËÓ ÎÅ ÍÏÖÅÔ ÚÁËÁÎÞÉ×ÁÔØÓÑ ÎÁ \"/\": %s"
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "ÓÔÒÏËÁ %d: Docdir ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó '/': %s"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "ÓÔÒÏËÁ %d: ðÏÌÅ Epoch/Serial ÄÏÌÖÎÏ ÂÙÔØ ÞÉÓÌÏÍ: %s"
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÆÏÒÍÁÔ BuildArchitecture: %s"
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ: îÅÉÚ×ÅÓÔÎÙÊ ÑÒÌÙË %d"
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ ÐÁËÅÔÁ: %s"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr "ðÁËÅÔ ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ: %s"
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "ÓÔÒÏËÁ %d: îÅÉÚ×ÅÓÔÎÙÊ ÔÜÇ: %s"
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr "æÁÊÌ spec ÎÅ ÍÏÖÅÔ ÉÓÐÏÌØÚÏ×ÁÔØ BuildRoot"
@@ -2230,7 +2230,7 @@ msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ ÄÌÑ %%patch: %s"
msgid "line %d: second %%prep"
msgstr "ÓÔÒÏËÁ %d: ×ÔÏÒÏÊ %%prep"
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
@@ -2238,99 +2238,99 @@ msgstr ""
"ÓÔÒÏËÁ %d: ôÏËÅÎÙ ÚÁ×ÉÓÉÍÏÓÔÅÊ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó ÂÕË×Ù, ÃÉÆÒÙ, '_' ÉÌÉ "
"'/': %s"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr "ÓÔÒÏËÁ %d: éÍÅÎÁ ÆÁÊÌÏ× ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s"
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "ÓÔÒÏËÁ %d: ÷ÅÒÓÉÉ × ÉÍÅÎÁÈ ÆÁÊÌÏ× ÎÅÄÏÐÕÓÔÉÍÙ: %s"
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr "ÓÔÒÏËÁ %d: ôÒÅÂÕÅÔÓÑ ×ÅÒÓÉÑ: %s"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "ÓÔÒÏËÁ %d: ÔÒÉÇÇÅÒÙ ÄÏÌÖÎÙ ÓÏÄÅÒÖÁÔØ --: %s"
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "ÓÔÒÏËÁ %d: ïÛÉÂËÁ ÁÎÁÌÉÚÁ %s: %s"
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "ÓÔÒÏËÁ %d: ðÒÏÇÒÁÍÍÙ × ÓËÒÉÐÔÁÈ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó '/': %s"
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÅ %s"
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "ÓÔÒÏËÁ %d: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr "îÅÚÁËÒÙÔÙÊ %%if"
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s:%d: parseExpressionBoolean ËÏÄ ×ÏÚ×ÒÁÔÁ: %d"
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: îÁÊÄÅÎ %%else ÂÅÚ %%if"
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: îÁÊÄÅÎ %%endif ÂÅÚ %%if"
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr "ÎÅ×ÅÒÎÏÅ ÏÂßÑ×ÌÅÎÉÅ %%include"
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr "îÅÔ ÁÒÈÉÔÅËÔÕÒ, ÄÌÑ ËÏÔÏÒÙÈ ×ÏÚÍÏÖÎÁ ÓÂÏÒËÁ"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr "ðÁËÅÔ ÎÅ ÉÍÅÅÔ %%description: %s"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "ÁÒÈÉ× = %s, fs = %s\n"
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ: %s"
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ no%s: %d"
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n"
diff --git a/po/sk.po b/po/sk.po
index f82902e61..eeae1a314 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 1999-04-08 21:37+02:00\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
@@ -1679,249 +1679,249 @@ msgstr "neboli zadané ¾iadne spec-súbory pre zostavenie"
msgid "no tar files given for build"
msgstr "neboli zadané ¾iadne tar-súbory pre zostavenie"
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
#, fuzzy
msgid "Unable to open temp file."
msgstr "Nie je mo¾né otvori» doèasný súbor"
-#: build/build.c:192
+#: build/build.c:193
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "Vykonáva sa: %s\n"
-#: build/build.c:198
+#: build/build.c:199
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "Vykonanie %s zlyhalo (%s)"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "Chybný výstupný kód z %s (%s)"
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
#, fuzzy
msgid "syntax error while parsing =="
msgstr "chyba syntaxe vo výraze"
-#: build/expression.c:238
+#: build/expression.c:245
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "chyba syntaxe vo výraze"
-#: build/expression.c:247
+#: build/expression.c:254
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "chyba syntaxe vo výraze"
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr "chyba pri analýze výrazu"
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr "nepárová ("
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr "- ibe pre èísla"
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr "! iba pre èísla"
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr "typy sa musia zhodova»"
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr "* / nie sú podporované pre re»azce"
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr "- nie je podporované pre re»azce"
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr "&& a || nie sú podporované pre re»azce"
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr "chyba syntaxe vo výraze"
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "chyba PREKROÈENIA ÈASU: %s\n"
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "chýbajúce %s\n"
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "chýbajúca ':' na %s:%d"
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr "Chybný %s prvok: %s"
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Chybná %s() syntax: %s"
-#: build/files.c:397
+#: build/files.c:424
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Chybná ¹pecifikácia práv %s(): %s"
-#: build/files.c:409
+#: build/files.c:436
#, fuzzy, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "Chybná ¹pecifikácia práv adresára %s(): %s"
-#: build/files.c:533
+#: build/files.c:564
#, fuzzy
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "Iba jeden záznam v %%lang(): %s"
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr "Dosiahnutý limit pre %%docdir"
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr "Iba jeden argument pre %%docdir"
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr "Dva súbory na riadku: %s"
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "Súbory musia zaèína» znakom \"/\": %s"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr "Nie je mo¾né mie¹a» ¹peciálne %%doc s inými formami: %s"
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr "Súbor zadaný dvakrát: %s."
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Súbor nesúhlasí s prefixom (%s): %s."
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr "Súbor nebol nájdený: %s"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Chybný vlastník/skupina: %s\n"
-#: build/files.c:1081
+#: build/files.c:1127
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Súbor %4d: 0%o %s.%s\t %s\n"
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
-#: build/files.c:1184
+#: build/files.c:1232
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "Súbor nebol nájdený: %s"
-#: build/files.c:1236
+#: build/files.c:1286
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "chybe: nie je mo¾né otvori» %%files súbor: %s"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr "riadok: %s"
-#: build/files.c:1571
+#: build/files.c:1621
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "súbor %s: %s\n"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr "Chybný vlastník/skupina: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "Nie je mo¾né spusti» %s"
-#: build/files.c:1643
+#: build/files.c:1695
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Nie je mo¾né vytvori» proces %s"
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr "%s zlyhalo"
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr "nepodarilo sa zapísa» v¹etky dáta do %s"
-#: build/files.c:1850
+#: build/files.c:1906
#, fuzzy, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Zis»ujú sa po¾adované vlastnosti...\n"
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "Nepodarilo sa zisti» poskytované vlastnosti"
-#: build/files.c:2001
+#: build/files.c:2061
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Spracovávajú sa súbory: %s\n"
@@ -1947,126 +1947,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr "Nie je mo¾né kanonizova» názov poèítaèa: %s\n"
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr "vytvorenie archívu zlyhalo pri súbore %s: %s"
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr "cpio_copy zápis zlyhal: %s"
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr "cpio_copy èítanie zlyhalo: %s"
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "Nie je mo¾né otvori» PreIn súbor: %s"
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "Nie je mo¾né otvori» PreUn súbor: %s"
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "Nie je mo¾né otvori» PostIn súbor: %s"
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "Nie je mo¾né otvori» PostUn súbor: %s"
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "Nie je mo¾né otvori» VerifyScript súbor: %s"
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "Nie je mo¾né otvori» Trigger skriptový súbor: %s"
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: otvorenie %s: %s\n"
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: èítanie %s: %s\n"
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s nie je RPM balík\n"
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: èítanie hlavièky %s\n"
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr "Chybné CSA dáta"
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr "Vytvára sa PGP podpis: %d\n"
-#: build/pack.c:418
+#: build/pack.c:432
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "Otvorenie %s zlyhalo\n"
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr "Nie je mo¾né zapísa» balík: %s"
-#: build/pack.c:470
+#: build/pack.c:484
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Nie je preèíta» sigtarget: %s"
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "Nie je mo¾né zapísa» balík: %s"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "Nie je mo¾né zapísa» balík: %s"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapísané: %s\n"
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Nie je mo¾né vytvori» meno výstupného súboru pre balík %s: %s\n"
-#: build/pack.c:619
+#: build/pack.c:633
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "nie je mo¾né zapísa» do %s: "
@@ -2076,50 +2076,50 @@ msgstr "nie je mo¾né zapísa» do %s: "
msgid "line %d: second %s"
msgstr "riadok %d: druhý %s"
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr "%%changelog záznamy musia zaèína» *"
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr "nekompletný %%changelog záznam"
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr "chybný dátum v %%changelog: %s "
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr "%%changelog nie sú v zostupnom chronologickom poradí"
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr "chýbajúce meno v %%changelog"
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr "¾iadny popis v %%changelog"
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "riadok %d: Chyba pri analýze %%description: %s"
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "riadok %d: Chybná voµba %s: %s"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr "riadok %d: Priveµa názvov: %s"
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "riadok %d: Balík neexistuje: %s"
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "riadok %d: Druhý popis"
@@ -2132,118 +2132,118 @@ msgstr "riadok %d: Chyba pri analýze %%files: %s"
msgid "line %d: Second %%files list"
msgstr "riadok %d: Druhý %%files zoznam"
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Architektúra je vynechaná: %s"
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr "Architektúra nie je obsiahnutá: %s"
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr "OS je vynechaný: %s"
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr "OS nie je obsiahnutý: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr "V balíku musí existova» pole %s: %s"
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Duplicitné záznamy %s v balíku: %s"
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr "Neznámy typ ikony: %s"
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "riadok %d: Znetvorený popis: %s"
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "riadok %d: Prázdny popis: %s"
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "riadok %d: Neprípustný znak '-' v %s: %s"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "riadok %d: BuildRoot nemô¾e by» \"/\": %s"
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "riadok %d: Prefixy nesmú konèi» \"/\": %s"
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "riadok %d: Docdir musí zaèína» '/': %s"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "riadok %d: Epoch/Serial pole musí by» èíslo: %s"
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "riadok %d: Chybné %s èíslo: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "riadok %d: Chybný formát BuildArchitecture: %s"
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "Interná chyba: Èudný popis %d "
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr "Chybná ¹pecifikácia balíka: %s"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr "Balík u¾ existuje: %s"
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "riadok %d: Neznámy popis: %s"
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr "Spec súbor nemô¾e pou¾i» BuildRoot"
@@ -2307,105 +2307,105 @@ msgstr "riadok %d: Chybný argument pre %%patch: %s"
msgid "line %d: second %%prep"
msgstr "riadok %d: druhý %%prep"
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "riadok %d: %s: prvky musia zaèína» alfanumerickým znakom: %s"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "riadok %d: Obsoletes: neobsahuje ¾iadne názvy súborov: %s"
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "riadok %d: Názvy súborov v %s neobsahujú verzie: %s"
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "riadok %d: triggers musia obsahova» --: %s"
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "riadok %d: Chyba pri analýze %s: %s"
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "riadok %d: program skriptu musí zaèína» '/': %s"
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr "riadok %d: Druhý %s"
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "riadok %d: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "otvorenie zlyhalo: %s\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr "Neuzavretý %%if"
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: %%else bez if"
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: %%endif bez if"
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr "znetvorený príkaz %%include"
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr "®iadne zostaviteµné architektúry"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr "Balík neobsahuje %%description: %s"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "archív = %s, fs = %s\n"
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr "riadok %d: Chybné èíslo: %s"
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "riadok %d: Chybné no%s èíslo: %d"
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "riadok %d: Chybné %s èíslo: %s\n"
diff --git a/po/sl.po b/po/sl.po
index 17b2fae5c..fdd053895 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,12 +1,12 @@
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
-# $Id: sl.po,v 1.131 2001/01/10 22:20:01 jbj Exp $
+# $Id: sl.po,v 1.132 2001/01/11 14:13:07 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 2000-10-08 19:05+0200\n"
"Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@@ -1664,244 +1664,244 @@ msgstr "datoteka spec za izgradnjo manjka"
msgid "no tar files given for build"
msgstr "arhiv tar za izgradnjo manjka"
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
#, fuzzy
msgid "Unable to open temp file."
msgstr "Zaèasne datoteke ni mo¾no odpreti"
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr "Izvajanje(%s): %s\n"
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "Izvajanje %s je bilo neuspe¹no (%s): %s"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "%s javi neuspe¹no izhodno kodo (%s)"
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr "napaka v skladnji pri razèlembi =="
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr "napaka v skladnji pri razèlembi &&"
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr "napaka v skladnji pri razèlembi ||"
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr "napaka pri razèlembi v izrazu"
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr "nezakljuèen ("
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr "- samo na ¹tevilih"
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr "! samo na ¹tevilih"
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr "tipi se morajo ujemati"
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr "* in / nista podprta za nize"
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr "- ni podprt za nize"
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr "&& in || nista podprta za nize"
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr "napaka v sklanji izraza"
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "TIMECHECK neuspe¹en: %s\n"
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr "Manjkajoèi ,(` v %s %s"
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr "Manjkajoèi ,)` v %s(%s"
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr "Neveljaven ¾eton %s: %s"
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr "Neprazen znak sledi %s(): %s"
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Nepravilna skladnja: %s(%s)"
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Nepravilno doloèilo naèina: %s(%s)"
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "Nepravilno doloèilo naèina imenika: %s(%s)"
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "Nenavadna dol¾ina za locale: \"%.s\" pri %%lang(%s)"
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr "Podvojeni locale %.*s za %%lang(%s)"
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr "Dosegli smo omejitev za %%docdir"
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr "Za %%docdir je podan samo en argument"
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr "Dve datoteki v eni vrstici: %s"
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "Ime datoteke se mora zaèeti z \"/\": %s"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr "Posebnih %%doc ni mo¾no me¹ati z ostalimi oblikami: %s"
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr "Datoteka je navedena dvakrat: %s"
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr "Simbolna povezava ka¾e na BuildRoot: %s -> %s"
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Datoteka se ne ujema s predpono (%s): %s"
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr "Datoteke ni mogoèe najti: %s"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Neobstojeè lastnik/skupina: %s\n"
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Datoteka: %4d: %07o %s.%s\t %s\n"
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "Datoteki manjka uvodni \"/\": %s"
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr "Datoteke ni mo¾no najti z raz¹iritvijo metaznakov v imenu: %s"
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr "Datoteke %s iz %%files ni mo¾no odpreti: %s"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr "vrstica: %s"
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr "Po¹kodovana datoteka: %s: %s"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr "Neobstojeè lastnik/skupina: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr "Ni mo¾no izvesti %s: %s"
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr "Vejitev %s ni mo¾na: %s"
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr "%s neuspe¹en"
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr "pisanje podatkov v %s je bilo neuspe¹no"
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Iskanje %s: (z uporabo %s)...\n"
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr "Neuspe¹no iskanje %s:"
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Obdeloavnje datotek: %s-%s-%s\n"
@@ -1927,126 +1927,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr "Iskanje kanoniènega imena gostitelja je bilo neuspe¹no: %s\n"
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr "ustvarjanje arhiva je bilo za datoteko %s neuspe¹no: %s"
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr "pisanje cpio_copy neuspe¹no: %s"
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr "branje cpio_copy neuspe¹no: %s"
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "Datoteke PreIn ni mo¾no odpreti: %s"
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "Datoteke PreUn ni mo¾no odpreti: %s"
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "Datoteke PostIn ni mo¾no odpreti: %s"
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "Datoteke PostUn ni mo¾no odpreti: %s"
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "Datoteke VerifyScript ni mo¾no odpreti: %s"
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "Skriptne datoteke Trigger ni mo¾no odpreti: %s"
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: odpiranje %s: %s\n"
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: branje %s: %s\n"
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s ni paket tipa RPM\n"
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: branje glave %s\n"
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr "Po¹kodovani podatki CSA"
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr "Izdelujemo podpis: %d\n"
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Ni mo¾no odpreti %s: %s\n"
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr "Ni mo¾no zapisati paketa: %s"
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Ciljnega podpisa %s ni mo¾no odpreti: %s"
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "Ikone %s ni mo¾no prebrati: %s"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "Ni mo¾no zapisati paketa %s: %s"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "Ikone %s ni mo¾no prebrati: %s"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "Ni mo¾no zapisati paketa %s: %s"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Neuspe¹no ustvarjanje izhodne datoteke za paket %s: %s\n"
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr "ni mo¾no ustvariti %s: %s\n"
@@ -2056,50 +2056,50 @@ msgstr "ni mo¾no ustvariti %s: %s\n"
msgid "line %d: second %s"
msgstr "vrstica %d: %s sekund"
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr "vnosi %%changelog se morajo zaèeti z *"
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr "nepopoln vnos %%changelog"
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr "V %%changelog je napaèen datum: %s"
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr "%%changelog ni urejen v padajoèem èasovnem zaporedju"
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr "v %%changelog je manjkajoèe ime"
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr "opis v %%changelog manjka"
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "vrstica %d: Napaka pri razèlembi v razdelku %%description: %s"
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "vrstica %d: Napaèna izbira %s: %s"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr "vrstica %d: Preveè imen: %s"
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "vrstica %d: Paket ne obstaja: %s"
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "vrstica %d: Drugi opis"
@@ -2112,118 +2112,118 @@ msgstr "vrstica %d: Napaka pri razèlembi v razdelku %%Files: %s"
msgid "line %d: Second %%files list"
msgstr "vrstica %d: Drugi seznam %%Files"
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Arhitektura je izkljuèena: %s"
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr "Arhitektura ni vkljuèena: %s"
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr "OS je izkljuèen: %s"
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr "OS ni vkljuèen: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr "polje %s mora v paketu obstajati: %s"
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Podvojeni vnosi %s v paketu: %s"
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr "Ikone %s ni mo¾no odpreti: %s"
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr "Ikone %s ni mo¾no prebrati: %s"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr "Neznan tip ikone: %s"
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "vrstica %d: Deformirana znaèka: %s"
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "vrstica %d: Prazna znaèka: %s"
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "vrstica %d: Neveljaven znak ,-` v %s: %s"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "BuildRoot ne more biti \"/\": %s"
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "vrstica %d: Predpone se ne smejo konèati z /: %s"
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "vrstica %d: Docdir se mora zaèeti z \"/\": %s"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "vrstica %d: polje Epoch/Serial mora biti ¹tevilo: %s"
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "vrstica %d: Okvarjeno ¹tevilo %s: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "vrstica %d: Napaèna oblika BuildArchitecture: %s"
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "Notranja napaka: Neprava znaèka %d"
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr "Nepravilno doloèilo paketa: %s"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr "Paket ¾e obstaja: %s"
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "vrstica %d: Neznana znaèka: %s"
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr "Datoteka spec ne more uporabiti BuildRoot"
@@ -2287,7 +2287,7 @@ msgstr "vrstica %d: Nepravilen argument za %%patch: %s"
msgid "line %d: second %%prep"
msgstr "vrstica %d: drugi %%prep"
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
@@ -2295,99 +2295,99 @@ msgstr ""
"vrstica %d: Oznake odvisnosti se morajo zaèeti z alfanum. znakom, ,_` ali\n"
"'/`: %s"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr "vrstica %d: Ime datoteke ni dovoljeno: %s"
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "vrstica %d: Ime datoteke z razlièico ni dovoljeno: %s"
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr "vrstica %d: Zahtevana razlièica: %s"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "vrstica %d: pro¾ila morajo vsebovati --: %s"
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "vrstica %d: Napaka pri razèlembi %s: %s"
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "vrstica %d: skriptni program se mora zaèeti z ,/`: %s"
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr "vrstica %d: Drugi %s"
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "vrstica %d: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Ni mo¾no odpreti %s: %s\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr "Nezakljuèeni %%if"
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s:%d: parseExpressionBoolean vrne %d"
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: Najden je bil %%else brez pripadajoèega if"
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: Najden je bil %%endif brez pripadajoèega if"
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr "Deformiran stavek %%include"
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr "Arhitektura za izgradnjo ni prisotna"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr "V paketu manjka %%description: %s"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "arhiv = %s, fs = %s\n"
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr "vrstica %d: Napaèno ¹tevilo: %s"
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "vrstica %d: Napaèno ¹tevilo no%s: %d"
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "vrstica %d: Napaèno ¹tevilo %s: %s\n"
diff --git a/po/sr.po b/po/sr.po
index 341249b99..1c535e0cb 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-05-02 21:41:47-0400\n"
"From: Erik Troan <ewt@lacrosse.redhat.com>\n"
@@ -1667,250 +1667,250 @@ msgstr "nedostaje specifikacije za kreiranje"
msgid "no tar files given for build"
msgstr "nedostaju 'tar' datoteke za kreiranje"
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
#, fuzzy
msgid "Unable to open temp file."
msgstr "Ne mogu da otvorim %s za èitanje: %s"
-#: build/build.c:192
+#: build/build.c:193
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "Pribavljam %s\n"
-#: build/build.c:198
+#: build/build.c:199
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "neuspelo otvaranje %s: %s\n"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
#, fuzzy
msgid "syntax error while parsing =="
msgstr "oèekivan znak ? u izrazu"
-#: build/expression.c:238
+#: build/expression.c:245
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "oèekivan znak ? u izrazu"
-#: build/expression.c:247
+#: build/expression.c:254
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "oèekivan znak ? u izrazu"
-#: build/expression.c:287
+#: build/expression.c:294
#, fuzzy
msgid "parse error in expression"
msgstr "oèekivan znak ? u izrazu"
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
#, fuzzy
msgid "syntax error in expression"
msgstr "oèekivan znak ? u izrazu"
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "nedostaje { posle %"
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "nedostaje ':' na %s:%d"
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Neuspelo èitanje %s: %s."
-#: build/files.c:397
+#: build/files.c:424
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Neuspelo èitanje %s: %s."
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/files.c:715
+#: build/files.c:753
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "preme¹tanja moraju poèeti znakom '/'"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, fuzzy, c-format
msgid "File listed twice: %s"
msgstr "Neuspelo èitanje %s: %s."
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Neuspelo èitanje %s: %s."
-#: build/files.c:1026
+#: build/files.c:1072
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "Datoteka nije pronaðena na serveru"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "Datoteka nije pronaðena na serveru"
-#: build/files.c:1236
+#: build/files.c:1286
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "Ne mogu da izvr¹im PGP"
-#: build/files.c:1643
+#: build/files.c:1695
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Ne mogu da proèitam 'sigtarget'"
-#: build/files.c:1725
+#: build/files.c:1777
#, fuzzy, c-format
msgid "%s failed"
msgstr "PGP omanuo"
-#: build/files.c:1729
+#: build/files.c:1781
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "neuspelo kreiranje %s\n"
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "neuspelo kreiranje %s\n"
-#: build/files.c:2001
+#: build/files.c:2061
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "neuspelo otvaranje %s: %s"
@@ -1936,126 +1936,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, fuzzy, c-format
msgid "cpio_copy read failed: %s"
msgstr "neuspelo èitanje: %s (%d)"
-#: build/pack.c:151
+#: build/pack.c:165
#, fuzzy, c-format
msgid "Could not open PreIn file: %s"
msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
-#: build/pack.c:158
+#: build/pack.c:172
#, fuzzy, c-format
msgid "Could not open PreUn file: %s"
msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
-#: build/pack.c:165
+#: build/pack.c:179
#, fuzzy, c-format
msgid "Could not open PostIn file: %s"
msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
-#: build/pack.c:172
+#: build/pack.c:186
#, fuzzy, c-format
msgid "Could not open PostUn file: %s"
msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/pack.c:231
+#: build/pack.c:245
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "Neuspelo èitanje %s: %s."
-#: build/pack.c:252
+#: build/pack.c:266
#, fuzzy, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "gre¹ka: èini se da %s nije RPM paket\n"
-#: build/pack.c:258
+#: build/pack.c:272
#, fuzzy, c-format
msgid "readRPM: reading header from %s\n"
msgstr "gre¹ka kod uzimanja sloga %s iz %s"
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr "napravi PGP potpis"
-#: build/pack.c:418
+#: build/pack.c:432
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
-#: build/pack.c:455
+#: build/pack.c:469
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/pack.c:470
+#: build/pack.c:484
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
@@ -2065,50 +2065,50 @@ msgstr "Ne mogu da otvorim datoteku %s: "
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, fuzzy, c-format
msgid "line %d: Package does not exist: %s"
msgstr "paket %s nije naveden u %s"
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -2121,118 +2121,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(nepoznat tip)"
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "preme¹tanja moraju poèeti znakom '/'"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "pogre¹an broj paketa: %s\n"
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "pogre¹an broj paketa: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "nedostaje arhitektura za %s na %s:%d"
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Opcije odrednice paketa:"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2296,107 +2296,107 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "preme¹tanja moraju poèeti znakom '/'"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "paket %s nije naveden u %s"
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "paket %s nije naveden u %s"
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "neuspelo otvaranje %s: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
#, fuzzy
msgid "No buildable architectures"
msgstr "nemoj proveravati arhitekturu paketa"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "paket %s nije naveden u %s"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, fuzzy, c-format
msgid "line %d: Bad number: %s"
msgstr "pogre¹an broj paketa: %s\n"
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "pogre¹an broj paketa: %s\n"
diff --git a/po/sv.po b/po/sv.po
index b5084b1aa..811269bd1 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: 2000-10-09 22:31+0200\n"
"Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -1585,243 +1585,243 @@ msgstr "ingen spec-filer angivna för tillverkning"
msgid "no tar files given for build"
msgstr "inga tar-filer angivna för tillverkning"
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr "Kan inte öppna temporär fil."
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr "Kör(%s): %s\n"
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "Körning (exec) av %s misslyckades (%s): %s"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "Dålig slutstatus från %s (%s)"
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr "syntaxfel vid parsning av =="
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr "syntaxfel vid parsning av &&"
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr "syntaxfel vid parsning av ||"
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr "parsfel i uttryck"
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr "ensam ("
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr "- endast i tal"
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr "! endast på tal"
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr "typer måste passa ihop"
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr "* / stöds inte för strängar"
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr "- stöds inte för strängar"
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr "&& och || stöds inte för strängar"
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr "syntaxfel i uttryck"
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "TIMECHECK-fel: %s\n"
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr "Saknad \"(\" i %s %s"
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr "Saknad \")\" i %s(%s"
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr "Ogiltig %s token: %s"
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr "Annat än blanktecken följer på %s(): %s"
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Felaktig syntax: %s(%s)"
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Felaktig rättighetsspecifikation: %s(%s)"
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "Felaktig specifikation av katalogrättigheter: %s(%s)"
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "Ovanlig lokallängd: \"%.*s\" i %%langg(%s)"
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr "Duplicerad lokal %.*s i %%lang(%s)"
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr "Slog i gränsen för %%docdir"
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr "Endast ett argument till %%docdir"
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr "Två filer på en rad: %s"
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "Filnamn måste börja med \"/\": %s"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr "Kan inte blanda special %%doc med andra former: %s"
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr "Filen uppräknad två gånger: %s"
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr "Symbolisk länk pekar på BuildRoot: %s -> %s"
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Filen matchar inte prefixet (%s): %s"
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr "Filen hittades inte: %s"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Felaktig ägare/grupp: %s\n"
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Fil %4d: %07o %s.%s\t %s\n"
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "Filen behöver inledande \"/\": %s"
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr "Ingen file hittades vid matchningen: %s"
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr "Kunde inte öppna %%files-fil %s: %s"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr "rad: %s"
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr "Felaktig fil: %s: %s"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr "Felaktig ägare/grupp: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr "Kunde inte köra %s: %s"
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr "Kunde inte grena %s: %s"
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr "%s misslyckades"
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr "kunde inte skriva all data till %s"
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Letar upp %s: (använder %s)...\n"
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr "Misslyckades med att hitta %s:"
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Bearbetar filer: %s-%s-%s\n"
@@ -1847,126 +1847,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr "Kunde inte kanonisera värdnamn: %s\n"
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr "skapande av arkiv misslyckades vid fil %s: %s"
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr "cpio_copy kunde inte skriva: %s"
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr "cpio_copy kunde inte läsa: %s"
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "Kunde inte öppna PreIn-fil: %s"
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "Kunde inte öppna PreUn-fil: %s"
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "Kunde inte öppna PostIn-fil: %s"
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "Kunde inte öppna PostUn-fil: %s"
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "Kunde inte öppna VerifyScript-fil: %s"
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "Kunde inte öppna Trigger-skriptfil: %s"
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: öppna %s: %s\n"
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: läs %s: %s\n"
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s är inte ett RPM-paket\n"
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: läser huvud från %s\n"
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr "Felaktig CSA-data"
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr "Genererar signatur: %d\n"
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Kunde inte öppna %s: %s\n"
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr "Kunde inte skriva paket: %s"
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Kan inte läsa signaturen %s: %s"
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "Kan inte läsa ikon %s: %s"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "Kan inte skriva paket %s: %s"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "Kan inte läsa ikon %s: %s"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "Kan inte skriva paket %s: %s"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Kunde inte generera utfilnamn för paketet %s: %s\n"
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr "kan inte skapa %s: %s\n"
@@ -1976,50 +1976,50 @@ msgstr "kan inte skapa %s: %s\n"
msgid "line %d: second %s"
msgstr "rad %d: andra %s"
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr "%%changlog-poster måste starta med *"
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr "ofullständig %%changelog-post"
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr "felaktigt datum i %%changelog: %s"
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr "%%changlog är inte i fallande kronologisk ordning"
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr "saknat namn i %%changelog"
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr "ingen beskrivning i %%changelog"
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "rad %d: Fel i parsning av %%description: %s"
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "rad %d: otillåten flagga %s: %s"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr "rad %d: För många namn: %s"
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "rad %d: Paketet existerar inte: %s"
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "rad %d: En andra beskrivning"
@@ -2032,118 +2032,118 @@ msgstr "rad %d: Fel i parsning av %%files: %s"
msgid "line %d: Second %%files list"
msgstr "rad %d: En andra %%files-lista"
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Arkitekturen är utesluten: %s"
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr "Arkitekturen är inte medtagen: %s"
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr "OS är uteslutet: %s"
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr "OS är inte medtaget: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr "%s-fält måste finnas med i paketet: %s"
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Dubbla %s-poster i paketet: %s"
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr "Kan inte öppna ikon %s: %s"
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr "Kan inte läsa ikon %s: %s"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr "Okänd ikontyp: %s"
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "rad %d: Felaktig tagg: %s"
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "rad %d: Tom tagg: %s"
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "rad %d: Otillåtet tecken \"-\" i %s: %s"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "BuildRoot kan inte vara \"/\": %s"
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "rad %d: Prefix får inte sluta med \"/\": %s"
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "rad %d: Docdir måste börja med \"/\": %s"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "rad %d: Epoch/Serial-fält måste vara numeriskt: %s"
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "rad %d: Felaktigt %s-tal: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "rad %d: Felaktig BuildArchitecture-format: %s"
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "Internt fel: felaktig tagg %d"
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr "Felaktig paketspecifikation: %s"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr "Paketet existerar redan: %s"
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "rad %d: Okänd tagg: %s"
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr "Spec-fil kan inte använda BuildRoot"
@@ -2207,105 +2207,105 @@ msgstr "rad %d: Felaktigt argument till %%patch: %s"
msgid "line %d: second %%prep"
msgstr "rad %d: andra %%prep"
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "rad %d: Beroenden måste börja alfanumeriskt, med \"_\" eller \"/\": %s"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr "rad %d: Filnamn inte tillåtna: %s"
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "rad %d: Versionsfilnamn inte tillåtet: %s"
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr "rad %d: Version krävs: %s"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "rad %d: utlösare måste ha --: %s"
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "rad %d: Fel vid parsning av %s: %s"
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "rad %d: skriptprogram måste börja med \"/\": %s"
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr "rad %d: En andra %s"
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "rad %d: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Kan inte öppna %s: %s\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr "Oavslutat %%if"
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s:%d: parseExpressionBoolean returnerar %d"
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: Fick ett %%else utan något if"
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: Fick ett %%endif utan något if"
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr "felformaterad %%include-sats"
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr "Inga byggbara arkitekturer"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr "Paketet har ingen %%description: %s"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "arkiv = %s, fs = %s\n"
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr "rad %d: Felaktigt tal: %s"
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "rad %d: Felaktigt no%s-tal: %d"
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "rad %d: Felaktigt %s-tal: %s\n"
diff --git a/po/tr.po b/po/tr.po
index 5ca537806..daa0974dd 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1713,250 +1713,250 @@ msgstr "oluþturma için gerekli spec dosyasý belirtilmedi"
msgid "no tar files given for build"
msgstr "oluþturma için gereken tar dosyalarý belirttilmedi"
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
#, fuzzy
msgid "Unable to open temp file."
msgstr "%s okuma eriþimi için açýlamadý:%s."
-#: build/build.c:192
+#: build/build.c:193
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "%s alýnýyor\n"
-#: build/build.c:198
+#: build/build.c:199
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "%s 'ye erisimde belirtilen hata oluþtu: %s\n"
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
#, fuzzy
msgid "syntax error while parsing =="
msgstr "dizi içerisinde ? bekleniyordu"
-#: build/expression.c:238
+#: build/expression.c:245
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "dizi içerisinde ? bekleniyordu"
-#: build/expression.c:247
+#: build/expression.c:254
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "dizi içerisinde ? bekleniyordu"
-#: build/expression.c:287
+#: build/expression.c:294
#, fuzzy
msgid "parse error in expression"
msgstr "dizi içerisinde ? bekleniyordu"
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
#, fuzzy
msgid "syntax error in expression"
msgstr "dizi içerisinde ? bekleniyordu"
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "% den sonra eksik {"
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "%s te eksik ':' :%d"
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "%s okunamadý: %s"
-#: build/files.c:397
+#: build/files.c:424
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "%s okunamadý: %s"
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "%s açýlamadý: %s"
-#: build/files.c:715
+#: build/files.c:753
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "relocate iþlemi / ile baþlamalý"
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, fuzzy, c-format
msgid "File listed twice: %s"
msgstr "%s okunamadý: %s"
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "%s okunamadý: %s"
-#: build/files.c:1026
+#: build/files.c:1072
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "Dosya sunucuda bulunamadý"
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "%s açýlamadý: %s"
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "Dosya sunucuda bulunamadý"
-#: build/files.c:1236
+#: build/files.c:1286
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "hata: %s dosyasý okunamadý\n"
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "%s açýlamadý: %s"
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "PGP çalýþtýrýlamadý"
-#: build/files.c:1643
+#: build/files.c:1695
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Ýmza hedefi 'sigtarget' okunamadý"
-#: build/files.c:1725
+#: build/files.c:1777
#, fuzzy, c-format
msgid "%s failed"
msgstr "PGP hata verdi"
-#: build/files.c:1729
+#: build/files.c:1781
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "%s yaratýlamýyor\n"
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "%s yaratýlamýyor\n"
-#: build/files.c:2001
+#: build/files.c:2061
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "%s açýlamadý: %s"
@@ -1982,127 +1982,127 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "%s açýlamadý: %s"
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, fuzzy, c-format
msgid "cpio_copy read failed: %s"
msgstr "okuma hatasý: %s (%d)"
-#: build/pack.c:151
+#: build/pack.c:165
#, fuzzy, c-format
msgid "Could not open PreIn file: %s"
msgstr "hata: %s dosyasý okunamadý\n"
-#: build/pack.c:158
+#: build/pack.c:172
#, fuzzy, c-format
msgid "Could not open PreUn file: %s"
msgstr "hata: %s dosyasý okunamadý\n"
-#: build/pack.c:165
+#: build/pack.c:179
#, fuzzy, c-format
msgid "Could not open PostIn file: %s"
msgstr "hata: %s dosyasý okunamadý\n"
-#: build/pack.c:172
+#: build/pack.c:186
#, fuzzy, c-format
msgid "Could not open PostUn file: %s"
msgstr "hata: %s dosyasý okunamadý\n"
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "%s açýlamadý: %s"
-#: build/pack.c:231
+#: build/pack.c:245
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "%s okunamadý: %s"
-#: build/pack.c:252
+#: build/pack.c:266
#, fuzzy, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "hata: %s herhangi bir RPM pakedine ait görünmüyor\n"
-#: build/pack.c:258
+#: build/pack.c:272
#, fuzzy, c-format
msgid "readRPM: reading header from %s\n"
msgstr "%s kaydýna %s dosyasýnda eriþilemiyor:"
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr "PGP-imzasý yaratýr"
# , c-format
-#: build/pack.c:418
+#: build/pack.c:432
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "%s 'ye eriþimde hata oluþtu\n"
-#: build/pack.c:455
+#: build/pack.c:469
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/pack.c:470
+#: build/pack.c:484
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/pack.c:480
+#: build/pack.c:494
#, fuzzy, c-format
msgid "Unable to read header from %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/pack.c:494
+#: build/pack.c:508
#, fuzzy, c-format
msgid "Unable to write header to %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/pack.c:504
+#: build/pack.c:518
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/pack.c:510
+#: build/pack.c:524
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "%s dosyasý açýlamýyor: "
@@ -2112,50 +2112,50 @@ msgstr "%s dosyasý açýlamýyor: "
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "%s açýlamadý: %s"
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, fuzzy, c-format
msgid "line %d: Package does not exist: %s"
msgstr "%s paketi %s altýnda gözükmüyor"
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -2168,118 +2168,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(bilinmeyen tip)"
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "%s açýlamadý: %s"
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "relocate iþlemi / ile baþlamalý"
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "geçersiz paket numarsý: %s\n"
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "geçersiz paket numarsý: %s\n"
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "%s için %s te eksik mimari:%d"
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Paket seçim seçenekleri:"
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2343,108 +2343,108 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "relocate iþlemi / ile baþlamalý"
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "%s paketi %s altýnda gözükmüyor"
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "%s paketi %s altýnda gözükmüyor"
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "%s açýlamadý: %s"
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "%s açýlamadý: %s"
# , c-format
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "%s 'ye eriþimde hata oluþtu\n"
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
#, fuzzy
msgid "No buildable architectures"
msgstr "paket mimarisini doðrulamaz"
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "%s paketi %s altýnda gözükmüyor"
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, fuzzy, c-format
msgid "line %d: Bad number: %s"
msgstr "geçersiz paket numarsý: %s\n"
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "geçersiz paket numarsý: %s\n"
diff --git a/po/uk.po b/po/uk.po
index 626edee2b..339c25342 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1525,243 +1525,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1787,126 +1787,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1916,50 +1916,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1972,118 +1972,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2147,105 +2147,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/wa.po b/po/wa.po
index 626edee2b..339c25342 100644
--- a/po/wa.po
+++ b/po/wa.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1525,243 +1525,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1787,126 +1787,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1916,50 +1916,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1972,118 +1972,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2147,105 +2147,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/zh.po b/po/zh.po
index 626edee2b..339c25342 100644
--- a/po/zh.po
+++ b/po/zh.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1525,243 +1525,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1787,126 +1787,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1916,50 +1916,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1972,118 +1972,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2147,105 +2147,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/po/zh_CN.GB2312.po b/po/zh_CN.GB2312.po
index 626edee2b..339c25342 100644
--- a/po/zh_CN.GB2312.po
+++ b/po/zh_CN.GB2312.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-10 17:13-0500\n"
+"POT-Creation-Date: 2001-01-11 08:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1525,243 +1525,243 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:113 build/pack.c:355
+#: build/build.c:114 build/pack.c:369
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:192
+#: build/build.c:193
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:198
+#: build/build.c:199
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:206
+#: build/build.c:207
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/build.c:305
+#: build/build.c:306
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
-#: build/expression.c:208
+#: build/expression.c:215
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:238
+#: build/expression.c:245
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:247
+#: build/expression.c:254
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:287
+#: build/expression.c:294
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:316
+#: build/expression.c:326
msgid "unmatched ("
msgstr ""
-#: build/expression.c:346
+#: build/expression.c:356
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:362
+#: build/expression.c:372
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:401 build/expression.c:446 build/expression.c:501
-#: build/expression.c:590
+#: build/expression.c:414 build/expression.c:462 build/expression.c:520
+#: build/expression.c:612
msgid "types must match"
msgstr ""
-#: build/expression.c:414
+#: build/expression.c:427
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:462
+#: build/expression.c:478
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:603
+#: build/expression.c:625
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:637 build/expression.c:685
+#: build/expression.c:658 build/expression.c:705
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:206
+#: build/files.c:226
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:251 build/files.c:333 build/files.c:496
+#: build/files.c:276 build/files.c:360 build/files.c:527
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:262 build/files.c:450 build/files.c:507
+#: build/files.c:287 build/files.c:479 build/files.c:538
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:300 build/files.c:475
+#: build/files.c:325 build/files.c:504
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:349
+#: build/files.c:376
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:387
+#: build/files.c:414
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:397
+#: build/files.c:424
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:409
+#: build/files.c:436
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:533
+#: build/files.c:564
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:543
+#: build/files.c:574
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:668
+#: build/files.c:706
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:674
+#: build/files.c:712
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:702
+#: build/files.c:740
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:715
+#: build/files.c:753
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:727
+#: build/files.c:765
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:817
+#: build/files.c:859
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:926
+#: build/files.c:968
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1016
+#: build/files.c:1062
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1026
+#: build/files.c:1072
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1069
+#: build/files.c:1115
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1081
+#: build/files.c:1127
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1155
+#: build/files.c:1203
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1184
+#: build/files.c:1232
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1236
+#: build/files.c:1286
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1245 build/pack.c:100
+#: build/files.c:1295 build/pack.c:108
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1571
+#: build/files.c:1621
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1583 build/parsePrep.c:41
+#: build/files.c:1633 build/parsePrep.c:41
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1638
+#: build/files.c:1690
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1643
+#: build/files.c:1695
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1725
+#: build/files.c:1777
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1729
+#: build/files.c:1781
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1850
+#: build/files.c:1906
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1878 build/files.c:1892
+#: build/files.c:1934 build/files.c:1948
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:2001
+#: build/files.c:2061
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -1787,126 +1787,126 @@ msgstr ""
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:52
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:74
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:81
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:151
+#: build/pack.c:165
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:158
+#: build/pack.c:172
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:165
+#: build/pack.c:179
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:172
+#: build/pack.c:186
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:180
+#: build/pack.c:194
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:195
+#: build/pack.c:209
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:221
+#: build/pack.c:235
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:231
+#: build/pack.c:245
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:252
+#: build/pack.c:266
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:258
+#: build/pack.c:272
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:367
+#: build/pack.c:381
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:408
+#: build/pack.c:422
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:418
+#: build/pack.c:432
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:455
+#: build/pack.c:469
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:470
+#: build/pack.c:484
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:480
+#: build/pack.c:494
#, c-format
msgid "Unable to read header from %s: %s"
msgstr ""
-#: build/pack.c:494
+#: build/pack.c:508
#, c-format
msgid "Unable to write header to %s: %s"
msgstr ""
-#: build/pack.c:504
+#: build/pack.c:518
#, c-format
msgid "Unable to read payload from %s: %s"
msgstr ""
-#: build/pack.c:510
+#: build/pack.c:524
#, c-format
msgid "Unable to write payload to %s: %s"
msgstr ""
-#: build/pack.c:537
+#: build/pack.c:551
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:602
+#: build/pack.c:616
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:619
+#: build/pack.c:633
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@@ -1916,50 +1916,50 @@ msgstr ""
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:110
+#: build/parseChangelog.c:120
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:118
+#: build/parseChangelog.c:128
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:133
+#: build/parseChangelog.c:143
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:138
+#: build/parseChangelog.c:148
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:146 build/parseChangelog.c:157
+#: build/parseChangelog.c:156 build/parseChangelog.c:167
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:164
+#: build/parseChangelog.c:174
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:40
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:53 build/parseFiles.c:47 build/parseScript.c:185
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:187
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:66 build/parseFiles.c:59 build/parseScript.c:197
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:199
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:76 build/parseFiles.c:68 build/parseScript.c:206
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:208
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:88
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
@@ -1972,118 +1972,118 @@ msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:189
+#: build/parsePreamble.c:211
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:194
+#: build/parsePreamble.c:216
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:199
+#: build/parsePreamble.c:221
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:204
+#: build/parsePreamble.c:226
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:242
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:269
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:291
+#: build/parsePreamble.c:323
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:309
+#: build/parsePreamble.c:341
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:322
+#: build/parsePreamble.c:354
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:388
+#: build/parsePreamble.c:421
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:396
+#: build/parsePreamble.c:429
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:418 build/parsePreamble.c:425
+#: build/parsePreamble.c:451 build/parsePreamble.c:458
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:482 build/parseSpec.c:374
+#: build/parsePreamble.c:515 build/parseSpec.c:382
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:495
+#: build/parsePreamble.c:528
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:507
+#: build/parsePreamble.c:540
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:519
+#: build/parsePreamble.c:552
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:559 build/parsePreamble.c:570
+#: build/parsePreamble.c:592 build/parsePreamble.c:603
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:629
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:605
+#: build/parsePreamble.c:638
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:743
+#: build/parsePreamble.c:782
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:749
+#: build/parsePreamble.c:788
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:774
+#: build/parsePreamble.c:813
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:796
+#: build/parsePreamble.c:835
msgid "Spec file can't use BuildRoot"
msgstr ""
@@ -2147,105 +2147,105 @@ msgstr ""
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:99
+#: build/parseReqs.c:100
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:110
+#: build/parseReqs.c:111
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:142
+#: build/parseReqs.c:143
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:172
+#: build/parseReqs.c:173
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:151
+#: build/parseScript.c:153
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:161 build/parseScript.c:222
+#: build/parseScript.c:163 build/parseScript.c:224
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:172
+#: build/parseScript.c:174
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:214
+#: build/parseScript.c:216
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:128
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:176
+#: build/parseSpec.c:184
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:188
+#: build/parseSpec.c:196
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:259
+#: build/parseSpec.c:267
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:267
+#: build/parseSpec.c:275
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:278
+#: build/parseSpec.c:286
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:292 build/parseSpec.c:301
+#: build/parseSpec.c:300 build/parseSpec.c:309
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:480
+#: build/parseSpec.c:488
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:535
+#: build/parseSpec.c:543
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:37
+#: build/spec.c:41
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:246
+#: build/spec.c:228
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:252
+#: build/spec.c:234
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:311
+#: build/spec.c:292
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
diff --git a/rpm.spec b/rpm.spec
index 47aed7658..78c19f84e 100644
--- a/rpm.spec
+++ b/rpm.spec
@@ -13,7 +13,7 @@ Summary: The Red Hat package management system.
Name: rpm
%define version 4.0.2
Version: %{version}
-Release: 0.22
+Release: 0.23
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{version}.tar.gz
Copyright: GPL
@@ -309,6 +309,10 @@ fi
%{__prefix}/include/popt.h
%changelog
+* Thu Jan 11 2001 Jeff Johnson <jbj@redhat.com>
+- fix: don't hang on build error.
+- fix: remove "error: " prefix from signature verification message.
+
* Wed Jan 10 2001 Jeff Johnson <jbj@redhat.com>
- successors from tsort are processed in presentation order.
- fix: find-requires.perl needed update (#23450).
diff --git a/rpm.spec.in b/rpm.spec.in
index 99ef738be..4ff19ee33 100644
--- a/rpm.spec.in
+++ b/rpm.spec.in
@@ -13,7 +13,7 @@ Summary: The Red Hat package management system.
Name: rpm
%define version @VERSION@
Version: %{version}
-Release: 0.22
+Release: 0.23
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{version}.tar.gz
Copyright: GPL
@@ -309,6 +309,10 @@ fi
%{__prefix}/include/popt.h
%changelog
+* Thu Jan 11 2001 Jeff Johnson <jbj@redhat.com>
+- fix: don't hang on build error.
+- fix: remove "error: " prefix from signature verification message.
+
* Wed Jan 10 2001 Jeff Johnson <jbj@redhat.com>
- successors from tsort are processed in presentation order.
- fix: find-requires.perl needed update (#23450).
diff --git a/rpmio/rpmerr.h b/rpmio/rpmerr.h
index dde713c31..361b621d4 100644
--- a/rpmio/rpmerr.h
+++ b/rpmio/rpmerr.h
@@ -10,6 +10,8 @@
#define _em(_e) \
(((_e) << 16) | RPMLOG_MAKEPRI(RPMLOG_ERRMSG, RPMLOG_ERR))
+#define _en(_e) \
+ (((_e) << 16) | RPMLOG_MAKEPRI(RPMLOG_ERRMSG, RPMLOG_NOTICE))
/**
* Tokens used by rpmError().
@@ -88,7 +90,7 @@ typedef enum rpmerrCode_e {
RPMERR_BADSIGTYPE = _em(200), /*!< Unknown signature type */
RPMERR_SIGGEN = _em(201), /*!< Error generating signature */
- RPMERR_SIGVFY = _em(202) /*!< */
+ RPMERR_SIGVFY = _en(202) /*!< */
} rpmerrCode;
/**