projects
/
apt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
releasing package apt version 1.0.5
[apt.git]
/
apt-pkg
/
versionmatch.h
diff --git
a/apt-pkg/versionmatch.h
b/apt-pkg/versionmatch.h
index a8f3c84ac9a8ab92fcb3fdb289510a3ea208c035..4c8f704c861e3da8b56c9643785fcd254e9c4a54 100644
(file)
--- a/
apt-pkg/versionmatch.h
+++ b/
apt-pkg/versionmatch.h
@@
-23,6
+23,7
@@
Codename (n=) e.g. etch, lenny, squeeze, sid
Label (l=)
Component (c=)
Codename (n=) e.g. etch, lenny, squeeze, sid
Label (l=)
Component (c=)
+ Binary Architecture (b=)
If there are no equals signs in the string then it is scanned in short
form - if it starts with a number it is Version otherwise it is an
Archive or a Codename.
If there are no equals signs in the string then it is scanned in short
form - if it starts with a number it is Version otherwise it is an
Archive or a Codename.
@@
-34,41
+35,47
@@
#ifndef PKGLIB_VERSIONMATCH_H
#define PKGLIB_VERSIONMATCH_H
#ifndef PKGLIB_VERSIONMATCH_H
#define PKGLIB_VERSIONMATCH_H
+#include <apt-pkg/pkgcache.h>
+#include <apt-pkg/cacheiterators.h>
#include <string>
#include <string>
-#include <apt-pkg/pkgcache.h>
+#ifndef APT_8_CLEANER_HEADERS
using std::string;
using std::string;
+#endif
class pkgVersionMatch
class pkgVersionMatch
-{
+{
// Version Matching
// Version Matching
- string VerStr;
+ st
d::st
ring VerStr;
bool VerPrefixMatch;
// Release Matching
bool VerPrefixMatch;
// Release Matching
- string RelVerStr;
+ st
d::st
ring RelVerStr;
bool RelVerPrefixMatch;
bool RelVerPrefixMatch;
- string RelOrigin;
- string RelRelease;
- string RelCodename;
- string RelArchive;
- string RelLabel;
- string RelComponent;
+ std::string RelOrigin;
+ std::string RelRelease;
+ std::string RelCodename;
+ std::string RelArchive;
+ std::string RelLabel;
+ std::string RelComponent;
+ std::string RelArchitecture;
bool MatchAll;
bool MatchAll;
-
+
// Origin Matching
// Origin Matching
- string OrSite;
-
+ st
d::st
ring OrSite;
+
public:
public:
-
+
enum MatchType {None = 0,Version,Release,Origin} Type;
enum MatchType {None = 0,Version,Release,Origin} Type;
-
- bool MatchVer(const char *A,string B,bool Prefix);
+
+ bool MatchVer(const char *A,std::string B,bool Prefix) APT_PURE;
+ bool ExpressionMatches(const char *pattern, const char *string);
+ bool ExpressionMatches(const std::string& pattern, const char *string);
bool FileMatch(pkgCache::PkgFileIterator File);
pkgCache::VerIterator Find(pkgCache::PkgIterator Pkg);
bool FileMatch(pkgCache::PkgFileIterator File);
pkgCache::VerIterator Find(pkgCache::PkgIterator Pkg);
-
- pkgVersionMatch(string Data,MatchType Type);
+
+ pkgVersionMatch(st
d::st
ring Data,MatchType Type);
};
#endif
};
#endif