tools/librpm-tizen.git
16 years agoAssume failure in buildForTarget() to remove redundancy
Panu Matilainen [Fri, 4 Apr 2008 09:06:06 +0000 (12:06 +0300)]
Assume failure in buildForTarget() to remove redundancy

16 years agoRefactor spec extraction on tar build to address several issues
Panu Matilainen [Fri, 4 Apr 2008 08:54:21 +0000 (11:54 +0300)]
Refactor spec extraction on tar build to address several issues
- simplify the code
- use %{__tar} instead of tar as the extraction command
- avoid sprintf to "big enough" buffer
- basic spec sanity check while extracting, fixes rhbz#281391

16 years agoSpec of size zero cannot be a valid spec file
Panu Matilainen [Fri, 4 Apr 2008 08:53:07 +0000 (11:53 +0300)]
Spec of size zero cannot be a valid spec file

16 years agoRemove copy-paste currentDirectory() from sqlite, use rpmGetCwd()
Panu Matilainen [Fri, 4 Apr 2008 06:55:30 +0000 (09:55 +0300)]
Remove copy-paste currentDirectory() from sqlite, use rpmGetCwd()

16 years agoRename currentDirectory() to rpmGetCwd() and move to librpmio
Panu Matilainen [Fri, 4 Apr 2008 06:53:17 +0000 (09:53 +0300)]
Rename currentDirectory() to rpmGetCwd() and move to librpmio

16 years agoWe don't support url's in db paths, rip.
Panu Matilainen [Thu, 3 Apr 2008 17:48:17 +0000 (20:48 +0300)]
We don't support url's in db paths, rip.
- file:// vs / is silly and anything else wont work, so pretending
  url support just plain bogus

16 years agoReplace silly static rpmioFileExists() in rpmdb.c with plain old access()
Panu Matilainen [Thu, 3 Apr 2008 16:44:49 +0000 (19:44 +0300)]
Replace silly static rpmioFileExists() in rpmdb.c with plain old access()
- accepting url's there is not only useless but just plain bogus

16 years agoRemove ancient db1->db3 conversion cruft
Panu Matilainen [Thu, 3 Apr 2008 16:28:37 +0000 (19:28 +0300)]
Remove ancient db1->db3 conversion cruft

16 years agoDon't use static buffers in parseForRegexLang()
Jindrich Novy [Thu, 3 Apr 2008 11:47:05 +0000 (13:47 +0200)]
Don't use static buffers in parseForRegexLang()
- use dynamic allocation instead to avoid overflows
- also update addFile(), which is actually the only function
  that calls parseForRegexLang()

16 years agoLose the remaining static buffer from rpmVerifySignatures()
Panu Matilainen [Thu, 3 Apr 2008 10:17:57 +0000 (13:17 +0300)]
Lose the remaining static buffer from rpmVerifySignatures()
- Simple and stupid: catenate previous buffer + latest message
  with rasprintf() over and over again. Not the most efficient way but hardly
  matters here...

16 years agoTypo...
Panu Matilainen [Thu, 3 Apr 2008 09:53:11 +0000 (12:53 +0300)]
Typo...

16 years agoRefactor signature check results formatting
Panu Matilainen [Thu, 3 Apr 2008 09:46:33 +0000 (12:46 +0300)]
Refactor signature check results formatting
- Document what it's supposed to do, should be more obvious from the
  code too now.
- Remove one level of stpcpy's to static buffer.
- Simplify the theoretical case where many missing/untrusted keys are
  found (this shouldn't happen in practise ever) by only showing last of them

16 years agoEnable stack protector by default if gcc supports it
Panu Matilainen [Thu, 3 Apr 2008 06:59:46 +0000 (09:59 +0300)]
Enable stack protector by default if gcc supports it

16 years agoRemove unnecessary check for "keyid:" in result
Panu Matilainen [Thu, 3 Apr 2008 05:37:20 +0000 (08:37 +0300)]
Remove unnecessary check for "keyid:" in result
- nothing in signature.c emits such string

16 years agoStart eliminating static buffers from header/signature checks
Panu Matilainen [Thu, 3 Apr 2008 05:07:00 +0000 (08:07 +0300)]
Start eliminating static buffers from header/signature checks
- Push msg buffer allocations down to the lowlevel rpmVerifySignature() and
  internal verify*Signature functions, nothing above them knows how much
  memory they need for messages.  Use rasprintf() where obvious,
  stupid malloc(bigenuf) for now otherwise.
- Changes public API but can't be helped, printing to an unchecked buffer(s)
  of unknown size from one of the more security sensitive pieces is just
  .. not ok
- Minimally convert callers to the new allocation scheme

16 years agoSimplify message key creation in i18nTag()
Jindrich Novy [Wed, 2 Apr 2008 16:14:47 +0000 (18:14 +0200)]
Simplify message key creation in i18nTag()

16 years agoShut up a few silly compiler warnings that have crept in
Panu Matilainen [Thu, 3 Apr 2008 05:04:22 +0000 (08:04 +0300)]
Shut up a few silly compiler warnings that have crept in
- missing cast in python header subscript
- (false) warning about uninitialized variable, unused variable in rpmfc
- missing include in rpmio

16 years agoFurther streamline / simplify rpmVerifySignatures()
Panu Matilainen [Wed, 2 Apr 2008 13:52:44 +0000 (16:52 +0300)]
Further streamline / simplify rpmVerifySignatures()
- Use more meaningful variable names than res2 and res3
- In verbose mode we just dump whatever rpmVerifySignature() returns,
  error or not. Otherwise the output depends on the result. Make this
  obvious in the code.

16 years agoMake signature verification result not depend on rpm verbosity level, ick
Panu Matilainen [Wed, 2 Apr 2008 13:30:21 +0000 (16:30 +0300)]
Make signature verification result not depend on rpm verbosity level, ick

16 years agoFurther redundancy / copy-paste coding elimination
Panu Matilainen [Wed, 2 Apr 2008 12:42:21 +0000 (15:42 +0300)]
Further redundancy / copy-paste coding elimination

16 years agoCollapse the huge sigtag switch in rpmVerifySignatures() a bit
Panu Matilainen [Wed, 2 Apr 2008 12:36:00 +0000 (15:36 +0300)]
Collapse the huge sigtag switch in rpmVerifySignatures() a bit
- move the tag names from a helper functions
- collapse similar cases to just one

16 years agoSimplify missing/untrusted keys logging
Panu Matilainen [Wed, 2 Apr 2008 12:02:31 +0000 (15:02 +0300)]
Simplify missing/untrusted keys logging

16 years agoRevert "Disable signature and digest checks on query modes (rhbz#438625)"
Panu Matilainen [Wed, 2 Apr 2008 11:25:51 +0000 (14:25 +0300)]
Revert "Disable signature and digest checks on query modes (rhbz#438625)"

This reverts commit 5a684f5527bc7f32fca9ba7878802519bb515e93.

All the sigchecking on database queries is mostly waste of time, but
this disables signature checks on queries of non-installed, untrusted
packages too. Separate vsflags for db / non-db operations or such needed
before this can change.

16 years agoFix off-by one in urlOpen()
Jindrich Novy [Tue, 1 Apr 2008 14:37:42 +0000 (16:37 +0200)]
Fix off-by one in urlOpen()
- the former implementation didn't take the ending '\0' into account

16 years agoUpdated German translation from Fabian Affolter
Panu Matilainen [Tue, 1 Apr 2008 12:40:07 +0000 (15:40 +0300)]
Updated German translation from Fabian Affolter

16 years agoEnhance error message on failed ts lock acquire (rhbz#427064)
Panu Matilainen [Tue, 1 Apr 2008 10:35:16 +0000 (13:35 +0300)]
Enhance error message on failed ts lock acquire (rhbz#427064)
- adds strerror() output to the failure log message, this should give
  sufficient hint as to what's wrong (eg "permission denied")

16 years agoConvert rpmlock.c to general rpm indentation style
Panu Matilainen [Tue, 1 Apr 2008 10:32:57 +0000 (13:32 +0300)]
Convert rpmlock.c to general rpm indentation style

16 years agoAvoid entirely unnecessary static buffer + string copy.
Panu Matilainen [Mon, 31 Mar 2008 14:06:47 +0000 (17:06 +0300)]
Avoid entirely unnecessary static buffer + string copy.

16 years agoMake ExcludeArch/ExclusiveArch/ExcludeOS/ExclusiveOS actually work
Jindrich Novy [Mon, 31 Mar 2008 12:13:59 +0000 (14:13 +0200)]
Make ExcludeArch/ExclusiveArch/ExcludeOS/ExclusiveOS actually work

16 years agoAvoid static sprintf buffer in rpmReadHeader()
Panu Matilainen [Mon, 31 Mar 2008 10:31:03 +0000 (13:31 +0300)]
Avoid static sprintf buffer in rpmReadHeader()

16 years agoAvoid static buffer for error messages in rpmReadSignature()
Panu Matilainen [Mon, 31 Mar 2008 10:12:29 +0000 (13:12 +0300)]
Avoid static buffer for error messages in rpmReadSignature()

16 years agoMake rpmLeadCheck() return error msg instead of direct logging
Panu Matilainen [Mon, 31 Mar 2008 09:07:37 +0000 (12:07 +0300)]
Make rpmLeadCheck() return error msg instead of direct logging
- allows silent checking of lead and differentiating between
  non-rpm files and incompatible rpms, avoiding bogus "not an rpm package"
  message on manifests

16 years agoDead code removal (macro stuff)
Panu Matilainen [Mon, 31 Mar 2008 07:44:23 +0000 (10:44 +0300)]
Dead code removal (macro stuff)

16 years agoDead code removal (popt switches)
Panu Matilainen [Mon, 31 Mar 2008 07:41:07 +0000 (10:41 +0300)]
Dead code removal (popt switches)

16 years agoSimplify rpmdsThis() code
Panu Matilainen [Mon, 31 Mar 2008 06:56:24 +0000 (09:56 +0300)]
Simplify rpmdsThis() code
- use rasprintf() to construct [e:]v-r string instead of stpcpy games
- use str2hge() for N + EVR

16 years agoCopy N + EVR into ds in rpmdsSingle() instead of just referring
Panu Matilainen [Mon, 31 Mar 2008 06:25:18 +0000 (09:25 +0300)]
Copy N + EVR into ds in rpmdsSingle() instead of just referring
- previously a ds created by rpmdsSingle() would turn invalid as soon as
  the N and EVR strings were freed by caller (or went out of scope), ick
- convert the N + EVR strings passed to rpmdsSingle() to similar construct
  as is returned by headerGetEntry so headerFreeData will free both the
  pointers + contents.

16 years agoBunch of formatting & indentation fixes to rpmds
Panu Matilainen [Mon, 31 Mar 2008 05:42:33 +0000 (08:42 +0300)]
Bunch of formatting & indentation fixes to rpmds

16 years agoFixup for rpmfcSaveArg() no longer freeing key
Panu Matilainen [Sat, 29 Mar 2008 13:22:45 +0000 (15:22 +0200)]
Fixup for rpmfcSaveArg() no longer freeing key

16 years agoDon't use static buffer ptr as return value in doUntar()
Jindrich Novy [Sat, 29 Mar 2008 10:18:30 +0000 (11:18 +0100)]
Don't use static buffer ptr as return value in doUntar()

16 years agoDon't use static buffer in rpmfcELF(), make code more comprehensive
Jindrich Novy [Fri, 28 Mar 2008 16:49:56 +0000 (17:49 +0100)]
Don't use static buffer in rpmfcELF(), make code more comprehensive

16 years agoRemove unneeded buffer operations
Jindrich Novy [Fri, 28 Mar 2008 16:21:47 +0000 (17:21 +0100)]
Remove unneeded buffer operations

16 years agoAdd rpmfcAddFileDep() to handle file dependencies securely
Jindrich Novy [Fri, 28 Mar 2008 15:15:48 +0000 (16:15 +0100)]
Add rpmfcAddFileDep() to handle file dependencies securely

16 years agoSimplify changelog entry additions
Panu Matilainen [Wed, 26 Mar 2008 14:32:30 +0000 (16:32 +0200)]
Simplify changelog entry additions

16 years agoRemove unneeded free()
Jindrich Novy [Wed, 26 Mar 2008 10:52:07 +0000 (11:52 +0100)]
Remove unneeded free()

16 years agoUse rasprintf() in rpmfcHelper() and rpmfcGenerateDepends()
Jindrich Novy [Wed, 26 Mar 2008 08:21:30 +0000 (09:21 +0100)]
Use rasprintf() in rpmfcHelper() and rpmfcGenerateDepends()

16 years agoDon't use static buffers to communicate between funcs, avoid buffer overflows.
Jindrich Novy [Tue, 25 Mar 2008 14:21:47 +0000 (15:21 +0100)]
Don't use static buffers to communicate between funcs, avoid buffer overflows.

16 years agoUse rasprintf() for NVR construction to remove BUFSIZ limit.
Jindrich Novy [Tue, 25 Mar 2008 13:57:37 +0000 (14:57 +0100)]
Use rasprintf() for NVR construction to remove BUFSIZ limit.

16 years agoAvoid artificial limits on tag name.
Jindrich Novy [Tue, 25 Mar 2008 12:54:36 +0000 (13:54 +0100)]
Avoid artificial limits on tag name.

16 years agoDisable signature and digest checks on query modes (rhbz#438625)
Panu Matilainen [Tue, 25 Mar 2008 05:49:47 +0000 (07:49 +0200)]
Disable signature and digest checks on query modes (rhbz#438625)

16 years agoAvoid couple of static buffers in psm script functions
Panu Matilainen [Mon, 24 Mar 2008 21:58:43 +0000 (23:58 +0200)]
Avoid couple of static buffers in psm script functions

16 years agoAvoid static buffer for sql commands
Panu Matilainen [Mon, 24 Mar 2008 21:47:41 +0000 (23:47 +0200)]
Avoid static buffer for sql commands

16 years agoRemove bogus const from rpmRelocation struct
Panu Matilainen [Mon, 24 Mar 2008 20:42:34 +0000 (22:42 +0200)]
Remove bogus const from rpmRelocation struct

16 years agoRemove bogus consts from rpmte_s
Panu Matilainen [Mon, 24 Mar 2008 20:25:26 +0000 (22:25 +0200)]
Remove bogus consts from rpmte_s

16 years agoRevert rpmhash changes from previous commit
Panu Matilainen [Mon, 24 Mar 2008 20:23:01 +0000 (22:23 +0200)]
Revert rpmhash changes from previous commit
- rpmhash key + data actually sometimes point to const data.. pff

16 years agoRemove bogus consts from rpmdb and dbi structs
Panu Matilainen [Mon, 24 Mar 2008 20:13:45 +0000 (22:13 +0200)]
Remove bogus consts from rpmdb and dbi structs

16 years agoRemove bogus consts from pgpDigParams_s structure
Panu Matilainen [Mon, 24 Mar 2008 19:05:05 +0000 (21:05 +0200)]
Remove bogus consts from pgpDigParams_s structure

16 years agoRemove bogus consts from urlinfo_s structure
Panu Matilainen [Mon, 24 Mar 2008 18:44:48 +0000 (20:44 +0200)]
Remove bogus consts from urlinfo_s structure

16 years agoEliminate bogus const's from spec structure
Panu Matilainen [Mon, 24 Mar 2008 17:03:20 +0000 (19:03 +0200)]
Eliminate bogus const's from spec structure

16 years agoEliminate bogus const's from OFI_t and spectags structs
Panu Matilainen [Mon, 24 Mar 2008 17:03:00 +0000 (19:03 +0200)]
Eliminate bogus const's from OFI_t and spectags structs

16 years agoEliminate bogus const from expression value
Panu Matilainen [Mon, 24 Mar 2008 17:02:44 +0000 (19:02 +0200)]
Eliminate bogus const from expression value

16 years agoUse regular stream functions instead of rpmio in spec sanity check
Panu Matilainen [Mon, 24 Mar 2008 17:01:29 +0000 (19:01 +0200)]
Use regular stream functions instead of rpmio in spec sanity check

16 years agoEliminate wtf pointer games with rpmGetPath result.
Panu Matilainen [Mon, 24 Mar 2008 17:01:12 +0000 (19:01 +0200)]
Eliminate wtf pointer games with rpmGetPath result.

16 years agoAvoid entirely silly rpmio use in addFileToTagAux()
Panu Matilainen [Mon, 24 Mar 2008 17:00:48 +0000 (19:00 +0200)]
Avoid entirely silly rpmio use in addFileToTagAux()

16 years agoFix buffer overflow while creating patch script, avoid fixed sized buffers.
Jindrich Novy [Sun, 23 Mar 2008 12:51:53 +0000 (13:51 +0100)]
Fix buffer overflow while creating patch script, avoid fixed sized buffers.

16 years agoUse rasprintf() to prevent overflows and remove BUFSIZ buffer limit.
Jindrich Novy [Sun, 23 Mar 2008 12:50:07 +0000 (13:50 +0100)]
Use rasprintf() to prevent overflows and remove BUFSIZ buffer limit.

16 years agoFix writeRPM, use dynamic allocation, remove bogus const.
Jindrich Novy [Sun, 23 Mar 2008 12:48:49 +0000 (13:48 +0100)]
Fix writeRPM, use dynamic allocation, remove bogus const.

16 years agoAdjust maintainer makefile for hg -> git switchover
Panu Matilainen [Thu, 20 Mar 2008 08:59:17 +0000 (10:59 +0200)]
Adjust maintainer makefile for hg -> git switchover

16 years agoRemove bunch of double consts. What have I've been thinking?
Panu Matilainen [Wed, 19 Mar 2008 07:30:33 +0000 (09:30 +0200)]
Remove bunch of double consts. What have I've been thinking?

16 years agoErm, off-by-one in rasprintf()
Panu Matilainen [Tue, 18 Mar 2008 11:22:15 +0000 (13:22 +0200)]
Erm, off-by-one in rasprintf()
- should probably change the comment to "simple, stupid and buggy" ;)

16 years agoBump up sonames, we're not exactly ABI compatible with 4.4 anymore..
Panu Matilainen [Tue, 18 Mar 2008 08:28:57 +0000 (10:28 +0200)]
Bump up sonames, we're not exactly ABI compatible with 4.4 anymore..

16 years agoUse rasprintf() in rpmps to properly fix mdvbz#31680
Panu Matilainen [Tue, 18 Mar 2008 08:18:08 +0000 (10:18 +0200)]
Use rasprintf() in rpmps to properly fix mdvbz#31680

16 years agoAdd custom asprintf() clone to rpmstring
Panu Matilainen [Tue, 18 Mar 2008 08:17:03 +0000 (10:17 +0200)]
Add custom asprintf() clone to rpmstring

16 years agoMinimal namespacing for locale-insensitive x*() string functions
Panu Matilainen [Tue, 18 Mar 2008 07:10:13 +0000 (09:10 +0200)]
Minimal namespacing for locale-insensitive x*() string functions

16 years agoMore xstr[n]casecmp to rpmstring along the other string-stuff...
Panu Matilainen [Tue, 18 Mar 2008 06:55:05 +0000 (08:55 +0200)]
More xstr[n]casecmp to rpmstring along the other string-stuff...

16 years agoRefactor running of pre/post scriptlets out of rpmtsRun()
Panu Matilainen [Mon, 17 Mar 2008 14:03:51 +0000 (16:03 +0200)]
Refactor running of pre/post scriptlets out of rpmtsRun()

16 years agoAdd missing popt include
Panu Matilainen [Mon, 17 Mar 2008 13:48:25 +0000 (15:48 +0200)]
Add missing popt include

16 years agoRemove rollback and repackage from documentation
Panu Matilainen [Mon, 17 Mar 2008 12:36:43 +0000 (14:36 +0200)]
Remove rollback and repackage from documentation

16 years agoNuke leftover rollback test program, update translations
Panu Matilainen [Mon, 17 Mar 2008 12:27:03 +0000 (14:27 +0200)]
Nuke leftover rollback test program, update translations

16 years agoRemove repackage support to finish off with rollback
Panu Matilainen [Mon, 17 Mar 2008 12:10:11 +0000 (14:10 +0200)]
Remove repackage support to finish off with rollback

The two main classes of rollback/repackage need are
1) Gimme back the previous version, this broke XYZ on my system.
   This is better handled by downgrading to the previous version of original
   package instead of repackaged garbage. We should maintain real package
   (version) history somewhere.

2) Upgrade messed up my configuration.
   Instead of repackaging everything we could be far more intelligent
   wrt config files, stick them into real version control or at least have
   hooks to do so.

RPMCALLBACK_REPACKAGE_* and RPMTRANS_FLAG_REPACKAGE definitions left around
to avoid needlessly breaking everybodys callbacks (for now)

16 years agoRemove rollback support
Panu Matilainen [Mon, 17 Mar 2008 09:53:27 +0000 (11:53 +0200)]
Remove rollback support
- not possible to do reliably within rpm
- effort is better wasted on investigating fs-level snapshots, which
  is way beyond rpm scope except for hooks to interact with the snapshot
  mechanism to communicate beginning/end of transaction and such

16 years agoRemove support for automatic rollback on failure
Panu Matilainen [Mon, 17 Mar 2008 10:04:39 +0000 (12:04 +0200)]
Remove support for automatic rollback on failure
- doing this reliably from rpm is simply not possible as there's no way
  to undo script actions, might as well not pretend we can
- for a feature that's not generally usable it complicates mainline code
  way too much

16 years agoMake arch conditional in default queryformat
Panu Matilainen [Fri, 14 Mar 2008 12:55:44 +0000 (14:55 +0200)]
Make arch conditional in default queryformat
- gpg-pubkey's dont have arch, argh...

16 years agoRevert RPMTAG_FILEDIGESTS -> FILEMD5's for now
Panu Matilainen [Fri, 14 Mar 2008 12:27:01 +0000 (14:27 +0200)]
Revert RPMTAG_FILEDIGESTS -> FILEMD5's for now

16 years agoType missing for RPMTAG_HEADERI18NTABLE
Panu Matilainen [Fri, 14 Mar 2008 12:18:43 +0000 (14:18 +0200)]
Type missing for RPMTAG_HEADERI18NTABLE

16 years agoDon't process objdump sections after "Version References"
Panu Matilainen [Thu, 13 Mar 2008 07:20:24 +0000 (09:20 +0200)]
Don't process objdump sections after "Version References"

autodeps/linux.req expects the 'Version References' section to be
the very last section in objdump -p output and nothing else to follow
it, but at least on Linux/ARM, you can get output a la:

        Version References:
          required from ld-linux.so.3:
            0x0d696914 0x00 06 GLIBC_2.4
          required from libacl.so.1:
            0x05822450 0x00 05 ACL_1.0
          required from libgcc_s.so.1:
            0x0b792655 0x00 04 GCC_3.5
          required from librt.so.1:
            0x0d696914 0x00 03 GLIBC_2.4
          required from libc.so.6:
            0x0d696914 0x00 02 GLIBC_2.4
        private flags = 4000002: [Version4 EABI] [has entry point]

This causes the built package (if the external dep generator is
used) to end up with bogus dependencies.

Issue found by Rabeeh Khoury <rabeeh@marvell.com>

Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
16 years agoRemove rpmio internal copy of poptParseArgvString() & friends
Panu Matilainen [Wed, 12 Mar 2008 13:34:49 +0000 (15:34 +0200)]
Remove rpmio internal copy of poptParseArgvString() & friends
- the old included version segfaults with funky input and whatnot...
- link rpmio to real popt instead

16 years agoRefcount dbiTags on db open+close, automatically free
Panu Matilainen [Wed, 12 Mar 2008 11:20:47 +0000 (13:20 +0200)]
Refcount dbiTags on db open+close, automatically free
- avoids rpmdb_internal include in rpmqv.c and memleak in API clients
- avoids having to export dbiTags(Max) at all

16 years agoUpdate translations
Panu Matilainen [Tue, 11 Mar 2008 09:33:04 +0000 (11:33 +0200)]
Update translations

16 years agoDust off Finnish translation
Panu Matilainen [Tue, 11 Mar 2008 09:32:37 +0000 (11:32 +0200)]
Dust off Finnish translation

16 years agoUpdated Polish translation (Piotr Drąg)
Panu Matilainen [Tue, 11 Mar 2008 06:42:34 +0000 (08:42 +0200)]
Updated Polish translation (Piotr Drąg)

16 years agoRemove support for automatically importing pubkeys from keyservers
Panu Matilainen [Fri, 7 Mar 2008 13:07:06 +0000 (15:07 +0200)]
Remove support for automatically importing pubkeys from keyservers
- causes hideous load on keyservers and autoimporting without user approval
  isn't a very good idea, especially as long as imported == trusted
- nothing wrong with supporting hkp lookups on manual --import though...
- curl doesn't know about hkp:// but http on appropriate port works just
  fine, lets re-enable it

16 years agoRemove BDB copy from the repository, it doesn't belong there
Panu Matilainen [Fri, 7 Mar 2008 12:05:28 +0000 (14:05 +0200)]
Remove BDB copy from the repository, it doesn't belong there

16 years agoStop insecurely covering up for lack of snprintf and vsnprintf
Panu Matilainen [Fri, 7 Mar 2008 11:34:20 +0000 (13:34 +0200)]
Stop insecurely covering up for lack of snprintf and vsnprintf
- we require C99 anyway
- snprintf is used unconditionally all around the tree
- if absolutely needed for portability, having insecure wrappers littered
  over the source is not the best way

16 years agoDrop librpmbuild from rpm.pc
Panu Matilainen [Fri, 7 Mar 2008 11:04:46 +0000 (13:04 +0200)]
Drop librpmbuild from rpm.pc
- next to nothing actually uses librpmbuild, avoid dragging it in needlessly
- if needed, add a separate .pc for rpmbuild later

16 years agoRemove unused RPMUSER, GROUP etc from configure.ac
Panu Matilainen [Fri, 7 Mar 2008 10:36:22 +0000 (12:36 +0200)]
Remove unused RPMUSER, GROUP etc from configure.ac

16 years agoLog message adjustments
Panu Matilainen [Fri, 7 Mar 2008 07:47:51 +0000 (09:47 +0200)]
Log message adjustments
- dont waste translator time by having them translate obscure debug messages
- adjust some suspect looking logging levels
- mark some non-debug messages for translation where missing..

16 years agoFurther constants made readonly...
Panu Matilainen [Fri, 7 Mar 2008 06:29:03 +0000 (08:29 +0200)]
Further constants made readonly...

16 years agoMake _cacheDependsRC static, not needed outside depends.c
Panu Matilainen [Fri, 7 Mar 2008 06:21:55 +0000 (08:21 +0200)]
Make _cacheDependsRC static, not needed outside depends.c

16 years agoAnother pile of read-only constants marked as such..
Panu Matilainen [Fri, 7 Mar 2008 06:20:03 +0000 (08:20 +0200)]
Another pile of read-only constants marked as such..

16 years agoMark another pile of header_magic duplicates as read-only
Panu Matilainen [Fri, 7 Mar 2008 06:15:03 +0000 (08:15 +0200)]
Mark another pile of header_magic duplicates as read-only