From: "Fabian Groffen" <grobian@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/portage-utils:master commit in: libq/
Date: Thu, 25 Apr 2019 09:22:11 +0000 (UTC) [thread overview]
Message-ID: <1555776193.04213a5dfc76db2caa821d41d1cb471fa3556707.grobian@gentoo> (raw)
commit: 04213a5dfc76db2caa821d41d1cb471fa3556707
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 20 16:03:13 2019 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sat Apr 20 16:03:13 2019 +0000
URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=04213a5d
libq/cache: rework to be vdb-like enumerator abstraction
Using this code, one can walk through a repository's metadata cache
(md5-cache or (PMS) cache) and read cache entries conveniently.
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
libq/cache.c | 250 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
libq/cache.h | 37 ++++++---
2 files changed, 240 insertions(+), 47 deletions(-)
diff --git a/libq/cache.c b/libq/cache.c
index a130381..31178e7 100644
--- a/libq/cache.c
+++ b/libq/cache.c
@@ -14,8 +14,9 @@
#include <sys/stat.h>
#include <xalloc.h>
-#include "atom.h"
#include "cache.h"
+#include "scandirat.h"
+#include "vdb.h"
#ifdef EBUG
static void
@@ -48,34 +49,92 @@ cache_dump(portage_cache *cache)
}
#endif
-static portage_cache *cache_read_file_pms(const char *file);
-static portage_cache *cache_read_file_md5(const char *file);
-
-portage_cache *
-cache_read_file(int portcachedir_type, const char *file)
+static const char portcachedir_pms[] = "metadata/cache";
+static const char portcachedir_md5[] = "metadata/md5-cache";
+cache_ctx *
+cache_open(const char *sroot, const char *portdir)
{
- if (portcachedir_type == CACHE_METADATA_MD5)
- return(cache_read_file_md5(file));
- else if (portcachedir_type == CACHE_METADATA_PMS)
- return(cache_read_file_pms(file));
- warn("Unknown metadata cache type!");
+ q_vdb_ctx *dir;
+ cache_ctx *ret;
+ char buf[_Q_PATH_MAX];
+
+ snprintf(buf, sizeof(buf), "%s/%s", portdir, portcachedir_md5);
+ dir = q_vdb_open(sroot, buf);
+ if (dir != NULL) {
+ ret = xmalloc(sizeof(cache_ctx));
+ ret->dir_ctx = dir;
+ ret->cachetype = CACHE_METADATA_MD5;
+ return ret;
+ }
+
+ snprintf(buf, sizeof(buf), "%s/%s", portdir, portcachedir_pms);
+ dir = q_vdb_open(sroot, buf);
+ if (dir != NULL) {
+ ret = xmalloc(sizeof(cache_ctx));
+ ret->dir_ctx = dir;
+ ret->cachetype = CACHE_METADATA_PMS;
+ return ret;
+ }
+
return NULL;
}
-static portage_cache *
-cache_read_file_pms(const char *file)
+void
+cache_close(cache_ctx *ctx)
+{
+ q_vdb_close(ctx->dir_ctx);
+ free(ctx);
+}
+
+cache_cat_ctx *
+cache_open_cat(cache_ctx *ctx, const char *name)
+{
+ cache_cat_ctx *ret = q_vdb_open_cat(ctx->dir_ctx, name);
+ if (ret != NULL)
+ ret->ctx = (q_vdb_ctx *)ctx;
+ return ret;
+}
+
+cache_cat_ctx *
+cache_next_cat(cache_ctx *ctx)
+{
+ return q_vdb_next_cat(ctx->dir_ctx);
+}
+
+void
+cache_close_cat(cache_cat_ctx *cat_ctx)
+{
+ q_vdb_close_cat(cat_ctx);
+}
+
+cache_pkg_ctx *
+cache_open_pkg(cache_cat_ctx *cat_ctx, const char *name)
+{
+ return q_vdb_open_pkg(cat_ctx, name);
+}
+
+cache_pkg_ctx *
+cache_next_pkg(cache_cat_ctx *cat_ctx)
+{
+ return q_vdb_next_pkg(cat_ctx);
+}
+
+static cache_pkg_meta *
+cache_read_file_pms(cache_pkg_ctx *pkg_ctx)
{
struct stat s;
char *ptr;
FILE *f;
- portage_cache *ret = NULL;
+ cache_pkg_meta *ret = NULL;
size_t len;
+ char buf[_Q_PATH_MAX];
- if ((f = fopen(file, "r")) == NULL)
+ if ((f = fdopen(pkg_ctx->fd, "r")) == NULL)
goto err;
- if (fstat(fileno(f), &s) != 0)
+ if (fstat(pkg_ctx->fd, &s) != 0)
goto err;
+
len = sizeof(*ret) + s.st_size + 1;
ret = xzalloc(len);
ptr = (char*)ret;
@@ -83,11 +142,10 @@ cache_read_file_pms(const char *file)
if ((off_t)fread(ret->_data, 1, s.st_size, f) != s.st_size)
goto err;
- ret->atom = atom_explode(file);
ret->DEPEND = ret->_data;
#define next_line(curr, next) \
if ((ptr = strchr(ret->curr, '\n')) == NULL) { \
- warn("Invalid cache file '%s'", file); \
+ warn("Invalid cache file for '%s'", buf); \
goto err; \
} \
ret->next = ptr+1; \
@@ -110,35 +168,42 @@ cache_read_file_pms(const char *file)
#undef next_line
ptr = strchr(ptr+1, '\n');
if (ptr == NULL) {
- warn("Invalid cache file '%s' - could not find end of cache data", file);
+ warn("Invalid cache file for '%s' - could not find end of cache data",
+ buf);
goto err;
}
*ptr = '\0';
fclose(f);
+ pkg_ctx->fd = -1;
return ret;
err:
- if (f) fclose(f);
- if (ret) cache_free(ret);
+ if (f)
+ fclose(f);
+ pkg_ctx->fd = -1;
+ if (ret)
+ cache_close_meta(ret);
return NULL;
}
-static portage_cache *
-cache_read_file_md5(const char *file)
+static cache_pkg_meta *
+cache_read_file_md5(cache_pkg_ctx *pkg_ctx)
{
struct stat s;
char *ptr, *endptr;
FILE *f;
- portage_cache *ret = NULL;
+ cache_pkg_meta *ret = NULL;
size_t len;
+ char buf[_Q_PATH_MAX];
- if ((f = fopen(file, "r")) == NULL)
+ if ((f = fdopen(pkg_ctx->fd, "r")) == NULL)
goto err;
- if (fstat(fileno(f), &s) != 0)
+ if (fstat(pkg_ctx->fd, &s) != 0)
goto err;
+
len = sizeof(*ret) + s.st_size + 1;
ret = xzalloc(len);
ptr = (char*)ret;
@@ -146,8 +211,6 @@ cache_read_file_md5(const char *file)
if ((off_t)fread(ret->_data, 1, s.st_size, f) != s.st_size)
goto err;
- ret->atom = atom_explode(file);
-
/* We have a block of key=value\n data.
* KEY=VALUE\n
* Where KEY does NOT contain:
@@ -166,7 +229,8 @@ cache_read_file_md5(const char *file)
ptr = ret->_data;
endptr = strchr(ptr, '\0');
if (endptr == NULL) {
- warn("Invalid cache file '%s' - could not find end of cache data", file);
+ warn("Invalid cache file for '%s': "
+ "could not find end of cache data", buf);
goto err;
}
@@ -176,14 +240,14 @@ cache_read_file_md5(const char *file)
keyptr = ptr;
valptr = strchr(ptr, '=');
if (valptr == NULL) {
- warn("Invalid cache file '%s' val", file);
+ warn("Invalid cache file for '%s': missing val", buf);
goto err;
}
*valptr = '\0';
valptr++;
ptr = strchr(valptr, '\n');
if (ptr == NULL) {
- warn("Invalid cache file '%s' key", file);
+ warn("Invalid cache file for '%s': missing key", buf);
goto err;
}
*ptr = '\0';
@@ -209,26 +273,140 @@ cache_read_file_md5(const char *file)
assign_var(REQUIRED_USE);
assign_var(_eclasses_);
assign_var(_md5_);
- warn("Cache file '%s' with unknown key %s", file, keyptr);
+ warn("Cache file for '%s' has unknown key %s", buf, keyptr);
}
#undef assign_var
#undef assign_var_cmp
fclose(f);
+ pkg_ctx->fd = -1;
return ret;
err:
- if (f) fclose(f);
- if (ret) cache_free(ret);
+ if (f)
+ fclose(f);
+ pkg_ctx->fd = -1;
+ if (ret)
+ cache_close_meta(ret);
+ return NULL;
+}
+
+cache_pkg_meta *
+cache_pkg_read(cache_pkg_ctx *pkg_ctx)
+{
+ cache_ctx *ctx = (cache_ctx *)(pkg_ctx->cat_ctx->ctx);
+
+ if (pkg_ctx->fd == -1) {
+ pkg_ctx->fd = openat(pkg_ctx->cat_ctx->fd, pkg_ctx->name,
+ O_RDONLY|O_CLOEXEC);
+ if (pkg_ctx->fd == -1)
+ return NULL;
+ }
+
+ if (ctx->cachetype == CACHE_METADATA_MD5) {
+ return cache_read_file_md5(pkg_ctx);
+ } else if (ctx->cachetype == CACHE_METADATA_PMS) {
+ return cache_read_file_pms(pkg_ctx);
+ }
+
+ warn("Unknown metadata cache type!");
return NULL;
}
void
-cache_free(portage_cache *cache)
+cache_close_meta(cache_pkg_meta *cache)
{
if (!cache)
errf("Cache is empty !");
- atom_implode(cache->atom);
free(cache);
}
+
+void
+cache_close_pkg(cache_pkg_ctx *pkg_ctx)
+{
+ q_vdb_close_pkg(pkg_ctx);
+}
+
+int
+cache_foreach_pkg(const char *sroot, const char *portdir,
+ q_vdb_pkg_cb callback, void *priv, q_vdb_cat_filter filter)
+{
+ cache_ctx *ctx;
+ cache_cat_ctx *cat_ctx;
+ cache_pkg_ctx *pkg_ctx;
+ int ret;
+
+ ctx = cache_open(sroot, portdir);
+ if (!ctx)
+ return EXIT_FAILURE;
+
+ ret = 0;
+ while ((cat_ctx = cache_next_cat(ctx))) {
+ if (filter && !filter(cat_ctx, priv))
+ continue;
+ while ((pkg_ctx = cache_next_pkg(cat_ctx))) {
+ ret |= callback(pkg_ctx, priv);
+ cache_close_pkg(pkg_ctx);
+ }
+ }
+
+ cache_close(ctx);
+ return ret;
+}
+
+int
+cache_foreach_pkg_sorted(const char *sroot, const char *portdir,
+ q_vdb_pkg_cb callback, void *priv,
+ void *catsortfunc, void *pkgsortfunc)
+{
+ cache_ctx *ctx;
+ cache_cat_ctx *cat_ctx;
+ cache_pkg_ctx *pkg_ctx;
+ int ret = 0;
+ int c;
+ int p;
+ int cat_cnt;
+ int pkg_cnt;
+ struct dirent **cat_de;
+ struct dirent **pkg_de;
+
+ ctx = cache_open(sroot, portdir);
+ if (!ctx)
+ return EXIT_FAILURE;
+
+ if (catsortfunc == NULL)
+ catsortfunc = alphasort;
+ if (pkgsortfunc == NULL)
+ pkgsortfunc = alphasort;
+
+ cat_cnt = scandirat(ctx->dir_ctx->vdb_fd,
+ ".", &cat_de, q_vdb_filter_cat, catsortfunc);
+ for (c = 0; c < cat_cnt; ++c) {
+ cat_ctx = cache_open_cat(ctx, cat_de[c]->d_name);
+ if (!cat_ctx)
+ continue;
+
+ pkg_cnt = scandirat(ctx->dir_ctx->vdb_fd,
+ cat_de[c]->d_name, &pkg_de, q_vdb_filter_pkg, pkgsortfunc);
+ for (p = 0; p < pkg_cnt; ++p) {
+ if (pkg_de[p]->d_name[0] == '-')
+ continue;
+
+ pkg_ctx = cache_open_pkg(cat_ctx, pkg_de[p]->d_name);
+ if (!pkg_ctx)
+ continue;
+
+ ret |= callback(pkg_ctx, priv);
+
+ cache_close_pkg(pkg_ctx);
+ }
+ scandir_free(pkg_de, pkg_cnt);
+
+ cache_close_cat(cat_ctx);
+ }
+ scandir_free(cat_de, cat_cnt);
+
+ cache_close(ctx);
+ return ret;
+}
diff --git a/libq/cache.h b/libq/cache.h
index 93421df..c16efac 100644
--- a/libq/cache.h
+++ b/libq/cache.h
@@ -11,6 +11,14 @@
#define _CACHE_H 1
#include "atom.h"
+#include "vdb.h"
+
+typedef struct cache_ctx {
+ q_vdb_ctx *dir_ctx;
+ enum { CACHE_UNSET = 0, CACHE_METADATA_MD5, CACHE_METADATA_PMS } cachetype;
+} cache_ctx;
+#define cache_cat_ctx q_vdb_cat_ctx
+#define cache_pkg_ctx q_vdb_pkg_ctx
typedef struct {
char *_data;
@@ -30,23 +38,30 @@ typedef struct {
char *PROVIDE; /* line 14 */
char *EAPI;
char *PROPERTIES;
- depend_atom *atom;
/* These are MD5-Cache only */
char *DEFINED_PHASES;
char *REQUIRED_USE;
char *_eclasses_;
char *_md5_;
-} portage_cache;
+} cache_pkg_meta;
-portage_cache *
-cache_read_file(int portcachedir_type, const char *file);
-void cache_free(portage_cache *cache);
+typedef int (cache_pkg_cb)(cache_pkg_ctx *, void *priv);
+typedef int (cache_cat_filter)(cache_cat_ctx *, void *priv);
-enum {
- CACHE_EBUILD = 1,
- CACHE_METADATA = 2,
- CACHE_METADATA_PMS = 10,
- CACHE_METADATA_MD5 = 11,
-};
+cache_ctx *cache_open(const char *sroot, const char *portdir);
+void cache_close(cache_ctx *ctx);
+cache_cat_ctx *cache_open_cat(cache_ctx *ctx, const char *name);
+cache_cat_ctx *cache_next_cat(cache_ctx *ctx);
+void cache_close_cat(cache_cat_ctx *cat_ctx);
+cache_pkg_ctx *cache_open_pkg(cache_cat_ctx *cat_ctx, const char *name);
+cache_pkg_ctx *cache_next_pkg(cache_cat_ctx *cat_ctx);
+cache_pkg_meta *cache_pkg_read(cache_pkg_ctx *pkg_ctx);
+void cache_close_meta(cache_pkg_meta *cache);
+void cache_close_pkg(cache_pkg_ctx *pkg_ctx);
+int cache_foreach_pkg(const char *sroot, const char *portdir,
+ cache_pkg_cb callback, void *priv, cache_cat_filter filter);
+int cache_foreach_pkg_sorted(const char *sroot, const char *portdir,
+ cache_pkg_cb callback, void *priv,
+ void *catsortfunc, void *pkgsortfunc);
#endif
next reply other threads:[~2019-04-25 9:22 UTC|newest]
Thread overview: 196+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-25 9:22 Fabian Groffen [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-07-03 19:44 [gentoo-commits] proj/portage-utils:master commit in: libq/ Fabian Groffen
2024-04-08 19:27 Fabian Groffen
2024-02-01 8:21 Fabian Groffen
2024-02-01 8:21 Fabian Groffen
2024-01-31 20:41 Fabian Groffen
2024-01-31 19:30 Fabian Groffen
2024-01-31 19:29 Fabian Groffen
2024-01-27 13:28 Fabian Groffen
2023-04-21 19:11 Fabian Groffen
2023-01-30 14:14 Fabian Groffen
2022-05-26 14:36 Fabian Groffen
2022-05-26 14:36 Fabian Groffen
2022-05-20 17:15 Fabian Groffen
2022-05-20 17:15 Fabian Groffen
2022-05-19 8:32 Fabian Groffen
2022-05-19 8:16 Fabian Groffen
2022-05-19 7:45 Fabian Groffen
2022-02-12 17:13 Fabian Groffen
2022-02-12 17:13 Fabian Groffen
2022-02-06 14:51 Fabian Groffen
2022-02-06 14:29 Fabian Groffen
2022-02-06 13:27 Fabian Groffen
2022-02-06 13:27 Fabian Groffen
2022-02-06 12:22 Fabian Groffen
2021-12-29 12:20 Fabian Groffen
2021-12-26 13:59 Fabian Groffen
2021-12-26 13:59 Fabian Groffen
2021-12-26 13:59 Fabian Groffen
2021-12-26 13:59 Fabian Groffen
2021-12-13 8:39 Fabian Groffen
2021-12-13 8:39 Fabian Groffen
2021-11-13 14:27 Fabian Groffen
2021-10-09 12:13 Fabian Groffen
2021-10-04 6:28 Fabian Groffen
2021-10-04 6:28 Fabian Groffen
2021-10-03 10:49 Fabian Groffen
2021-06-23 7:14 Fabian Groffen
2021-06-14 9:34 Fabian Groffen
2021-06-14 9:34 Fabian Groffen
2021-06-14 9:34 Fabian Groffen
2021-06-14 9:34 Fabian Groffen
2021-06-14 9:34 Fabian Groffen
2021-06-14 9:34 Fabian Groffen
2021-06-01 19:43 Fabian Groffen
2021-05-23 10:54 Fabian Groffen
2021-05-10 9:15 Fabian Groffen
2021-04-29 15:04 Fabian Groffen
2021-04-29 13:47 Fabian Groffen
2021-04-29 13:24 Fabian Groffen
2021-03-13 12:44 Fabian Groffen
2021-02-20 12:06 Fabian Groffen
2021-02-20 11:44 Fabian Groffen
2021-02-17 20:23 Fabian Groffen
2021-02-17 20:23 Fabian Groffen
2021-01-15 20:05 Fabian Groffen
2020-06-27 9:38 Fabian Groffen
2020-06-07 10:41 Fabian Groffen
2020-05-25 18:19 Fabian Groffen
2020-05-25 18:02 Fabian Groffen
2020-05-25 13:26 Fabian Groffen
2020-05-25 11:20 Fabian Groffen
2020-05-25 11:06 Fabian Groffen
2020-05-25 10:43 Fabian Groffen
2020-05-25 10:43 Fabian Groffen
2020-05-25 10:43 Fabian Groffen
2020-05-25 10:43 Fabian Groffen
2020-05-25 10:43 Fabian Groffen
2020-05-17 12:35 Fabian Groffen
2020-05-17 12:35 Fabian Groffen
2020-02-03 13:17 Fabian Groffen
2020-02-03 13:09 Fabian Groffen
2020-01-26 19:31 Fabian Groffen
2020-01-22 19:54 Fabian Groffen
2020-01-22 19:54 Fabian Groffen
2020-01-20 19:54 Fabian Groffen
2020-01-20 19:34 Fabian Groffen
2020-01-19 19:36 Fabian Groffen
2020-01-19 19:09 Fabian Groffen
2020-01-19 19:09 Fabian Groffen
2020-01-19 19:09 Fabian Groffen
2020-01-19 19:09 Fabian Groffen
2020-01-19 16:37 Fabian Groffen
2020-01-19 12:37 Fabian Groffen
2020-01-19 10:05 Fabian Groffen
2020-01-19 9:49 Fabian Groffen
2020-01-19 9:49 Fabian Groffen
2020-01-17 8:22 Fabian Groffen
2020-01-05 16:08 Fabian Groffen
2020-01-05 16:08 Fabian Groffen
2020-01-05 16:08 Fabian Groffen
2020-01-02 15:09 Fabian Groffen
2020-01-02 14:07 Fabian Groffen
2020-01-02 14:07 Fabian Groffen
2020-01-02 14:07 Fabian Groffen
2020-01-02 11:55 Fabian Groffen
2020-01-02 11:19 Fabian Groffen
2019-12-30 17:24 Fabian Groffen
2019-12-27 21:19 Fabian Groffen
2019-12-27 16:57 Fabian Groffen
2019-12-27 16:57 Fabian Groffen
2019-11-29 13:22 Fabian Groffen
2019-11-20 17:23 Fabian Groffen
2019-11-19 20:28 Fabian Groffen
2019-11-17 15:12 Fabian Groffen
2019-11-17 15:12 Fabian Groffen
2019-11-13 18:19 Fabian Groffen
2019-11-13 15:48 Fabian Groffen
2019-11-13 15:20 Fabian Groffen
2019-11-09 10:29 Fabian Groffen
2019-09-26 14:06 Fabian Groffen
2019-09-26 14:06 Fabian Groffen
2019-09-26 14:06 Fabian Groffen
2019-09-26 14:06 Fabian Groffen
2019-09-26 13:00 Fabian Groffen
2019-09-25 15:05 Fabian Groffen
2019-09-21 19:53 Fabian Groffen
2019-09-21 19:53 Fabian Groffen
2019-07-14 18:51 Fabian Groffen
2019-07-13 15:37 Fabian Groffen
2019-07-13 9:50 Fabian Groffen
2019-07-12 18:04 Fabian Groffen
2019-06-19 7:41 Fabian Groffen
2019-06-10 10:09 Fabian Groffen
2019-06-05 7:57 Fabian Groffen
2019-05-21 14:12 Fabian Groffen
2019-05-14 20:19 Fabian Groffen
2019-05-14 20:19 Fabian Groffen
2019-05-11 11:11 Fabian Groffen
2019-05-11 7:14 Fabian Groffen
2019-05-11 7:14 Fabian Groffen
2019-05-10 15:32 Fabian Groffen
2019-05-10 15:32 Fabian Groffen
2019-05-10 15:32 Fabian Groffen
2019-05-07 6:19 Fabian Groffen
2019-05-06 16:04 Fabian Groffen
2019-05-06 16:04 Fabian Groffen
2019-05-05 20:05 Fabian Groffen
2019-05-05 18:13 Fabian Groffen
2019-05-05 8:58 Fabian Groffen
2019-05-04 11:53 Fabian Groffen
2019-05-03 11:45 Fabian Groffen
2019-05-02 15:17 Fabian Groffen
2019-05-01 19:09 Fabian Groffen
2019-04-30 8:20 Fabian Groffen
2019-04-30 7:54 Fabian Groffen
2019-04-28 17:10 Fabian Groffen
2019-04-28 16:21 Fabian Groffen
2019-04-28 16:02 Fabian Groffen
2019-04-27 8:38 Fabian Groffen
2019-04-25 17:36 Fabian Groffen
2019-04-25 9:22 Fabian Groffen
2019-04-25 9:22 Fabian Groffen
2019-04-25 9:22 Fabian Groffen
2019-04-19 11:47 Fabian Groffen
2019-03-27 10:55 Fabian Groffen
2019-03-11 20:55 Fabian Groffen
2019-03-09 18:58 Fabian Groffen
2019-02-27 20:53 Fabian Groffen
2019-02-27 20:53 Fabian Groffen
2019-02-05 14:19 Fabian Groffen
2018-12-20 20:02 Fabian Groffen
2018-12-20 20:02 Fabian Groffen
2018-12-20 18:24 Fabian Groffen
2018-04-09 7:15 Fabian Groffen
2018-04-05 13:31 Fabian Groffen
2018-04-05 12:46 Fabian Groffen
2018-04-03 20:00 Fabian Groffen
2018-03-26 18:41 Fabian Groffen
2018-03-25 14:13 Fabian Groffen
2018-03-25 14:00 Fabian Groffen
2018-03-23 20:17 Fabian Groffen
2018-03-23 11:56 Fabian Groffen
2018-03-23 11:29 Fabian Groffen
2017-12-29 11:45 Fabian Groffen
2017-12-29 11:45 Fabian Groffen
2017-12-29 11:45 Fabian Groffen
2016-12-29 2:25 Mike Frysinger
2016-11-12 17:23 Mike Frysinger
2016-02-14 1:26 Mike Frysinger
2016-02-14 1:26 Mike Frysinger
2015-11-26 8:43 Mike Frysinger
2015-10-15 22:00 Mike Frysinger
2015-10-15 22:00 Mike Frysinger
2015-05-31 8:31 Mike Frysinger
2015-05-19 17:37 Mike Frysinger
2015-02-24 1:26 Mike Frysinger
2015-02-24 1:26 Mike Frysinger
2015-02-24 1:26 Mike Frysinger
2015-02-21 18:06 Mike Frysinger
2015-02-16 11:47 Mike Frysinger
2014-03-11 4:53 Mike Frysinger
2014-03-08 5:51 Mike Frysinger
2014-03-08 5:51 Mike Frysinger
2014-03-08 5:51 Mike Frysinger
2014-03-08 5:51 Mike Frysinger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1555776193.04213a5dfc76db2caa821d41d1cb471fa3556707.grobian@gentoo \
--to=grobian@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox