#2 Miscellaneous fixes mostly for next_build.py
Merged 4 years ago by nphilipp. Opened 4 years ago by nphilipp.
fedora-infra/ nphilipp/generate_changelog master--misc-fixes  into  master

file modified
+29 -19
@@ -19,14 +19,10 @@ 

      """

      output = None

      try:

-         output = subprocess.check_output(

-             command, cwd=cwd, stderr=subprocess.PIPE

-         )

+         output = subprocess.check_output(command, cwd=cwd, stderr=subprocess.PIPE)

      except subprocess.CalledProcessError as e:

          _log.error(

-             "Command `{}` return code: `{}`".format(

-                 " ".join(command), e.returncode

-             )

+             "Command `{}` return code: `{}`".format(" ".join(command), e.returncode)

          )

          _log.error("stdout:\n-------\n{}".format(e.stdout))

          _log.error("stderr:\n-------\n{}".format(e.stderr))
@@ -58,19 +54,30 @@ 

  

          repo_obj.checkout_tree(

              commit,

-             strategy=pygit2.GIT_CHECKOUT_FORCE | pygit2.GIT_CHECKOUT_RECREATE_MISSING)

+             strategy=pygit2.GIT_CHECKOUT_FORCE | pygit2.GIT_CHECKOUT_RECREATE_MISSING,

+         )

          if os.path.exists(os.path.join(args[0], f"{name}.spec")):

              try:

-                 output = run_command([

-                     "rpm", "--qf", '%{name}  %{version}  %{release}\n',

-                     "--specfile", f"{name}.spec",

-                 ], cwd=args[0])

+                 output = run_command(

+                     [

+                         "rpm",

+                         "--qf",

+                         "%{name}  %{version}  %{release}\n",

+                         "--specfile",

+                         f"{name}.spec",

+                     ],

+                     cwd=args[0],

+                 )

              except Exception:

                  continue

              output = tuple(

-                 output.decode('utf-8').strip().split('\n')[0].rsplit('.', 1)[0].split('  ')

+                 output.decode("utf-8")

+                 .strip()

+                 .split("\n")[0]

+                 .rsplit(".", 1)[0]

+                 .split("  ")

              )

-             nvr = '-'.join(output)

+             nvr = "-".join(output)

  

              if commit.parents:

                  diff = repo_obj.diff(commit.parents[0], commit)
@@ -82,7 +89,7 @@ 

                  files_changed = [d.new_file.path for d in diff.deltas]

                  ignore = True

                  for filename in files_changed:

-                     if filename.endswith(('.spec', '.patch')):

+                     if filename.endswith((".spec", ".patch")):

                          ignore = False

                  if not ignore:

                      data[output].append(commit)
@@ -96,16 +103,19 @@ 

              last_commit = idx + 1 == len(data[nvr])

              commit_dt = datetime.datetime.utcfromtimestamp(commit.commit_time)

              wrapper = textwrap.TextWrapper(width=75, subsequent_indent="  ")

-             message = wrapper.fill(commit.message.split('\n')[0].strip('- '))

+             message = wrapper.fill(commit.message.split("\n")[0].strip("- "))

  

              if last_commit:

-                 print(f"* {commit_dt.strftime('%a %b %d %Y')} {commit.author.name} <{commit.author.email}> - {nvr[1]}-{nvr[2]}")

+                 print(

+                     f"* {commit_dt.strftime('%a %b %d %Y')} {commit.author.name} <{commit.author.email}> - {nvr[1]}-{nvr[2]}"

+                 )

              else:

-                 print(f"* {commit_dt.strftime('%a %b %d %Y')} {commit.author.name} <{commit.author.email}>")

+                 print(

+                     f"* {commit_dt.strftime('%a %b %d %Y')} {commit.author.name} <{commit.author.email}>"

+                 )

              print("- %s" % message)

              print()

  

  

- 

- if __name__ == '__main__':

+ if __name__ == "__main__":

      main(sys.argv[1:])

file modified
+45 -44
@@ -2,81 +2,82 @@ 

  

  import argparse

  import logging

- import subprocess

+ import re

  import sys

  

+ import koji

+ 

  

  _log = logging.getLogger(__name__)

  

  

- def run_command(command, cwd=None):

-     """ Run the specified command in a specific working directory if one

-     is specified.

-     """

-     output = None

-     try:

-         output = subprocess.check_output(

-             command, cwd=cwd, stderr=subprocess.PIPE

-         )

-     except subprocess.CalledProcessError as e:

-         _log.error(

-             "Command `{}` return code: `{}`".format(

-                 " ".join(command), e.returncode

-             )

-         )

-         _log.error("stdout:\n-------\n{}".format(e.stdout))

-         _log.error("stderr:\n-------\n{}".format(e.stderr))

-         raise Exception("Command failed to run")

- 

-     return output

- 

- 

- def get_cli_arguments(self):

+ def get_cli_arguments(args):

      """ Set the CLI argument parser and return the argument parsed.

      """

      parser = argparse.ArgumentParser(

          description="Script to determine the next NVR of a build"

      )

+     parser.add_argument(

+         "--koji-url",

+         help="The base URL of the Koji hub",

+         default="https://koji.fedoraproject.org/kojihub",

+     )

      parser.add_argument("package", help="The name of the package of interest")

      parser.add_argument("dist", help="The dist-tag of interest")

  

-     return parser.parse_args()

+     return parser.parse_args(args)

+ 

+ 

+ _release_re = re.compile(r"(?P<pkgrel>\d+)(?:(?P<middle>.*\.)(?P<minorbump>\d+))?")

+ 

+ 

+ def parse_release_tag(tag):

+     pkgrel = middle = minorbump = None

+     match = _release_re.match(tag)

+     if match:

+         pkgrel = int(match.group("pkgrel"))

+         middle = match.group("middle")

+         try:

+             minorbump = int(match.group("minorbump"))

+         except TypeError:

+             pass

+     return pkgrel, middle, minorbump

  

  

  def main(args):

      """ Main method. """

      args = get_cli_arguments(args)

+     client = koji.ClientSession(args.koji_url)

+ 

+     pkgid = client.getPackageID(args.package)

+     if not pkgid:

+         print(f"Package {args.package!r} not found!", file=sys.stderr)

+         return 1

  

-     cmd = f"koji list-builds --package={args.package} --state=COMPLETE -r --quiet"

-     rows = run_command(cmd.split()).decode("utf-8")

-     builds = [

-         row.strip().split()[0] for row in rows.split("\n") if row.strip()

-     ]

      n_builds = 1

-     last_build = None

-     nv = None

-     for build in builds:

-         if args.dist in build:

+     last_build = last_version = None

+     for build in client.listBuilds(pkgid, type="rpm", queryOpts={"order": "-nvr"}):

+         if args.dist in build["release"]:

              if n_builds == 1:

                  last_build = build

-                 nv = last_build.rsplit("-", 1)[0]

-             if build.startswith(nv):

+                 last_version = build["version"]

+             if build["version"] == last_version:

                  n_builds += 1

  

      if not last_build:

          print("No build found")

          return

  

-     print(f"Last build: {last_build}")

-     last_build = last_build.rsplit(f".{args.dist}", 1)[0]

-     rel = last_build.rsplit("-", 1)[-1]

+     print(f"Last build: {last_build['nvr']}")

+     pkgrel, middle, minorbump = parse_release_tag(last_build["release"])

      try:

-         rel = int(rel)

-         n_builds = max([rel + 1, n_builds])

-     except Exception:

+         n_builds = max([pkgrel + 1, n_builds])

+     except TypeError:

          pass

-     print(f"Next build: {nv}-{n_builds}.{args.dist}")

+     print(

+         f"Next build: {last_build['name']}-{last_build['version']}-{n_builds}.{args.dist}"

+     )

  

  

  if __name__ == "__main__":

-     main(sys.argv[1:])

+     sys.exit(main(sys.argv[1:]))

file added
+9
@@ -0,0 +1,9 @@ 

+ [flake8]

+ show-source = True

+ max-line-length = 100

+ exclude = .git,.tox,dist,*egg,build,tools

+ #ignore =

+ 

+ # Configure flake8-import-order

+ application-import-names = generate_changelog,next_build

+ import-order-style = google

@@ -0,0 +1,1 @@ 

+ pytest

@@ -0,0 +1,1 @@ 

+ [{"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#16026d47a9fecdd41078bcc3bbba7efb66b78a74"}}, "creation_time": "2020-01-28 21:52:27.485645", "completion_time": "2020-01-29 07:09:00.417750", "package_id": 407, "build_id": 1437094, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#16026d47a9fecdd41078bcc3bbba7efb66b78a74", "epoch": 2, "version": "2.10.14", "completion_ts": 1580281740.41775, "owner_id": 3445, "owner_name": "releng", "nvr": "gimp-2.10.14-4.fc32.1", "start_time": "2020-01-28 21:52:27.485645", "creation_event_id": 51301946, "start_ts": 1580248347.48565, "volume_id": 0, "creation_ts": 1580248347.48565, "name": "gimp", "task_id": 41158089, "volume_name": "DEFAULT", "release": "4.fc32.1"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#deebada78ac0c2d2631c6bf988e7a5efda5c6357"}}, "creation_time": "2019-11-04 20:28:15.616625", "completion_time": "2019-11-04 21:05:55.722786", "package_id": 407, "build_id": 1407553, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#deebada78ac0c2d2631c6bf988e7a5efda5c6357", "epoch": 2, "version": "2.10.14", "completion_ts": 1572901555.72279, "owner_id": 994, "owner_name": "kalev", "nvr": "gimp-2.10.14-1.fc29", "start_time": "2019-11-04 20:28:15.616625", "creation_event_id": 48431842, "start_ts": 1572899295.61663, "volume_id": 5, "creation_ts": 1572899295.61663, "name": "gimp", "task_id": 38765880, "volume_name": "fedora_koji_archive04", "release": "1.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#7367871288589287130bf0fe4e76d378af07163e"}}, "creation_time": "2019-07-31 10:31:50.993165", "completion_time": "2019-07-31 11:12:23.485736", "package_id": 407, "build_id": 1344472, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#7367871288589287130bf0fe4e76d378af07163e", "epoch": 2, "version": "2.10.12", "completion_ts": 1564571543.48574, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.12-2.fc29", "start_time": "2019-07-31 10:31:50.993165", "creation_event_id": 45121606, "start_ts": 1564569110.99317, "volume_id": 5, "creation_ts": 1564569110.99317, "name": "gimp", "task_id": 36702704, "volume_name": "fedora_koji_archive04", "release": "2.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#fe0f42a983006880a82e97c112d27b01dfa9d214"}}, "creation_time": "2018-11-12 09:47:48.543927", "completion_time": "2018-11-12 10:16:50.211783", "package_id": 407, "build_id": 1163247, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#fe0f42a983006880a82e97c112d27b01dfa9d214", "epoch": 2, "version": "2.10.8", "completion_ts": 1542017810.21178, "owner_id": 2115, "owner_name": "besser82", "nvr": "gimp-2.10.8-5.fc30", "start_time": "2018-11-12 09:47:48.543927", "creation_event_id": 37902192, "start_ts": 1542016068.54393, "volume_id": 6, "creation_ts": 1542016068.54393, "name": "gimp", "task_id": 30822900, "volume_name": "fedora_koji_archive05", "release": "5.fc30"}, {"package_name": "gimp", "extra": null, "creation_time": "2016-12-06 09:00:25.231194", "completion_time": "2016-12-06 09:36:59.397404", "package_id": 407, "build_id": 823145, "state": 1, "source": null, "epoch": 2, "version": "2.8.18", "completion_ts": 1481017019.3974, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.18-3.fc26", "start_time": "2016-12-06 09:00:25.231194", "creation_event_id": 19738291, "start_ts": 1481014825.23119, "volume_id": 6, "creation_ts": 1481014825.23119, "name": "gimp", "task_id": 16769983, "volume_name": "fedora_koji_archive05", "release": "3.fc26"}, {"package_name": "gimp", "extra": null, "creation_time": "2016-10-25 16:00:34.085540", "completion_time": "2016-10-25 16:37:36.103480", "package_id": 407, "build_id": 812552, "state": 1, "source": null, "epoch": 2, "version": "2.8.18", "completion_ts": 1477413456.10348, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.18-2.fc26", "start_time": "2016-10-25 16:00:34.085540", "creation_event_id": 18938131, "start_ts": 1477411234.08554, "volume_id": 6, "creation_ts": 1477411234.08554, "name": "gimp", "task_id": 16198238, "volume_name": "fedora_koji_archive05", "release": "2.fc26"}, {"package_name": "gimp", "extra": null, "creation_time": "2014-02-13 11:16:11.006825", "completion_time": "2014-02-13 11:59:25.371738", "package_id": 407, "build_id": 497848, "state": 1, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1392292765.37174, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-5.fc21", "start_time": null, "creation_event_id": 7227497, "start_ts": null, "volume_id": 6, "creation_ts": 1392290171.00682, "name": "gimp", "task_id": 6525328, "volume_name": "fedora_koji_archive05", "release": "5.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-04 12:51:12.288799", "completion_time": "2013-11-04 13:34:14.104415", "package_id": 407, "build_id": 476085, "state": 1, "source": null, "epoch": 2, "version": "2.8.8", "completion_ts": 1383572054.10441, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.8-1.fc21", "start_time": null, "creation_event_id": 6854168, "start_ts": null, "volume_id": 6, "creation_ts": 1383569472.2888, "name": "gimp", "task_id": 6135532, "volume_name": "fedora_koji_archive05", "release": "1.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-19 17:40:25.541020", "completion_time": "2012-11-19 18:02:28.415152", "package_id": 407, "build_id": 367494, "state": 1, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1353348148.41515, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-6.fc19", "start_time": null, "creation_event_id": 5375307, "start_ts": null, "volume_id": 6, "creation_ts": 1353346825.54102, "name": "gimp", "task_id": 4705298, "volume_name": "fedora_koji_archive05", "release": "6.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-12-15 15:25:32.863118", "completion_time": "2011-12-15 15:34:13.051694", "package_id": 407, "build_id": 278941, "state": 1, "source": null, "epoch": 2, "version": "2.7.4", "completion_ts": 1323963253.05169, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.7.4-1.fc17", "start_time": null, "creation_event_id": 4202048, "start_ts": null, "volume_id": 6, "creation_ts": 1323962732.86312, "name": "gimp", "task_id": 3587020, "volume_name": "fedora_koji_archive05", "release": "1.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-05-04 09:15:02.082055", "completion_time": "2011-05-04 09:23:36.111715", "package_id": 407, "build_id": 239958, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1304501016.11172, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-10.fc16", "start_time": null, "creation_event_id": 3695799, "start_ts": null, "volume_id": 6, "creation_ts": 1304500502.08206, "name": "gimp", "task_id": 3049514, "volume_name": "fedora_koji_archive05", "release": "10.fc16"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#fcae866daf6aae45bf125e3ef730432d39640752"}}, "creation_time": "2020-01-17 12:05:41.556617", "completion_time": "2020-01-17 12:40:40.097094", "package_id": 407, "build_id": 1430115, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#fcae866daf6aae45bf125e3ef730432d39640752", "epoch": 2, "version": "2.10.14", "completion_ts": 1579264840.09709, "owner_id": 603, "owner_name": "mkasik", "nvr": "gimp-2.10.14-4.fc32", "start_time": "2020-01-17 12:05:41.556617", "creation_event_id": 50744003, "start_ts": 1579262741.55662, "volume_id": 0, "creation_ts": 1579262741.55662, "name": "gimp", "task_id": 40654391, "volume_name": "DEFAULT", "release": "4.fc32"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#5806be946febc58b68ec28a3af16eab0e9207435"}}, "creation_time": "2018-08-24 14:51:44.975241", "completion_time": "2018-08-24 15:23:50.963352", "package_id": 407, "build_id": 1139085, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#5806be946febc58b68ec28a3af16eab0e9207435", "epoch": 2, "version": "2.10.6", "completion_ts": 1535124230.96335, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.6-2.fc29", "start_time": "2018-08-24 14:51:44.975241", "creation_event_id": 36007802, "start_ts": 1535122304.97524, "volume_id": 5, "creation_ts": 1535122304.97524, "name": "gimp", "task_id": 29269857, "volume_name": "fedora_koji_archive04", "release": "2.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#eac2096099c846c3fa6ba5bc6711dd4419a8fc1b"}}, "creation_time": "2018-07-13 08:50:28.815197", "completion_time": "2018-07-14 05:18:06.062312", "package_id": 407, "build_id": 1109543, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#eac2096099c846c3fa6ba5bc6711dd4419a8fc1b", "epoch": 2, "version": "2.10.4", "completion_ts": 1531545486.06231, "owner_id": 3445, "owner_name": "releng", "nvr": "gimp-2.10.4-1.fc29.1", "start_time": "2018-07-13 08:50:28.815197", "creation_event_id": 34703282, "start_ts": 1531471828.8152, "volume_id": 5, "creation_ts": 1531471828.8152, "name": "gimp", "task_id": 28180823, "volume_name": "fedora_koji_archive04", "release": "1.fc29.1"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#d34c077d03bb463232ee3efe9a76b9400b2b3f11"}}, "creation_time": "2019-02-01 10:31:04.415394", "completion_time": "2019-02-01 11:21:32.293008", "package_id": 407, "build_id": 1190095, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#d34c077d03bb463232ee3efe9a76b9400b2b3f11", "epoch": 2, "version": "2.8.22", "completion_ts": 1549020092.29301, "owner_id": 2115, "owner_name": "besser82", "nvr": "gimp-2.8.22-7.fc28.1", "start_time": "2019-02-01 10:31:04.415394", "creation_event_id": 39735830, "start_ts": 1549017064.41539, "volume_id": 4, "creation_ts": 1549017064.41539, "name": "gimp", "task_id": 32413969, "volume_name": "fedora_koji_archive03", "release": "7.fc28.1"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#d0d460ef15ae69c3c63f021aa3b035b6cea6b203"}}, "creation_time": "2019-02-01 10:30:27.395121", "completion_time": "2019-02-01 11:13:28.426755", "package_id": 407, "build_id": 1190094, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#d0d460ef15ae69c3c63f021aa3b035b6cea6b203", "epoch": 2, "version": "2.10.8", "completion_ts": 1549019608.42675, "owner_id": 2115, "owner_name": "besser82", "nvr": "gimp-2.10.8-6.fc29", "start_time": "2019-02-01 10:30:27.395121", "creation_event_id": 39735819, "start_ts": 1549017027.39512, "volume_id": 4, "creation_ts": 1549017027.39512, "name": "gimp", "task_id": 32413983, "volume_name": "fedora_koji_archive03", "release": "6.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#51f0d4275fa96a25bcdfc322697015c6ba055104"}}, "creation_time": "2020-01-11 18:16:42.281184", "completion_time": "2020-01-11 18:38:52.131009", "package_id": 407, "build_id": 1428424, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#51f0d4275fa96a25bcdfc322697015c6ba055104", "epoch": 2, "version": "2.10.14", "completion_ts": 1578767932.13101, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.14-3.module_f31+7335+1e2f28bc", "start_time": "2020-01-11 18:16:42.281184", "creation_event_id": 50396588, "start_ts": 1578766602.28118, "volume_id": 0, "creation_ts": 1578766602.28118, "name": "gimp", "task_id": 40413406, "volume_name": "DEFAULT", "release": "3.module_f31+7335+1e2f28bc"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#51f0d4275fa96a25bcdfc322697015c6ba055104"}}, "creation_time": "2020-01-09 10:24:39.035474", "completion_time": "2020-01-09 10:48:29.907214", "package_id": 407, "build_id": 1427817, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#51f0d4275fa96a25bcdfc322697015c6ba055104", "epoch": 2, "version": "2.10.14", "completion_ts": 1578566909.90721, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.14-3.fc30", "start_time": "2020-01-09 10:24:39.035474", "creation_event_id": 50251984, "start_ts": 1578565479.03547, "volume_id": 0, "creation_ts": 1578565479.03547, "name": "gimp", "task_id": 40315826, "volume_name": "DEFAULT", "release": "3.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#51f0d4275fa96a25bcdfc322697015c6ba055104"}}, "creation_time": "2020-01-09 09:31:16.263824", "completion_time": "2020-01-09 09:54:12.815412", "package_id": 407, "build_id": 1427790, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#51f0d4275fa96a25bcdfc322697015c6ba055104", "epoch": 2, "version": "2.10.14", "completion_ts": 1578563652.81541, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.14-3.fc31", "start_time": "2020-01-09 09:31:16.263824", "creation_event_id": 50249599, "start_ts": 1578562276.26382, "volume_id": 0, "creation_ts": 1578562276.26382, "name": "gimp", "task_id": 40313431, "volume_name": "DEFAULT", "release": "3.fc31"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#51f0d4275fa96a25bcdfc322697015c6ba055104"}}, "creation_time": "2020-01-09 08:42:22.546158", "completion_time": "2020-01-09 09:03:49.012936", "package_id": 407, "build_id": 1427776, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#51f0d4275fa96a25bcdfc322697015c6ba055104", "epoch": 2, "version": "2.10.14", "completion_ts": 1578560629.01294, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.14-3.fc32", "start_time": "2020-01-09 08:42:22.546158", "creation_event_id": 50247840, "start_ts": 1578559342.54616, "volume_id": 0, "creation_ts": 1578559342.54616, "name": "gimp", "task_id": 40311480, "volume_name": "DEFAULT", "release": "3.fc32"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#1f961ef2ace4637fc76725316cd39e989f633965"}}, "creation_time": "2019-12-02 19:20:36.563340", "completion_time": "2019-12-02 19:52:14.908742", "package_id": 407, "build_id": 1418951, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#1f961ef2ace4637fc76725316cd39e989f633965", "epoch": 2, "version": "2.10.14", "completion_ts": 1575316334.90874, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.14-2.module_f31+7160+76504fbc", "start_time": "2019-12-02 19:20:36.563340", "creation_event_id": 49210821, "start_ts": 1575314436.56334, "volume_id": 0, "creation_ts": 1575314436.56334, "name": "gimp", "task_id": 39416218, "volume_name": "DEFAULT", "release": "2.module_f31+7160+76504fbc"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#f6fdd69f210ce43c534aeb991066e44122c56907"}}, "creation_time": "2019-11-18 07:40:58.419565", "completion_time": "2019-11-18 08:28:00.232006", "package_id": 407, "build_id": 1413750, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#f6fdd69f210ce43c534aeb991066e44122c56907", "epoch": 2, "version": "2.10.14", "completion_ts": 1574065680.23201, "owner_id": 994, "owner_name": "kalev", "nvr": "gimp-2.10.14-2.fc30", "start_time": "2019-11-18 07:40:58.419565", "creation_event_id": 48814833, "start_ts": 1574062858.41956, "volume_id": 0, "creation_ts": 1574062858.41956, "name": "gimp", "task_id": 39077580, "volume_name": "DEFAULT", "release": "2.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#f6fdd69f210ce43c534aeb991066e44122c56907"}}, "creation_time": "2019-11-18 07:39:41.845647", "completion_time": "2019-11-18 08:22:46.030176", "package_id": 407, "build_id": 1413749, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#f6fdd69f210ce43c534aeb991066e44122c56907", "epoch": 2, "version": "2.10.14", "completion_ts": 1574065366.03018, "owner_id": 994, "owner_name": "kalev", "nvr": "gimp-2.10.14-2.fc31", "start_time": "2019-11-18 07:39:41.845647", "creation_event_id": 48814780, "start_ts": 1574062781.84565, "volume_id": 0, "creation_ts": 1574062781.84565, "name": "gimp", "task_id": 39077561, "volume_name": "DEFAULT", "release": "2.fc31"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#f6fdd69f210ce43c534aeb991066e44122c56907"}}, "creation_time": "2019-11-18 07:39:25.785303", "completion_time": "2019-11-18 08:11:06.691101", "package_id": 407, "build_id": 1413748, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#f6fdd69f210ce43c534aeb991066e44122c56907", "epoch": 2, "version": "2.10.14", "completion_ts": 1574064666.6911, "owner_id": 994, "owner_name": "kalev", "nvr": "gimp-2.10.14-2.fc32", "start_time": "2019-11-18 07:39:25.785303", "creation_event_id": 48814759, "start_ts": 1574062765.7853, "volume_id": 0, "creation_ts": 1574062765.7853, "name": "gimp", "task_id": 39077552, "volume_name": "DEFAULT", "release": "2.fc32"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#deebada78ac0c2d2631c6bf988e7a5efda5c6357"}}, "creation_time": "2019-11-07 12:28:19.927220", "completion_time": "2019-11-07 13:07:30.383700", "package_id": 407, "build_id": 1408586, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#deebada78ac0c2d2631c6bf988e7a5efda5c6357", "epoch": 2, "version": "2.10.14", "completion_ts": 1573132050.3837, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.14-1.module_f31+6993+669d73be", "start_time": "2019-11-07 12:28:19.927220", "creation_event_id": 48511369, "start_ts": 1573129699.92722, "volume_id": 0, "creation_ts": 1573129699.92722, "name": "gimp", "task_id": 38824247, "volume_name": "DEFAULT", "release": "1.module_f31+6993+669d73be"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#deebada78ac0c2d2631c6bf988e7a5efda5c6357"}}, "creation_time": "2019-11-07 12:28:34.563581", "completion_time": "2019-11-07 13:03:21.883134", "package_id": 407, "build_id": 1408585, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#deebada78ac0c2d2631c6bf988e7a5efda5c6357", "epoch": 2, "version": "2.10.14", "completion_ts": 1573131801.88313, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.14-1.module_f30+6995+c35e2138", "start_time": "2019-11-07 12:28:34.563581", "creation_event_id": 48511384, "start_ts": 1573129714.56358, "volume_id": 0, "creation_ts": 1573129714.56358, "name": "gimp", "task_id": 38824262, "volume_name": "DEFAULT", "release": "1.module_f30+6995+c35e2138"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#deebada78ac0c2d2631c6bf988e7a5efda5c6357"}}, "creation_time": "2019-11-07 12:27:44.843791", "completion_time": "2019-11-07 12:57:35.601976", "package_id": 407, "build_id": 1408583, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#deebada78ac0c2d2631c6bf988e7a5efda5c6357", "epoch": 2, "version": "2.10.14", "completion_ts": 1573131455.60198, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.14-1.module_f29+6994+babe48e4", "start_time": "2019-11-07 12:27:44.843791", "creation_event_id": 48511354, "start_ts": 1573129664.84379, "volume_id": 0, "creation_ts": 1573129664.84379, "name": "gimp", "task_id": 38824207, "volume_name": "DEFAULT", "release": "1.module_f29+6994+babe48e4"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#9b1db04b62018da92e235f0c590e4bc977b90ea2"}}, "creation_time": "2019-11-06 20:00:46.353075", "completion_time": "2019-11-06 20:46:40.135948", "package_id": 407, "build_id": 1409060, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#9b1db04b62018da92e235f0c590e4bc977b90ea2", "epoch": 2, "version": "2.10.14", "completion_ts": 1573073200.13595, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.14-1.module_f29+7011+91de5b04", "start_time": "2019-11-06 20:00:46.353075", "creation_event_id": 48495947, "start_ts": 1573070446.35308, "volume_id": 0, "creation_ts": 1573070446.35308, "name": "gimp", "task_id": 38811268, "volume_name": "DEFAULT", "release": "1.module_f29+7011+91de5b04"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#deebada78ac0c2d2631c6bf988e7a5efda5c6357"}}, "creation_time": "2019-11-06 12:36:05.243627", "completion_time": "2019-11-06 13:10:01.451284", "package_id": 407, "build_id": 1408804, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#deebada78ac0c2d2631c6bf988e7a5efda5c6357", "epoch": 2, "version": "2.10.14", "completion_ts": 1573045801.45128, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.14-1.module_f29+7003+4a495d92", "start_time": "2019-11-06 12:36:05.243627", "creation_event_id": 48481487, "start_ts": 1573043765.24363, "volume_id": 0, "creation_ts": 1573043765.24363, "name": "gimp", "task_id": 38801826, "volume_name": "DEFAULT", "release": "1.module_f29+7003+4a495d92"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#deebada78ac0c2d2631c6bf988e7a5efda5c6357"}}, "creation_time": "2019-11-06 09:57:26.639120", "completion_time": "2019-11-06 10:00:16.715622", "package_id": 407, "build_id": 1407878, "state": 3, "source": "git+https://src.fedoraproject.org/rpms/gimp#deebada78ac0c2d2631c6bf988e7a5efda5c6357", "epoch": 2, "version": "2.10.14", "completion_ts": 1573034416.71562, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.14-1.module_f30+6978+ef35fcb8", "start_time": "2019-11-06 09:57:26.639120", "creation_event_id": 48476761, "start_ts": 1573034246.63912, "volume_id": 0, "creation_ts": 1573034246.63912, "name": "gimp", "task_id": 38799297, "volume_name": "DEFAULT", "release": "1.module_f30+6978+ef35fcb8"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#deebada78ac0c2d2631c6bf988e7a5efda5c6357"}}, "creation_time": "2019-11-06 09:56:02.044800", "completion_time": "2019-11-06 09:59:43.708113", "package_id": 407, "build_id": 1407874, "state": 3, "source": "git+https://src.fedoraproject.org/rpms/gimp#deebada78ac0c2d2631c6bf988e7a5efda5c6357", "epoch": 2, "version": "2.10.14", "completion_ts": 1573034383.70811, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.14-1.module_f29+6977+e3289dad", "start_time": "2019-11-06 09:56:02.044800", "creation_event_id": 48476730, "start_ts": 1573034162.0448, "volume_id": 0, "creation_ts": 1573034162.0448, "name": "gimp", "task_id": 38799301, "volume_name": "DEFAULT", "release": "1.module_f29+6977+e3289dad"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#deebada78ac0c2d2631c6bf988e7a5efda5c6357"}}, "creation_time": "2019-11-06 09:56:09.342596", "completion_time": "2019-11-06 09:58:50.071925", "package_id": 407, "build_id": 1407870, "state": 3, "source": "git+https://src.fedoraproject.org/rpms/gimp#deebada78ac0c2d2631c6bf988e7a5efda5c6357", "epoch": 2, "version": "2.10.14", "completion_ts": 1573034330.07192, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.14-1.module_f31+6979+7305f07c", "start_time": "2019-11-06 09:56:09.342596", "creation_event_id": 48476738, "start_ts": 1573034169.3426, "volume_id": 0, "creation_ts": 1573034169.3426, "name": "gimp", "task_id": 38799288, "volume_name": "DEFAULT", "release": "1.module_f31+6979+7305f07c"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#deebada78ac0c2d2631c6bf988e7a5efda5c6357"}}, "creation_time": "2019-11-05 17:03:22.774180", "completion_time": "2019-11-05 17:37:40.488924", "package_id": 407, "build_id": 1407872, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#deebada78ac0c2d2631c6bf988e7a5efda5c6357", "epoch": 2, "version": "2.10.14", "completion_ts": 1572975460.48892, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.14-1.module_f32+6980+20383b7e", "start_time": "2019-11-05 17:03:22.774180", "creation_event_id": 48450020, "start_ts": 1572973402.77418, "volume_id": 0, "creation_ts": 1572973402.77418, "name": "gimp", "task_id": 38780594, "volume_name": "DEFAULT", "release": "1.module_f32+6980+20383b7e"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#deebada78ac0c2d2631c6bf988e7a5efda5c6357"}}, "creation_time": "2019-11-04 20:28:16.507350", "completion_time": "2019-11-04 21:21:20.718622", "package_id": 407, "build_id": 1407554, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#deebada78ac0c2d2631c6bf988e7a5efda5c6357", "epoch": 2, "version": "2.10.14", "completion_ts": 1572902480.71862, "owner_id": 994, "owner_name": "kalev", "nvr": "gimp-2.10.14-1.fc30", "start_time": "2019-11-04 20:28:16.507350", "creation_event_id": 48431844, "start_ts": 1572899296.50735, "volume_id": 0, "creation_ts": 1572899296.50735, "name": "gimp", "task_id": 38765872, "volume_name": "DEFAULT", "release": "1.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#deebada78ac0c2d2631c6bf988e7a5efda5c6357"}}, "creation_time": "2019-11-04 20:27:26.537945", "completion_time": "2019-11-04 21:08:25.584808", "package_id": 407, "build_id": 1407550, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#deebada78ac0c2d2631c6bf988e7a5efda5c6357", "epoch": 2, "version": "2.10.14", "completion_ts": 1572901705.58481, "owner_id": 994, "owner_name": "kalev", "nvr": "gimp-2.10.14-1.fc31", "start_time": "2019-11-04 20:27:26.537945", "creation_event_id": 48431776, "start_ts": 1572899246.53795, "volume_id": 0, "creation_ts": 1572899246.53795, "name": "gimp", "task_id": 38765858, "volume_name": "DEFAULT", "release": "1.fc31"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#deebada78ac0c2d2631c6bf988e7a5efda5c6357"}}, "creation_time": "2019-11-04 20:26:07.631769", "completion_time": "2019-11-04 21:07:01.132849", "package_id": 407, "build_id": 1407549, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#deebada78ac0c2d2631c6bf988e7a5efda5c6357", "epoch": 2, "version": "2.10.14", "completion_ts": 1572901621.13285, "owner_id": 994, "owner_name": "kalev", "nvr": "gimp-2.10.14-1.fc32", "start_time": "2019-11-04 20:26:07.631769", "creation_event_id": 48431765, "start_ts": 1572899167.63177, "volume_id": 0, "creation_ts": 1572899167.63177, "name": "gimp", "task_id": 38765847, "volume_name": "DEFAULT", "release": "1.fc32"}, {"package_name": "gimp", "extra": null, "creation_time": "2018-02-07 14:09:01.389630", "completion_time": "2018-02-08 07:53:44.581219", "package_id": 407, "build_id": 1028534, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1518076424.58122, "owner_id": 3445, "owner_name": "releng", "nvr": "gimp-2.8.22-4.fc28.2", "start_time": "2018-02-07 14:09:01.389630", "creation_event_id": 30703830, "start_ts": 1518012541.38963, "volume_id": 3, "creation_ts": 1518012541.38963, "name": "gimp", "task_id": 24793617, "volume_name": "fedora_koji_archive02", "release": "4.fc28.2"}, {"package_name": "gimp", "extra": null, "creation_time": "2018-02-03 15:27:45.522947", "completion_time": "2018-02-03 16:00:17.466793", "package_id": 407, "build_id": 1023558, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1517673617.46679, "owner_id": 2546, "owner_name": "ignatenkobrain", "nvr": "gimp-2.8.22-4.fc28.1", "start_time": "2018-02-03 15:27:45.522947", "creation_event_id": 30558155, "start_ts": 1517671665.52295, "volume_id": 3, "creation_ts": 1517671665.52295, "name": "gimp", "task_id": 24679070, "volume_name": "fedora_koji_archive02", "release": "4.fc28.1"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#f3f09fe667f718793c0853a2d411b141c5fe7611"}}, "creation_time": "2018-08-23 12:53:20.750261", "completion_time": "2018-08-23 13:44:43.773273", "package_id": 407, "build_id": 1138794, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#f3f09fe667f718793c0853a2d411b141c5fe7611", "epoch": 2, "version": "2.8.22", "completion_ts": 1535031883.77327, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-7.fc27", "start_time": "2018-08-23 12:53:20.750261", "creation_event_id": 35985574, "start_ts": 1535028800.75026, "volume_id": 3, "creation_ts": 1535028800.75026, "name": "gimp", "task_id": 29248764, "volume_name": "fedora_koji_archive02", "release": "7.fc27"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-10-19 08:53:22.131472", "completion_time": "2017-10-19 09:23:09.552312", "package_id": 407, "build_id": 986519, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1508404989.55231, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-2.fc27.3", "start_time": "2017-10-19 08:53:22.131472", "creation_event_id": 28012656, "start_ts": 1508403202.13147, "volume_id": 3, "creation_ts": 1508403202.13147, "name": "gimp", "task_id": 22543297, "volume_name": "fedora_koji_archive02", "release": "2.fc27.3"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-08-03 04:49:13.412675", "completion_time": "2017-08-03 20:21:13.282670", "package_id": 407, "build_id": 945464, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1501791673.28267, "owner_id": 3445, "owner_name": "releng", "nvr": "gimp-2.8.22-2.fc27.2", "start_time": "2017-08-03 04:49:13.412675", "creation_event_id": 25748311, "start_ts": 1501735753.41267, "volume_id": 3, "creation_ts": 1501735753.41267, "name": "gimp", "task_id": 20987202, "volume_name": "fedora_koji_archive02", "release": "2.fc27.2"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-07-26 14:25:24.177631", "completion_time": "2017-07-27 05:53:07.245239", "package_id": 407, "build_id": 925466, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1501134787.24524, "owner_id": 3445, "owner_name": "releng", "nvr": "gimp-2.8.22-2.fc27.1", "start_time": "2017-07-26 14:25:24.177631", "creation_event_id": 25395946, "start_ts": 1501079124.17763, "volume_id": 3, "creation_ts": 1501079124.17763, "name": "gimp", "task_id": 20756188, "volume_name": "fedora_koji_archive02", "release": "2.fc27.1"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-05-10 13:26:50.406394", "completion_time": "2017-05-10 13:58:01.996209", "package_id": 407, "build_id": 888998, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1494424681.99621, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-2.fc26", "start_time": "2017-05-10 13:26:50.406394", "creation_event_id": 23557211, "start_ts": 1494422810.40639, "volume_id": 2, "creation_ts": 1494422810.40639, "name": "gimp", "task_id": 19488064, "volume_name": "fedora_koji_archive01", "release": "2.fc26"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-02-10 17:31:37.328738", "completion_time": "2017-02-11 01:24:18.790176", "package_id": 407, "build_id": 843458, "state": 1, "source": null, "epoch": 2, "version": "2.8.20", "completion_ts": 1486776258.79018, "owner_id": 3445, "owner_name": "releng", "nvr": "gimp-2.8.20-1.fc26.1", "start_time": "2017-02-10 17:31:37.328738", "creation_event_id": 21059196, "start_ts": 1486747897.32874, "volume_id": 2, "creation_ts": 1486747897.32874, "name": "gimp", "task_id": 17716924, "volume_name": "fedora_koji_archive01", "release": "1.fc26.1"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-05-11 05:57:57.453522", "completion_time": "2017-05-11 06:30:25.707885", "package_id": 407, "build_id": 889277, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1494484225.70789, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-2.fc25", "start_time": "2017-05-11 05:57:57.453522", "creation_event_id": 23565168, "start_ts": 1494482277.45352, "volume_id": 2, "creation_ts": 1494482277.45352, "name": "gimp", "task_id": 19493558, "volume_name": "fedora_koji_archive01", "release": "2.fc25"}, {"package_name": "gimp", "extra": null, "creation_time": "2016-06-30 10:00:19.862733", "completion_time": "2016-06-30 10:35:30.571873", "package_id": 407, "build_id": 776816, "state": 1, "source": null, "epoch": 2, "version": "2.8.16", "completion_ts": 1467282930.57187, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.16-2.fc25", "start_time": "2016-06-30 10:00:19.862733", "creation_event_id": 16978987, "start_ts": 1467280819.86273, "volume_id": 2, "creation_ts": 1467280819.86273, "name": "gimp", "task_id": 14712945, "volume_name": "fedora_koji_archive01", "release": "2.fc25"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-05-11 07:28:06.585723", "completion_time": "2017-05-11 07:56:43.907892", "package_id": 407, "build_id": 889303, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1494489403.90789, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-2.fc24", "start_time": "2017-05-11 07:28:06.585723", "creation_event_id": 23566233, "start_ts": 1494487686.58572, "volume_id": 2, "creation_ts": 1494487686.58572, "name": "gimp", "task_id": 19493884, "volume_name": "fedora_koji_archive01", "release": "2.fc24"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-02-02 10:37:41.712578", "completion_time": "2017-02-02 11:24:30.185170", "package_id": 407, "build_id": 837886, "state": 1, "source": null, "epoch": 2, "version": "2.8.20", "completion_ts": 1486034670.18517, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.20-1.fc24", "start_time": "2017-02-02 10:37:41.712578", "creation_event_id": 20796532, "start_ts": 1486031861.71258, "volume_id": 2, "creation_ts": 1486031861.71258, "name": "gimp", "task_id": 17547267, "volume_name": "fedora_koji_archive01", "release": "1.fc24"}, {"package_name": "gimp", "extra": null, "creation_time": "2016-07-15 22:51:17.698848", "completion_time": "2016-07-15 23:39:56.298479", "package_id": 407, "build_id": 780568, "state": 1, "source": null, "epoch": 2, "version": "2.8.18", "completion_ts": 1468625996.29848, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.18-1.fc24", "start_time": "2016-07-15 22:51:17.698848", "creation_event_id": 17215610, "start_ts": 1468623077.69885, "volume_id": 2, "creation_ts": 1468623077.69885, "name": "gimp", "task_id": 14910965, "volume_name": "fedora_koji_archive01", "release": "1.fc24"}, {"package_name": "gimp", "extra": null, "creation_time": "2016-06-30 10:01:54.002382", "completion_time": "2016-06-30 10:38:45.847731", "package_id": 407, "build_id": 776819, "state": 1, "source": null, "epoch": 2, "version": "2.8.16", "completion_ts": 1467283125.84773, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.16-2.fc24", "start_time": "2016-06-30 10:01:54.002382", "creation_event_id": 16979011, "start_ts": 1467280914.00238, "volume_id": 2, "creation_ts": 1467280914.00238, "name": "gimp", "task_id": 14712959, "volume_name": "fedora_koji_archive01", "release": "2.fc24"}, {"package_name": "gimp", "extra": null, "creation_time": "2016-07-15 22:53:24.594590", "completion_time": "2016-07-15 23:30:48.919726", "package_id": 407, "build_id": 780569, "state": 1, "source": null, "epoch": 2, "version": "2.8.18", "completion_ts": 1468625448.91973, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.18-1.fc23", "start_time": "2016-07-15 22:53:24.594590", "creation_event_id": 17215626, "start_ts": 1468623204.59459, "volume_id": 2, "creation_ts": 1468623204.59459, "name": "gimp", "task_id": 14910997, "volume_name": "fedora_koji_archive01", "release": "1.fc23"}, {"package_name": "gimp", "extra": null, "creation_time": "2016-06-30 10:01:09.979628", "completion_time": "2016-06-30 10:44:49.560107", "package_id": 407, "build_id": 776817, "state": 1, "source": null, "epoch": 2, "version": "2.8.16", "completion_ts": 1467283489.56011, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.16-2.fc23", "start_time": "2016-06-30 10:01:09.979628", "creation_event_id": 16978998, "start_ts": 1467280869.97963, "volume_id": 2, "creation_ts": 1467280869.97963, "name": "gimp", "task_id": 14712965, "volume_name": "fedora_koji_archive01", "release": "2.fc23"}, {"package_name": "gimp", "extra": null, "creation_time": "2016-06-30 10:01:27.578852", "completion_time": "2016-06-30 10:44:55.963382", "package_id": 407, "build_id": 776818, "state": 1, "source": null, "epoch": 2, "version": "2.8.16", "completion_ts": 1467283495.96338, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.16-2.fc22", "start_time": "2016-06-30 10:01:27.578852", "creation_event_id": 16979003, "start_ts": 1467280887.57885, "volume_id": 2, "creation_ts": 1467280887.57885, "name": "gimp", "task_id": 14712968, "volume_name": "fedora_koji_archive01", "release": "2.fc22"}, {"package_name": "gimp", "extra": null, "creation_time": "2015-11-22 18:40:37.715219", "completion_time": "2015-11-22 19:13:52.665485", "package_id": 407, "build_id": 700872, "state": 1, "source": null, "epoch": 2, "version": "2.8.16", "completion_ts": 1448219632.66548, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.16-1.fc22", "start_time": null, "creation_event_id": 13487105, "start_ts": null, "volume_id": 2, "creation_ts": 1448217637.71522, "name": "gimp", "task_id": 11948481, "volume_name": "fedora_koji_archive01", "release": "1.fc22"}, {"package_name": "gimp", "extra": null, "creation_time": "2015-07-17 15:30:06.072570", "completion_time": "2015-07-17 16:13:07.232144", "package_id": 407, "build_id": 669664, "state": 1, "source": null, "epoch": 2, "version": "2.8.14", "completion_ts": 1437149587.23214, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.14-3.fc22", "start_time": null, "creation_event_id": 11590164, "start_ts": null, "volume_id": 2, "creation_ts": 1437147006.07257, "name": "gimp", "task_id": 10392267, "volume_name": "fedora_koji_archive01", "release": "3.fc22"}, {"package_name": "gimp", "extra": null, "creation_time": "2015-07-17 15:30:49.329885", "completion_time": "2015-07-17 16:11:57.234348", "package_id": 407, "build_id": 669658, "state": 1, "source": null, "epoch": 2, "version": "2.8.14", "completion_ts": 1437149517.23435, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.14-3.fc21", "start_time": null, "creation_event_id": 11590364, "start_ts": null, "volume_id": 2, "creation_ts": 1437147049.32989, "name": "gimp", "task_id": 10392269, "volume_name": "fedora_koji_archive01", "release": "3.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2014-06-07 20:06:52.537037", "completion_time": "2014-06-07 20:58:22.122697", "package_id": 407, "build_id": 530124, "state": 1, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1402174702.1227, "owner_id": 131, "owner_name": "ausil", "nvr": "gimp-2.8.10-6.fc21.1", "start_time": null, "creation_event_id": 7655894, "start_ts": null, "volume_id": 2, "creation_ts": 1402171612.53704, "name": "gimp", "task_id": 6971862, "volume_name": "fedora_koji_archive01", "release": "6.fc21.1"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#b61cf62cfb3a601fad859be5805eb31136b7f559"}}, "creation_time": "2019-09-04 13:13:00.641645", "completion_time": "2019-09-04 13:52:00.716653", "package_id": 407, "build_id": 1371131, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#b61cf62cfb3a601fad859be5805eb31136b7f559", "epoch": 2, "version": "2.10.12", "completion_ts": 1567605120.71665, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-3.module_f31+6172+a579c4b7", "start_time": "2019-09-04 13:13:00.641645", "creation_event_id": 46398322, "start_ts": 1567602780.64164, "volume_id": 0, "creation_ts": 1567602780.64164, "name": "gimp", "task_id": 37454979, "volume_name": "DEFAULT", "release": "3.module_f31+6172+a579c4b7"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#b61cf62cfb3a601fad859be5805eb31136b7f559"}}, "creation_time": "2019-09-04 12:25:34.741557", "completion_time": "2019-09-04 12:57:46.030566", "package_id": 407, "build_id": 1371110, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#b61cf62cfb3a601fad859be5805eb31136b7f559", "epoch": 2, "version": "2.10.12", "completion_ts": 1567601866.03057, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-3.module_f32+6175+8068a8d3", "start_time": "2019-09-04 12:25:34.741557", "creation_event_id": 46397805, "start_ts": 1567599934.74156, "volume_id": 0, "creation_ts": 1567599934.74156, "name": "gimp", "task_id": 37454536, "volume_name": "DEFAULT", "release": "3.module_f32+6175+8068a8d3"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#b61cf62cfb3a601fad859be5805eb31136b7f559"}}, "creation_time": "2019-09-04 12:24:38.688110", "completion_time": "2019-09-04 12:56:52.465696", "package_id": 407, "build_id": 1371107, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#b61cf62cfb3a601fad859be5805eb31136b7f559", "epoch": 2, "version": "2.10.12", "completion_ts": 1567601812.4657, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-3.module_f30+6174+bc22f659", "start_time": "2019-09-04 12:24:38.688110", "creation_event_id": 46397777, "start_ts": 1567599878.68811, "volume_id": 0, "creation_ts": 1567599878.68811, "name": "gimp", "task_id": 37454499, "volume_name": "DEFAULT", "release": "3.module_f30+6174+bc22f659"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#b61cf62cfb3a601fad859be5805eb31136b7f559"}}, "creation_time": "2019-09-04 12:27:00.502336", "completion_time": "2019-09-04 12:56:02.108298", "package_id": 407, "build_id": 1371112, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#b61cf62cfb3a601fad859be5805eb31136b7f559", "epoch": 2, "version": "2.10.12", "completion_ts": 1567601762.1083, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-3.module_f29+6176+86aefa84", "start_time": "2019-09-04 12:27:00.502336", "creation_event_id": 46397830, "start_ts": 1567600020.50234, "volume_id": 0, "creation_ts": 1567600020.50234, "name": "gimp", "task_id": 37454517, "volume_name": "DEFAULT", "release": "3.module_f29+6176+86aefa84"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#b61cf62cfb3a601fad859be5805eb31136b7f559"}}, "creation_time": "2019-09-04 10:54:39.490401", "completion_time": "2019-09-04 11:32:25.726808", "package_id": 407, "build_id": 1371092, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#b61cf62cfb3a601fad859be5805eb31136b7f559", "epoch": 2, "version": "2.10.12", "completion_ts": 1567596745.72681, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.12-3.fc30", "start_time": "2019-09-04 10:54:39.490401", "creation_event_id": 46396513, "start_ts": 1567594479.4904, "volume_id": 0, "creation_ts": 1567594479.4904, "name": "gimp", "task_id": 37453706, "volume_name": "DEFAULT", "release": "3.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#b61cf62cfb3a601fad859be5805eb31136b7f559"}}, "creation_time": "2019-09-04 09:24:48.035021", "completion_time": "2019-09-04 09:55:54.168780", "package_id": 407, "build_id": 1371043, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#b61cf62cfb3a601fad859be5805eb31136b7f559", "epoch": 2, "version": "2.10.12", "completion_ts": 1567590954.16878, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.12-3.fc31", "start_time": "2019-09-04 09:24:48.035021", "creation_event_id": 46395630, "start_ts": 1567589088.03502, "volume_id": 0, "creation_ts": 1567589088.03502, "name": "gimp", "task_id": 37452988, "volume_name": "DEFAULT", "release": "3.fc31"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#b61cf62cfb3a601fad859be5805eb31136b7f559"}}, "creation_time": "2019-09-04 07:24:37.368988", "completion_time": "2019-09-04 08:15:48.515895", "package_id": 407, "build_id": 1370987, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#b61cf62cfb3a601fad859be5805eb31136b7f559", "epoch": 2, "version": "2.10.12", "completion_ts": 1567584948.51589, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.12-3.fc32", "start_time": "2019-09-04 07:24:37.368988", "creation_event_id": 46393685, "start_ts": 1567581877.36899, "volume_id": 0, "creation_ts": 1567581877.36899, "name": "gimp", "task_id": 37451233, "volume_name": "DEFAULT", "release": "3.fc32"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#7367871288589287130bf0fe4e76d378af07163e"}}, "creation_time": "2019-08-27 08:15:16.768109", "completion_time": "2019-08-27 08:18:08.970871", "package_id": 407, "build_id": 1365796, "state": 3, "source": "git+https://src.fedoraproject.org/rpms/gimp#7367871288589287130bf0fe4e76d378af07163e", "epoch": 2, "version": "2.10.12", "completion_ts": 1566893888.97087, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-2.scrmod+f32+6084+e6b44b2b", "start_time": "2019-08-27 08:15:16.768109", "creation_event_id": 46216545, "start_ts": 1566893716.76811, "volume_id": 0, "creation_ts": 1566893716.76811, "name": "gimp", "task_id": 37307135, "volume_name": "DEFAULT", "release": "2.scrmod+f32+6084+e6b44b2b"}, {"package_name": "gimp", "extra": null, "creation_time": "2014-08-26 19:17:09.973220", "completion_time": "2014-08-26 20:01:47.467294", "package_id": 407, "build_id": 570849, "state": 1, "source": null, "epoch": 2, "version": "2.8.14", "completion_ts": 1409083307.46729, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.14-1.fc20", "start_time": null, "creation_event_id": 8179902, "start_ts": null, "volume_id": 1, "creation_ts": 1409080629.97322, "name": "gimp", "task_id": 7454824, "volume_name": "fedora_koji_archive00", "release": "1.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-02-06 10:50:16.606125", "completion_time": "2013-02-06 11:10:09.102468", "package_id": 407, "build_id": 382463, "state": 1, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1360149009.10247, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-1.fc17", "start_time": null, "creation_event_id": 5625720, "start_ts": null, "volume_id": 1, "creation_ts": 1360147816.60613, "name": "gimp", "task_id": 4932454, "volume_name": "fedora_koji_archive00", "release": "1.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-02-01 10:29:44.248905", "completion_time": "2012-02-01 10:41:21.596695", "package_id": 407, "build_id": 296696, "state": 1, "source": null, "epoch": 2, "version": "2.6.12", "completion_ts": 1328092881.59669, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.12-1.fc15", "start_time": null, "creation_event_id": 4381298, "start_ts": null, "volume_id": 1, "creation_ts": 1328092184.2489, "name": "gimp", "task_id": 3751454, "volume_name": "fedora_koji_archive00", "release": "1.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-08-12 13:37:38.875321", "completion_time": "2011-08-12 13:53:14.273623", "package_id": 407, "build_id": 258282, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1313157194.27362, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-21.fc15", "start_time": null, "creation_event_id": 3908029, "start_ts": null, "volume_id": 1, "creation_ts": 1313156258.87532, "name": "gimp", "task_id": 3268404, "volume_name": "fedora_koji_archive00", "release": "21.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-08-12 13:37:38.875424", "completion_time": "2011-08-12 13:53:14.301779", "package_id": 407, "build_id": 258281, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1313157194.30178, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-21.fc14", "start_time": null, "creation_event_id": 3908028, "start_ts": null, "volume_id": 1, "creation_ts": 1313156258.87542, "name": "gimp", "task_id": 3268407, "volume_name": "fedora_koji_archive00", "release": "21.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-06-10 20:10:25.200644", "completion_time": "2011-06-10 20:22:20.205728", "package_id": 407, "build_id": 247287, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1307737340.20573, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-16.fc14", "start_time": null, "creation_event_id": 3767297, "start_ts": null, "volume_id": 1, "creation_ts": 1307736625.20064, "name": "gimp", "task_id": 3124617, "volume_name": "fedora_koji_archive00", "release": "16.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-06-10 20:10:16.397080", "completion_time": "2011-06-10 20:23:47.475431", "package_id": 407, "build_id": 247286, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1307737427.47543, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-16.fc15", "start_time": null, "creation_event_id": 3767295, "start_ts": null, "volume_id": 1, "creation_ts": 1307736616.39708, "name": "gimp", "task_id": 3124615, "volume_name": "fedora_koji_archive00", "release": "16.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-06-07 11:22:22.249297", "completion_time": "2011-06-07 11:35:07.685807", "package_id": 407, "build_id": 246626, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1307446507.68581, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-15.fc15", "start_time": null, "creation_event_id": 3758616, "start_ts": null, "volume_id": 1, "creation_ts": 1307445742.2493, "name": "gimp", "task_id": 3115641, "volume_name": "fedora_koji_archive00", "release": "15.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-05-23 15:00:31.105317", "completion_time": "2011-05-23 15:11:53.125591", "package_id": 407, "build_id": 244883, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1306163513.12559, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-14.fc15", "start_time": null, "creation_event_id": 3732169, "start_ts": null, "volume_id": 1, "creation_ts": 1306162831.10532, "name": "gimp", "task_id": 3087580, "volume_name": "fedora_koji_archive00", "release": "14.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-05-23 15:00:14.139750", "completion_time": "2011-05-23 15:11:17.509342", "package_id": 407, "build_id": 244882, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1306163477.50934, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-14.fc14", "start_time": null, "creation_event_id": 3732161, "start_ts": null, "volume_id": 1, "creation_ts": 1306162814.13975, "name": "gimp", "task_id": 3087584, "volume_name": "fedora_koji_archive00", "release": "14.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-05-08 01:49:16.355595", "completion_time": "2011-05-08 02:00:35.215293", "package_id": 407, "build_id": 242913, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1304820035.21529, "owner_id": 17, "owner_name": "caillon", "nvr": "gimp-2.6.11-9.fc15", "start_time": null, "creation_event_id": 3703156, "start_ts": null, "volume_id": 1, "creation_ts": 1304819356.3556, "name": "gimp", "task_id": 3057388, "volume_name": "fedora_koji_archive00", "release": "9.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-03-14 16:13:36.464457", "completion_time": "2011-03-14 16:26:15.632207", "package_id": 407, "build_id": 233714, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1300119975.63221, "owner_id": 603, "owner_name": "mkasik", "nvr": "gimp-2.6.11-8.fc15", "start_time": null, "creation_event_id": 3559374, "start_ts": null, "volume_id": 1, "creation_ts": 1300119216.46446, "name": "gimp", "task_id": 2911353, "volume_name": "fedora_koji_archive00", "release": "8.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-02-09 02:38:31.511706", "completion_time": "2011-02-09 02:55:05.357254", "package_id": 407, "build_id": 223079, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1297220105.35725, "owner_id": 131, "owner_name": "ausil", "nvr": "gimp-2.6.11-7.fc15", "start_time": null, "creation_event_id": 3416163, "start_ts": null, "volume_id": 1, "creation_ts": 1297219111.51171, "name": "gimp", "task_id": 2800046, "volume_name": "fedora_koji_archive00", "release": "7.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-02-02 17:34:19.154336", "completion_time": "2011-02-02 17:45:24.735829", "package_id": 407, "build_id": 216701, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1296668724.73583, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-6.fc14", "start_time": null, "creation_event_id": 3363899, "start_ts": null, "volume_id": 1, "creation_ts": 1296668059.15434, "name": "gimp", "task_id": 2757760, "volume_name": "fedora_koji_archive00", "release": "6.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-02-02 17:31:03.336439", "completion_time": "2011-02-02 17:42:16.017723", "package_id": 407, "build_id": 216699, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1296668536.01772, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-6.fc15", "start_time": null, "creation_event_id": 3363880, "start_ts": null, "volume_id": 1, "creation_ts": 1296667863.33644, "name": "gimp", "task_id": 2757750, "volume_name": "fedora_koji_archive00", "release": "6.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-01-01 22:58:13.131554", "completion_time": "2011-01-01 23:07:12.828074", "package_id": 407, "build_id": 212177, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1293923232.82807, "owner_id": 160, "owner_name": "rdieter", "nvr": "gimp-2.6.11-5.fc15", "start_time": null, "creation_event_id": 3300095, "start_ts": null, "volume_id": 1, "creation_ts": 1293922693.13155, "name": "gimp", "task_id": 2695876, "volume_name": "fedora_koji_archive00", "release": "5.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-11-09 17:00:42.781459", "completion_time": "2010-11-09 17:12:12.130453", "package_id": 407, "build_id": 204345, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1289322732.13045, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-3.fc15", "start_time": null, "creation_event_id": 3199359, "start_ts": null, "volume_id": 1, "creation_ts": 1289322042.78146, "name": "gimp", "task_id": 2590523, "volume_name": "fedora_koji_archive00", "release": "3.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-10-04 11:23:13.714168", "completion_time": "2010-10-04 11:34:01.239508", "package_id": 407, "build_id": 198728, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1286192041.23951, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-1.fc14", "start_time": null, "creation_event_id": 3123393, "start_ts": null, "volume_id": 1, "creation_ts": 1286191393.71417, "name": "gimp", "task_id": 2510395, "volume_name": "fedora_koji_archive00", "release": "1.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-08-24 09:41:13.277690", "completion_time": "2010-08-24 09:51:59.205455", "package_id": 407, "build_id": 191741, "state": 1, "source": null, "epoch": 2, "version": "2.6.10", "completion_ts": 1282643519.20546, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.10-5.fc14", "start_time": null, "creation_event_id": 3031269, "start_ts": null, "volume_id": 1, "creation_ts": 1282642873.27769, "name": "gimp", "task_id": 2421195, "volume_name": "fedora_koji_archive00", "release": "5.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-08-19 16:20:06.781738", "completion_time": "2010-08-19 16:30:32.267306", "package_id": 407, "build_id": 191028, "state": 1, "source": null, "epoch": 2, "version": "2.6.10", "completion_ts": 1282235432.26731, "owner_id": 160, "owner_name": "rdieter", "nvr": "gimp-2.6.10-4.fc14", "start_time": null, "creation_event_id": 3021847, "start_ts": null, "volume_id": 1, "creation_ts": 1282234806.78174, "name": "gimp", "task_id": 2411994, "volume_name": "fedora_koji_archive00", "release": "4.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-07-12 16:04:24.987714", "completion_time": "2010-07-12 16:17:01.809415", "package_id": 407, "build_id": 183208, "state": 1, "source": null, "epoch": 2, "version": "2.6.10", "completion_ts": 1278951421.80942, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.10-2.fc14", "start_time": null, "creation_event_id": 2916323, "start_ts": null, "volume_id": 1, "creation_ts": 1278950664.98771, "name": "gimp", "task_id": 2313584, "volume_name": "fedora_koji_archive00", "release": "2.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-28 16:16:36.915585", "completion_time": "2010-06-28 16:31:43.886085", "package_id": 407, "build_id": 180176, "state": 1, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1277742703.88609, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-3.fc14", "start_time": null, "creation_event_id": 2875411, "start_ts": null, "volume_id": 1, "creation_ts": 1277741796.91559, "name": "gimp", "task_id": 2277958, "volume_name": "fedora_koji_archive00", "release": "3.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-07-09 12:22:47.021189", "completion_time": "2010-07-09 12:30:21.092486", "package_id": 407, "build_id": 182756, "state": 1, "source": null, "epoch": 2, "version": "2.6.10", "completion_ts": 1278678621.09249, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.10-1.fc14", "start_time": null, "creation_event_id": 2910605, "start_ts": null, "volume_id": 1, "creation_ts": 1278678167.02119, "name": "gimp", "task_id": 2308820, "volume_name": "fedora_koji_archive00", "release": "1.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-07-05 10:35:35.720234", "completion_time": "2010-07-05 10:43:05.956984", "package_id": 407, "build_id": 181656, "state": 1, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1278326585.95698, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-5.fc14", "start_time": null, "creation_event_id": 2895607, "start_ts": null, "volume_id": 1, "creation_ts": 1278326135.72023, "name": "gimp", "task_id": 2295867, "volume_name": "fedora_koji_archive00", "release": "5.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-04-19 16:13:17.287823", "completion_time": "2010-04-19 16:24:20.868468", "package_id": 407, "build_id": 167859, "state": 1, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1271694260.86847, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-7.fc14", "start_time": null, "creation_event_id": 2703140, "start_ts": null, "volume_id": 1, "creation_ts": 1271693597.28782, "name": "gimp", "task_id": 2126283, "volume_name": "fedora_koji_archive00", "release": "7.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-06-10 20:11:44.991043", "completion_time": "2011-06-10 20:22:20.087672", "package_id": 407, "build_id": 247288, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1307737340.08767, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-16.fc13", "start_time": null, "creation_event_id": 3767304, "start_ts": null, "volume_id": 1, "creation_ts": 1307736704.99104, "name": "gimp", "task_id": 3124619, "volume_name": "fedora_koji_archive00", "release": "16.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-05-23 15:00:48.800491", "completion_time": "2011-05-23 15:11:34.946577", "package_id": 407, "build_id": 244884, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1306163494.94658, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-14.fc13", "start_time": null, "creation_event_id": 3732173, "start_ts": null, "volume_id": 1, "creation_ts": 1306162848.80049, "name": "gimp", "task_id": 3087586, "volume_name": "fedora_koji_archive00", "release": "14.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-02-02 17:35:02.391753", "completion_time": "2011-02-02 17:45:24.377667", "package_id": 407, "build_id": 216702, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1296668724.37767, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-6.fc13", "start_time": null, "creation_event_id": 3363907, "start_ts": null, "volume_id": 1, "creation_ts": 1296668102.39175, "name": "gimp", "task_id": 2757762, "volume_name": "fedora_koji_archive00", "release": "6.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-29 15:37:55.117657", "completion_time": "2010-06-29 15:48:35.740571", "package_id": 407, "build_id": 180378, "state": 1, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1277826515.74057, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-4.fc13", "start_time": null, "creation_event_id": 2878612, "start_ts": null, "volume_id": 1, "creation_ts": 1277825875.11766, "name": "gimp", "task_id": 2280900, "volume_name": "fedora_koji_archive00", "release": "4.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-03-25 09:58:58.385229", "completion_time": "2010-03-25 10:10:43.066366", "package_id": 407, "build_id": 163635, "state": 1, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1269511843.06637, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-6.fc13", "start_time": null, "creation_event_id": 2643179, "start_ts": null, "volume_id": 1, "creation_ts": 1269511138.38523, "name": "gimp", "task_id": 2074638, "volume_name": "fedora_koji_archive00", "release": "6.fc13"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#7367871288589287130bf0fe4e76d378af07163e"}}, "creation_time": "2019-08-14 00:21:18.087175", "completion_time": "2019-08-14 01:16:56.574996", "package_id": 407, "build_id": 1354700, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#7367871288589287130bf0fe4e76d378af07163e", "epoch": 2, "version": "2.10.12", "completion_ts": 1565745416.575, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-2.fc32", "start_time": "2019-08-14 00:21:18.087175", "creation_event_id": 45688253, "start_ts": 1565742078.08717, "volume_id": 0, "creation_ts": 1565742078.08717, "name": "gimp", "task_id": 37023027, "volume_name": "DEFAULT", "release": "2.fc32"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#7367871288589287130bf0fe4e76d378af07163e"}}, "creation_time": "2019-08-06 12:32:45.950132", "completion_time": "2019-08-06 13:18:02.318302", "package_id": 407, "build_id": 1348127, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#7367871288589287130bf0fe4e76d378af07163e", "epoch": 2, "version": "2.10.12", "completion_ts": 1565097482.3183, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-2.module_f29+5291+ef5ad3e4", "start_time": "2019-08-06 12:32:45.950132", "creation_event_id": 45361405, "start_ts": 1565094765.95013, "volume_id": 0, "creation_ts": 1565094765.95013, "name": "gimp", "task_id": 36831709, "volume_name": "DEFAULT", "release": "2.module_f29+5291+ef5ad3e4"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#7367871288589287130bf0fe4e76d378af07163e"}}, "creation_time": "2019-08-06 12:33:06.419121", "completion_time": "2019-08-06 13:11:03.762063", "package_id": 407, "build_id": 1348129, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#7367871288589287130bf0fe4e76d378af07163e", "epoch": 2, "version": "2.10.12", "completion_ts": 1565097063.76206, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-2.module_f30+5292+0833adf4", "start_time": "2019-08-06 12:33:06.419121", "creation_event_id": 45361421, "start_ts": 1565094786.41912, "volume_id": 0, "creation_ts": 1565094786.41912, "name": "gimp", "task_id": 36831707, "volume_name": "DEFAULT", "release": "2.module_f30+5292+0833adf4"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#7367871288589287130bf0fe4e76d378af07163e"}}, "creation_time": "2019-08-06 12:32:48.227916", "completion_time": "2019-08-06 13:05:43.378598", "package_id": 407, "build_id": 1348128, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#7367871288589287130bf0fe4e76d378af07163e", "epoch": 2, "version": "2.10.12", "completion_ts": 1565096743.3786, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-2.module_f31+5293+eb7fed42", "start_time": "2019-08-06 12:32:48.227916", "creation_event_id": 45361406, "start_ts": 1565094768.22792, "volume_id": 0, "creation_ts": 1565094768.22792, "name": "gimp", "task_id": 36831722, "volume_name": "DEFAULT", "release": "2.module_f31+5293+eb7fed42"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-10-04 11:25:09.002552", "completion_time": "2010-10-04 11:45:14.624035", "package_id": 407, "build_id": 198731, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1286192714.62403, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-1.fc12", "start_time": null, "creation_event_id": 3123409, "start_ts": null, "volume_id": 1, "creation_ts": 1286191509.00255, "name": "gimp", "task_id": 2510407, "volume_name": "fedora_koji_archive00", "release": "1.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-07-09 12:26:20.567732", "completion_time": "2010-07-09 12:43:09.247547", "package_id": 407, "build_id": 182759, "state": 1, "source": null, "epoch": 2, "version": "2.6.10", "completion_ts": 1278679389.24755, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.10-1.fc12", "start_time": null, "creation_event_id": 2910625, "start_ts": null, "volume_id": 1, "creation_ts": 1278678380.56773, "name": "gimp", "task_id": 2308830, "volume_name": "fedora_koji_archive00", "release": "1.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-29 15:38:28.688497", "completion_time": "2010-06-29 15:57:41.502152", "package_id": 407, "build_id": 180379, "state": 1, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1277827061.50215, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-4.fc12", "start_time": null, "creation_event_id": 2878618, "start_ts": null, "volume_id": 1, "creation_ts": 1277825908.6885, "name": "gimp", "task_id": 2280902, "volume_name": "fedora_koji_archive00", "release": "4.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-08-14 10:01:52.121478", "completion_time": "2009-08-14 10:19:30.922520", "package_id": 407, "build_id": 127271, "state": 1, "source": null, "epoch": 2, "version": "2.6.7", "completion_ts": 1250245170.92252, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.7-1.fc12", "start_time": null, "creation_event_id": 1939486, "start_ts": null, "volume_id": 1, "creation_ts": 1250244112.12148, "name": "gimp", "task_id": 1604873, "volume_name": "fedora_koji_archive00", "release": "1.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-08-18 12:34:28.513782", "completion_time": "2009-08-18 13:20:15.586384", "package_id": 407, "build_id": 127705, "state": 1, "source": null, "epoch": 2, "version": "2.6.7", "completion_ts": 1250601615.58638, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.7-2.fc12", "start_time": null, "creation_event_id": 1947521, "start_ts": null, "volume_id": 1, "creation_ts": 1250598868.51378, "name": "gimp", "task_id": 1611873, "volume_name": "fedora_koji_archive00", "release": "2.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-12-11 09:43:16.000418", "completion_time": "2009-12-11 10:02:25.455075", "package_id": 407, "build_id": 146813, "state": 1, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1260525745.45508, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-1.fc11", "start_time": null, "creation_event_id": 2395925, "start_ts": null, "volume_id": 1, "creation_ts": 1260524596.00042, "name": "gimp", "task_id": 1869228, "volume_name": "fedora_koji_archive00", "release": "1.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-08-18 12:46:28.099060", "completion_time": "2009-08-18 13:29:39.271021", "package_id": 407, "build_id": 127708, "state": 1, "source": null, "epoch": 2, "version": "2.6.7", "completion_ts": 1250602179.27102, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.7-2.fc11", "start_time": null, "creation_event_id": 1947553, "start_ts": null, "volume_id": 1, "creation_ts": 1250599588.09906, "name": "gimp", "task_id": 1611902, "volume_name": "fedora_koji_archive00", "release": "2.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-06-29 11:42:42.563975", "completion_time": "2009-06-29 12:03:51.615374", "package_id": 407, "build_id": 112082, "state": 1, "source": null, "epoch": 2, "version": "2.6.6", "completion_ts": 1246277031.61537, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.6-6.fc11", "start_time": null, "creation_event_id": 1710360, "start_ts": null, "volume_id": 1, "creation_ts": 1246275762.56398, "name": "gimp", "task_id": 1440990, "volume_name": "fedora_koji_archive00", "release": "6.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-03-30 13:00:40.752758", "completion_time": "2009-03-30 13:22:48.268655", "package_id": 407, "build_id": 95863, "state": 1, "source": null, "epoch": 2, "version": "2.6.6", "completion_ts": 1238419368.26866, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.6-2.fc11", "start_time": null, "creation_event_id": 1479761, "start_ts": null, "volume_id": 1, "creation_ts": 1238418040.75276, "name": "gimp", "task_id": 1265571, "volume_name": "fedora_koji_archive00", "release": "2.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-04-14 15:44:25.605500", "completion_time": "2009-04-14 16:12:08.276754", "package_id": 407, "build_id": 97881, "state": 1, "source": null, "epoch": 2, "version": "2.6.6", "completion_ts": 1239725528.27675, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.6-3.fc11", "start_time": null, "creation_event_id": 1516442, "start_ts": null, "volume_id": 1, "creation_ts": 1239723865.6055, "name": "gimp", "task_id": 1297750, "volume_name": "fedora_koji_archive00", "release": "3.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-03-18 10:22:09.977723", "completion_time": "2009-03-18 10:43:16.720509", "package_id": 407, "build_id": 94651, "state": 1, "source": null, "epoch": 2, "version": "2.6.6", "completion_ts": 1237372996.72051, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.6-1.fc9", "start_time": null, "creation_event_id": 1457577, "start_ts": null, "volume_id": 1, "creation_ts": 1237371729.97772, "name": "gimp", "task_id": 1248000, "volume_name": "fedora_koji_archive00", "release": "1.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-03-18 10:20:52.452461", "completion_time": "2009-03-18 10:44:45.928265", "package_id": 407, "build_id": 94649, "state": 1, "source": null, "epoch": 2, "version": "2.6.6", "completion_ts": 1237373085.92827, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.6-1.fc11", "start_time": null, "creation_event_id": 1457564, "start_ts": null, "volume_id": 1, "creation_ts": 1237371652.45246, "name": "gimp", "task_id": 1247992, "volume_name": "fedora_koji_archive00", "release": "1.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-03-18 10:21:44.692900", "completion_time": "2009-03-18 10:45:02.189832", "package_id": 407, "build_id": 94650, "state": 1, "source": null, "epoch": 2, "version": "2.6.6", "completion_ts": 1237373102.18983, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.6-1.fc10", "start_time": null, "creation_event_id": 1457570, "start_ts": null, "volume_id": 1, "creation_ts": 1237371704.6929, "name": "gimp", "task_id": 1247998, "volume_name": "fedora_koji_archive00", "release": "1.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-03-10 17:33:07.515071", "completion_time": "2009-03-10 17:56:04.700799", "package_id": 407, "build_id": 93704, "state": 1, "source": null, "epoch": 2, "version": "2.6.5", "completion_ts": 1236707764.7008, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.5-4.fc11", "start_time": null, "creation_event_id": 1441019, "start_ts": null, "volume_id": 1, "creation_ts": 1236706387.51507, "name": "gimp", "task_id": 1235135, "volume_name": "fedora_koji_archive00", "release": "4.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-02-15 21:30:41.111908", "completion_time": "2009-02-15 21:55:28.302599", "package_id": 407, "build_id": 82808, "state": 1, "source": null, "epoch": 2, "version": "2.6.5", "completion_ts": 1234734928.3026, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.5-1.fc11", "start_time": null, "creation_event_id": 1278071, "start_ts": null, "volume_id": 1, "creation_ts": 1234733441.11191, "name": "gimp", "task_id": 1128700, "volume_name": "fedora_koji_archive00", "release": "1.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-02-24 21:40:53.931485", "completion_time": "2009-02-24 22:20:29.726665", "package_id": 407, "build_id": 85766, "state": 1, "source": null, "epoch": 2, "version": "2.6.5", "completion_ts": 1235514029.72667, "owner_id": 2, "owner_name": "jkeating", "nvr": "gimp-2.6.5-2.fc11", "start_time": null, "creation_event_id": 1322056, "start_ts": null, "volume_id": 1, "creation_ts": 1235511653.93148, "name": "gimp", "task_id": 1162468, "volume_name": "fedora_koji_archive00", "release": "2.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-01-07 10:02:26.391937", "completion_time": "2009-01-07 10:25:53.406652", "package_id": 407, "build_id": 77518, "state": 1, "source": null, "epoch": 2, "version": "2.6.4", "completion_ts": 1231323953.40665, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.4-3.fc10", "start_time": null, "creation_event_id": 1167319, "start_ts": null, "volume_id": 1, "creation_ts": 1231322546.39194, "name": "gimp", "task_id": 1037621, "volume_name": "fedora_koji_archive00", "release": "3.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-01-07 10:01:53.662664", "completion_time": "2009-01-07 10:25:44.964645", "package_id": 407, "build_id": 77517, "state": 1, "source": null, "epoch": 2, "version": "2.6.4", "completion_ts": 1231323944.96464, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.4-3.fc11", "start_time": null, "creation_event_id": 1167314, "start_ts": null, "volume_id": 1, "creation_ts": 1231322513.66266, "name": "gimp", "task_id": 1037619, "volume_name": "fedora_koji_archive00", "release": "3.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-01-07 10:04:13.910695", "completion_time": "2009-01-07 10:25:03.778107", "package_id": 407, "build_id": 77519, "state": 1, "source": null, "epoch": 2, "version": "2.6.4", "completion_ts": 1231323903.77811, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.4-3.fc9", "start_time": null, "creation_event_id": 1167324, "start_ts": null, "volume_id": 1, "creation_ts": 1231322653.9107, "name": "gimp", "task_id": 1037631, "volume_name": "fedora_koji_archive00", "release": "3.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-12-04 14:44:18.389398", "completion_time": "2008-12-04 15:14:54.835159", "package_id": 407, "build_id": 72545, "state": 1, "source": null, "epoch": 2, "version": "2.6.3", "completion_ts": 1228403694.83516, "owner_id": 400, "owner_name": "ivazquez", "nvr": "gimp-2.6.3-3.fc11", "start_time": null, "creation_event_id": 1104839, "start_ts": null, "volume_id": 1, "creation_ts": 1228401858.3894, "name": "gimp", "task_id": 976071, "volume_name": "fedora_koji_archive00", "release": "3.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-12-01 12:27:48.744823", "completion_time": "2008-12-01 13:22:07.464846", "package_id": 407, "build_id": 72458, "state": 1, "source": null, "epoch": 2, "version": "2.6.3", "completion_ts": 1228137727.46485, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.3-2.fc10", "start_time": null, "creation_event_id": 1095123, "start_ts": null, "volume_id": 1, "creation_ts": 1228134468.74482, "name": "gimp", "task_id": 965916, "volume_name": "fedora_koji_archive00", "release": "2.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-11-14 13:49:50.651509", "completion_time": "2008-11-14 14:24:32.190149", "package_id": 407, "build_id": 69737, "state": 1, "source": null, "epoch": 2, "version": "2.6.2", "completion_ts": 1226672672.19015, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.2-3.fc11", "start_time": null, "creation_event_id": 1057390, "start_ts": null, "volume_id": 1, "creation_ts": 1226670590.65151, "name": "gimp", "task_id": 933440, "volume_name": "fedora_koji_archive00", "release": "3.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-10-10 09:04:58.123213", "completion_time": "2008-10-10 09:24:02.993635", "package_id": 407, "build_id": 65924, "state": 1, "source": null, "epoch": 2, "version": "2.6.1", "completion_ts": 1223630642.99363, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.1-1.fc10", "start_time": null, "creation_event_id": 983850, "start_ts": null, "volume_id": 1, "creation_ts": 1223629498.12321, "name": "gimp", "task_id": 872865, "volume_name": "fedora_koji_archive00", "release": "1.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-08-22 17:20:05.744129", "completion_time": "2008-08-22 17:57:00.347134", "package_id": 407, "build_id": 59713, "state": 1, "source": null, "epoch": 2, "version": "2.4.7", "completion_ts": 1219427820.34713, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.7-1.fc8", "start_time": null, "creation_event_id": 886168, "start_ts": null, "volume_id": 1, "creation_ts": 1219425605.74413, "name": "gimp", "task_id": 778518, "volume_name": "fedora_koji_archive00", "release": "1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-08-22 15:51:44.199411", "completion_time": "2008-08-22 16:25:23.683862", "package_id": 407, "build_id": 59677, "state": 1, "source": null, "epoch": 2, "version": "2.4.7", "completion_ts": 1219422323.68386, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.7-1.fc10", "start_time": null, "creation_event_id": 885800, "start_ts": null, "volume_id": 1, "creation_ts": 1219420304.19941, "name": "gimp", "task_id": 778174, "volume_name": "fedora_koji_archive00", "release": "1.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-05-30 13:59:11.119985", "completion_time": "2008-05-30 14:47:53.232969", "package_id": 407, "build_id": 51014, "state": 1, "source": null, "epoch": 2, "version": "2.4.6", "completion_ts": 1212158873.23297, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.6-1.fc10", "start_time": null, "creation_event_id": 745655, "start_ts": null, "volume_id": 1, "creation_ts": 1212155951.11999, "name": "gimp", "task_id": 636344, "volume_name": "fedora_koji_archive00", "release": "1.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-01-30 04:46:02.535189", "completion_time": "2008-01-30 05:14:03.954312", "package_id": 407, "build_id": 33520, "state": 1, "source": null, "epoch": 2, "version": "2.4.4", "completion_ts": 1201670043.95431, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.4-1.fc8", "start_time": null, "creation_event_id": 482181, "start_ts": null, "volume_id": 1, "creation_ts": 1201668362.53519, "name": "gimp", "task_id": 383783, "volume_name": "fedora_koji_archive00", "release": "1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-01-30 04:45:17.761343", "completion_time": "2008-01-30 05:24:31.867813", "package_id": 407, "build_id": 33519, "state": 1, "source": null, "epoch": 2, "version": "2.4.4", "completion_ts": 1201670671.86781, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.4-1.fc9", "start_time": null, "creation_event_id": 482178, "start_ts": null, "volume_id": 1, "creation_ts": 1201668317.76134, "name": "gimp", "task_id": 383781, "volume_name": "fedora_koji_archive00", "release": "1.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-11-28 02:12:49.495236", "completion_time": "2007-11-28 04:02:16.773229", "package_id": 407, "build_id": 25899, "state": 1, "source": null, "epoch": 2, "version": "2.4.2", "completion_ts": 1196222536.77323, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.2-2.fc9", "start_time": null, "creation_event_id": 334934, "start_ts": null, "volume_id": 1, "creation_ts": 1196215969.49524, "name": "gimp", "task_id": 262961, "volume_name": "fedora_koji_archive00", "release": "2.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-12-17 03:32:32.218999", "completion_time": "2007-12-17 04:27:12.845241", "package_id": 407, "build_id": 28293, "state": 1, "source": null, "epoch": 2, "version": "2.4.3", "completion_ts": 1197865632.84524, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.3-1.fc9", "start_time": null, "creation_event_id": 386238, "start_ts": null, "volume_id": 1, "creation_ts": 1197862352.219, "name": "gimp", "task_id": 296543, "volume_name": "fedora_koji_archive00", "release": "1.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-06-13 01:47:47.699764", "completion_time": "2007-06-13 02:09:27.771760", "package_id": 407, "build_id": 8719, "state": 1, "source": null, "epoch": 2, "version": "2.2.15", "completion_ts": 1181700567.77176, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.2.15-2.fc8", "start_time": null, "creation_event_id": 51008, "start_ts": null, "volume_id": 1, "creation_ts": 1181699267.69976, "name": "gimp", "task_id": 35295, "volume_name": "fedora_koji_archive00", "release": "2.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-03-03 09:46:22.602247", "completion_time": "2008-03-03 10:14:17.434072", "package_id": 407, "build_id": 40903, "state": 1, "source": null, "epoch": 2, "version": "2.4.5", "completion_ts": 1204539257.43407, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.5-1.fc9", "start_time": null, "creation_event_id": 579415, "start_ts": null, "volume_id": 1, "creation_ts": 1204537582.60225, "name": "gimp", "task_id": 486393, "volume_name": "fedora_koji_archive00", "release": "1.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-12 05:46:09.899188", "completion_time": "2007-10-12 11:05:11.604737", "package_id": 407, "build_id": 20811, "state": 1, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1192187111.60474, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-0.rc3.2.fc8", "start_time": null, "creation_event_id": 240415, "start_ts": null, "volume_id": 1, "creation_ts": 1192167969.89919, "name": "gimp", "task_id": 192636, "volume_name": "fedora_koji_archive00", "release": "0.rc3.2.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-09-17 13:43:38.537618", "completion_time": "2008-09-17 14:12:17.118636", "package_id": 407, "build_id": 63391, "state": 1, "source": null, "epoch": 2, "version": "2.4.7", "completion_ts": 1221660737.11864, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.7-3.fc8", "start_time": null, "creation_event_id": 948370, "start_ts": null, "volume_id": 1, "creation_ts": 1221659018.53762, "name": "gimp", "task_id": 830140, "volume_name": "fedora_koji_archive00", "release": "3.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-05-01 11:45:50.063378", "completion_time": "2007-05-01 11:45:50.063378", "package_id": 407, "build_id": 3088, "state": 1, "source": null, "epoch": 2, "version": "2.2.14", "completion_ts": 1178019950.06338, "owner_id": 2, "owner_name": "jkeating", "nvr": "gimp-2.2.14-5.fc7", "start_time": null, "creation_event_id": 10479, "start_ts": null, "volume_id": 1, "creation_ts": 1178019950.06338, "name": "gimp", "task_id": null, "volume_name": "fedora_koji_archive00", "release": "5.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-03-03 09:53:15.130186", "completion_time": "2008-03-03 10:44:08.722502", "package_id": 407, "build_id": 40905, "state": 1, "source": null, "epoch": 2, "version": "2.4.5", "completion_ts": 1204541048.7225, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.5-1.fc7", "start_time": null, "creation_event_id": 579435, "start_ts": null, "volume_id": 1, "creation_ts": 1204537995.13019, "name": "gimp", "task_id": 486412, "volume_name": "fedora_koji_archive00", "release": "1.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-04-10 16:14:28.811985", "completion_time": "2007-04-10 16:14:28.811985", "package_id": 407, "build_id": 1935, "state": 1, "source": null, "epoch": 2, "version": "2.2.13", "completion_ts": 1176221668.81199, "owner_id": 2, "owner_name": "jkeating", "nvr": "gimp-2.2.13-2.fc7", "start_time": null, "creation_event_id": 5358, "start_ts": null, "volume_id": 1, "creation_ts": 1176221668.81199, "name": "gimp", "task_id": null, "volume_name": "fedora_koji_archive00", "release": "2.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-05-01 12:29:28.442493", "completion_time": "2007-05-01 12:29:28.442493", "package_id": 407, "build_id": 3096, "state": 1, "source": null, "epoch": 2, "version": "2.2.14", "completion_ts": 1178022568.44249, "owner_id": 2, "owner_name": "jkeating", "nvr": "gimp-2.2.14-5.fc6", "start_time": null, "creation_event_id": 10498, "start_ts": null, "volume_id": 1, "creation_ts": 1178022568.44249, "name": "gimp", "task_id": null, "volume_name": "fedora_koji_archive00", "release": "5.fc6"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#7367871288589287130bf0fe4e76d378af07163e"}}, "creation_time": "2019-07-31 09:21:29.926009", "completion_time": "2019-07-31 09:54:16.053888", "package_id": 407, "build_id": 1344453, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#7367871288589287130bf0fe4e76d378af07163e", "epoch": 2, "version": "2.10.12", "completion_ts": 1564566856.05389, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.12-2.fc30", "start_time": "2019-07-31 09:21:29.926009", "creation_event_id": 45120728, "start_ts": 1564564889.92601, "volume_id": 0, "creation_ts": 1564564889.92601, "name": "gimp", "task_id": 36701996, "volume_name": "DEFAULT", "release": "2.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#7367871288589287130bf0fe4e76d378af07163e"}}, "creation_time": "2019-07-31 07:55:34.792287", "completion_time": "2019-07-31 08:24:21.430547", "package_id": 407, "build_id": 1344396, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#7367871288589287130bf0fe4e76d378af07163e", "epoch": 2, "version": "2.10.12", "completion_ts": 1564561461.43055, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.12-2.fc31", "start_time": "2019-07-31 07:55:34.792287", "creation_event_id": 45119008, "start_ts": 1564559734.79229, "volume_id": 0, "creation_ts": 1564559734.79229, "name": "gimp", "task_id": 36700762, "volume_name": "DEFAULT", "release": "2.fc31"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#7348650abba1129a32f6550ca4dd2feda9876e6b"}}, "creation_time": "2019-06-14 22:06:21.404442", "completion_time": "2019-06-14 22:49:51.622776", "package_id": 407, "build_id": 1288007, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#7348650abba1129a32f6550ca4dd2feda9876e6b", "epoch": 2, "version": "2.10.12", "completion_ts": 1560552591.62278, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-1.module_f30+4715+3a2b846c", "start_time": "2019-06-14 22:06:21.404442", "creation_event_id": 43672091, "start_ts": 1560549981.40444, "volume_id": 0, "creation_ts": 1560549981.40444, "name": "gimp", "task_id": 35546561, "volume_name": "DEFAULT", "release": "1.module_f30+4715+3a2b846c"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#7348650abba1129a32f6550ca4dd2feda9876e6b"}}, "creation_time": "2019-06-14 18:17:52.473096", "completion_time": "2019-06-14 18:58:34.169089", "package_id": 407, "build_id": 1287926, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#7348650abba1129a32f6550ca4dd2feda9876e6b", "epoch": 2, "version": "2.10.12", "completion_ts": 1560538714.16909, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.12-1.fc29", "start_time": "2019-06-14 18:17:52.473096", "creation_event_id": 43669875, "start_ts": 1560536272.4731, "volume_id": 5, "creation_ts": 1560536272.4731, "name": "gimp", "task_id": 35544616, "volume_name": "fedora_koji_archive04", "release": "1.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#7348650abba1129a32f6550ca4dd2feda9876e6b"}}, "creation_time": "2019-06-14 02:58:17.211904", "completion_time": "2019-06-14 03:27:11.428014", "package_id": 407, "build_id": 1287428, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#7348650abba1129a32f6550ca4dd2feda9876e6b", "epoch": 2, "version": "2.10.12", "completion_ts": 1560482831.42801, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-1.module_f29+4709+776ff059", "start_time": "2019-06-14 02:58:17.211904", "creation_event_id": 43657934, "start_ts": 1560481097.2119, "volume_id": 0, "creation_ts": 1560481097.2119, "name": "gimp", "task_id": 35533291, "volume_name": "DEFAULT", "release": "1.module_f29+4709+776ff059"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#7348650abba1129a32f6550ca4dd2feda9876e6b"}}, "creation_time": "2019-06-13 20:35:59.142093", "completion_time": "2019-06-13 21:11:02.449098", "package_id": 407, "build_id": 1287340, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#7348650abba1129a32f6550ca4dd2feda9876e6b", "epoch": 2, "version": "2.10.12", "completion_ts": 1560460262.4491, "owner_id": 994, "owner_name": "kalev", "nvr": "gimp-2.10.12-1.fc30", "start_time": "2019-06-13 20:35:59.142093", "creation_event_id": 43652117, "start_ts": 1560458159.14209, "volume_id": 0, "creation_ts": 1560458159.14209, "name": "gimp", "task_id": 35528643, "volume_name": "DEFAULT", "release": "1.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#0d5bd0bb94e838635bd1967345d6ea073f13bbe6"}}, "creation_time": "2019-06-13 19:17:22.379824", "completion_time": "2019-06-13 19:46:03.897775", "package_id": 407, "build_id": 1287257, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#0d5bd0bb94e838635bd1967345d6ea073f13bbe6", "epoch": 2, "version": "2.10.12", "completion_ts": 1560455163.89777, "owner_id": 994, "owner_name": "kalev", "nvr": "gimp-2.10.12-1.fc31", "start_time": "2019-06-13 19:17:22.379824", "creation_event_id": 43650213, "start_ts": 1560453442.37982, "volume_id": 6, "creation_ts": 1560453442.37982, "name": "gimp", "task_id": 35527007, "volume_name": "fedora_koji_archive05", "release": "1.fc31"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#d12eeae3c56c0c93fd50fe61a0a1d57c65850ed9"}}, "creation_time": "2019-05-14 15:37:48.136397", "completion_time": "2019-05-14 16:14:15.473247", "package_id": 407, "build_id": 1267618, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#d12eeae3c56c0c93fd50fe61a0a1d57c65850ed9", "epoch": 2, "version": "2.10.10", "completion_ts": 1557850455.47325, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.10-2.module_f28+4260+2076c928", "start_time": "2019-05-14 15:37:48.136397", "creation_event_id": 42873423, "start_ts": 1557848268.1364, "volume_id": 0, "creation_ts": 1557848268.1364, "name": "gimp", "task_id": 34856531, "volume_name": "DEFAULT", "release": "2.module_f28+4260+2076c928"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#d12eeae3c56c0c93fd50fe61a0a1d57c65850ed9"}}, "creation_time": "2019-05-14 15:33:58.516048", "completion_time": "2019-05-14 16:10:00.618623", "package_id": 407, "build_id": 1267612, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#d12eeae3c56c0c93fd50fe61a0a1d57c65850ed9", "epoch": 2, "version": "2.10.10", "completion_ts": 1557850200.61862, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.10-2.module_f30+4262+3a622b48", "start_time": "2019-05-14 15:33:58.516048", "creation_event_id": 42873339, "start_ts": 1557848038.51605, "volume_id": 0, "creation_ts": 1557848038.51605, "name": "gimp", "task_id": 34856486, "volume_name": "DEFAULT", "release": "2.module_f30+4262+3a622b48"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#d12eeae3c56c0c93fd50fe61a0a1d57c65850ed9"}}, "creation_time": "2019-05-14 15:36:36.274262", "completion_time": "2019-05-14 16:07:22.319015", "package_id": 407, "build_id": 1267616, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#d12eeae3c56c0c93fd50fe61a0a1d57c65850ed9", "epoch": 2, "version": "2.10.10", "completion_ts": 1557850042.31902, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.10-2.module_f29+4263+7776631e", "start_time": "2019-05-14 15:36:36.274262", "creation_event_id": 42873397, "start_ts": 1557848196.27426, "volume_id": 0, "creation_ts": 1557848196.27426, "name": "gimp", "task_id": 34856542, "volume_name": "DEFAULT", "release": "2.module_f29+4263+7776631e"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#d12eeae3c56c0c93fd50fe61a0a1d57c65850ed9"}}, "creation_time": "2019-05-14 15:34:04.259844", "completion_time": "2019-05-14 16:05:40.734255", "package_id": 407, "build_id": 1267613, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#d12eeae3c56c0c93fd50fe61a0a1d57c65850ed9", "epoch": 2, "version": "2.10.10", "completion_ts": 1557849940.73426, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.10-2.module_f31+4261+0716bfed", "start_time": "2019-05-14 15:34:04.259844", "creation_event_id": 42873341, "start_ts": 1557848044.25984, "volume_id": 0, "creation_ts": 1557848044.25984, "name": "gimp", "task_id": 34856467, "volume_name": "DEFAULT", "release": "2.module_f31+4261+0716bfed"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#32f9e522095ae88263256c88842cd6a4c7ad9321"}}, "creation_time": "2019-02-01 19:50:42.284129", "completion_time": "2019-02-01 20:25:53.002146", "package_id": 407, "build_id": 1191823, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#32f9e522095ae88263256c88842cd6a4c7ad9321", "epoch": 2, "version": "2.8.22", "completion_ts": 1549052753.00215, "owner_id": 32, "owner_name": "caolanm", "nvr": "gimp-2.8.22-7.fc28.2", "start_time": "2019-02-01 19:50:42.284129", "creation_event_id": 39761914, "start_ts": 1549050642.28413, "volume_id": 0, "creation_ts": 1549050642.28413, "name": "gimp", "task_id": 32433865, "volume_name": "DEFAULT", "release": "7.fc28.2"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#211606822232ce5cc8fcf318eb3ea08a88a21cfa"}}, "creation_time": "2019-02-01 19:03:42.042090", "completion_time": "2019-02-01 19:42:44.315039", "package_id": 407, "build_id": 1191655, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#211606822232ce5cc8fcf318eb3ea08a88a21cfa", "epoch": 2, "version": "2.10.8", "completion_ts": 1549050164.31504, "owner_id": 32, "owner_name": "caolanm", "nvr": "gimp-2.10.8-7.fc29", "start_time": "2019-02-01 19:03:42.042090", "creation_event_id": 39759866, "start_ts": 1549047822.04209, "volume_id": 0, "creation_ts": 1549047822.04209, "name": "gimp", "task_id": 32432364, "volume_name": "DEFAULT", "release": "7.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#47cb4eba924a68ffdd3942ab2dbcb5a8bece6fd8"}}, "creation_time": "2019-04-11 15:12:27.823192", "completion_time": "2019-04-11 15:48:53.980971", "package_id": 407, "build_id": 1247827, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#47cb4eba924a68ffdd3942ab2dbcb5a8bece6fd8", "epoch": 2, "version": "2.10.10", "completion_ts": 1554997733.98097, "owner_id": 1742, "owner_name": "hobbes1069", "nvr": "gimp-2.10.10-2.fc31", "start_time": "2019-04-11 15:12:27.823192", "creation_event_id": 41947503, "start_ts": 1554995547.82319, "volume_id": 6, "creation_ts": 1554995547.82319, "name": "gimp", "task_id": 34112479, "volume_name": "fedora_koji_archive05", "release": "2.fc31"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#06ff9e16374afcacf2c2ead833a190c2f09c93ec"}}, "creation_time": "2019-04-09 12:52:05.867655", "completion_time": "2019-04-09 13:44:03.774234", "package_id": 407, "build_id": 1247143, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#06ff9e16374afcacf2c2ead833a190c2f09c93ec", "epoch": 2, "version": "2.10.10", "completion_ts": 1554817443.77423, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.10-1.module_f29+3877+99405ff6", "start_time": "2019-04-09 12:52:05.867655", "creation_event_id": 41906370, "start_ts": 1554814325.86766, "volume_id": 0, "creation_ts": 1554814325.86766, "name": "gimp", "task_id": 34076174, "volume_name": "DEFAULT", "release": "1.module_f29+3877+99405ff6"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#06ff9e16374afcacf2c2ead833a190c2f09c93ec"}}, "creation_time": "2019-04-09 12:53:14.154702", "completion_time": "2019-04-09 13:40:53.615182", "package_id": 407, "build_id": 1247146, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#06ff9e16374afcacf2c2ead833a190c2f09c93ec", "epoch": 2, "version": "2.10.10", "completion_ts": 1554817253.61518, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.10-1.module_f30+3878+d4400ad3", "start_time": "2019-04-09 12:53:14.154702", "creation_event_id": 41906417, "start_ts": 1554814394.1547, "volume_id": 0, "creation_ts": 1554814394.1547, "name": "gimp", "task_id": 34076204, "volume_name": "DEFAULT", "release": "1.module_f30+3878+d4400ad3"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#06ff9e16374afcacf2c2ead833a190c2f09c93ec"}}, "creation_time": "2019-04-09 12:52:32.756438", "completion_time": "2019-04-09 13:40:08.607809", "package_id": 407, "build_id": 1247144, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#06ff9e16374afcacf2c2ead833a190c2f09c93ec", "epoch": 2, "version": "2.10.10", "completion_ts": 1554817208.60781, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.10-1.module_f28+3879+08b72aed", "start_time": "2019-04-09 12:52:32.756438", "creation_event_id": 41906387, "start_ts": 1554814352.75644, "volume_id": 0, "creation_ts": 1554814352.75644, "name": "gimp", "task_id": 34076192, "volume_name": "DEFAULT", "release": "1.module_f28+3879+08b72aed"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#06ff9e16374afcacf2c2ead833a190c2f09c93ec"}}, "creation_time": "2019-04-09 12:50:59.641678", "completion_time": "2019-04-09 13:31:19.072530", "package_id": 407, "build_id": 1247141, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#06ff9e16374afcacf2c2ead833a190c2f09c93ec", "epoch": 2, "version": "2.10.10", "completion_ts": 1554816679.07253, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.10-1.module_f31+3876+b01712a4", "start_time": "2019-04-09 12:50:59.641678", "creation_event_id": 41906330, "start_ts": 1554814259.64168, "volume_id": 0, "creation_ts": 1554814259.64168, "name": "gimp", "task_id": 34076150, "volume_name": "DEFAULT", "release": "1.module_f31+3876+b01712a4"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#06ff9e16374afcacf2c2ead833a190c2f09c93ec"}}, "creation_time": "2019-04-09 12:49:02.234385", "completion_time": "2019-04-09 13:23:40.269837", "package_id": 407, "build_id": 1247132, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#06ff9e16374afcacf2c2ead833a190c2f09c93ec", "epoch": 2, "version": "2.10.10", "completion_ts": 1554816220.26984, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.10-1.fc29", "start_time": "2019-04-09 12:49:02.234385", "creation_event_id": 41906270, "start_ts": 1554814142.23439, "volume_id": 5, "creation_ts": 1554814142.23439, "name": "gimp", "task_id": 34076061, "volume_name": "fedora_koji_archive04", "release": "1.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#b0c21e10001e6be535a766d3a9eb5f5459fe39cc"}}, "creation_time": "2019-04-08 13:14:16.997925", "completion_time": "2019-04-08 13:45:53.468424", "package_id": 407, "build_id": 1246696, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#b0c21e10001e6be535a766d3a9eb5f5459fe39cc", "epoch": 2, "version": "2.10.10", "completion_ts": 1554731153.46842, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.10-1.fc30", "start_time": "2019-04-08 13:14:16.997925", "creation_event_id": 41877552, "start_ts": 1554729256.99793, "volume_id": 0, "creation_ts": 1554729256.99793, "name": "gimp", "task_id": 34051591, "volume_name": "DEFAULT", "release": "1.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#b0c21e10001e6be535a766d3a9eb5f5459fe39cc"}}, "creation_time": "2019-04-08 09:51:52.310571", "completion_time": "2019-04-08 10:28:12.537169", "package_id": 407, "build_id": 1246584, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#b0c21e10001e6be535a766d3a9eb5f5459fe39cc", "epoch": 2, "version": "2.10.10", "completion_ts": 1554719292.53717, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.10-1.fc31", "start_time": "2019-04-08 09:51:52.310571", "creation_event_id": 41873129, "start_ts": 1554717112.31057, "volume_id": 6, "creation_ts": 1554717112.31057, "name": "gimp", "task_id": 34047612, "volume_name": "fedora_koji_archive05", "release": "1.fc31"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#4133d71acc8960c8a3ab79cf6a34c5f6cfbc2967"}}, "creation_time": "2018-11-10 22:40:06.270197", "completion_time": "2018-11-10 23:08:31.396789", "package_id": 407, "build_id": 1162995, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#4133d71acc8960c8a3ab79cf6a34c5f6cfbc2967", "epoch": 2, "version": "2.10.8", "completion_ts": 1541891311.39679, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.8-4.fc30", "start_time": "2018-11-10 22:40:06.270197", "creation_event_id": 37856066, "start_ts": 1541889606.2702, "volume_id": 0, "creation_ts": 1541889606.2702, "name": "gimp", "task_id": 30785050, "volume_name": "DEFAULT", "release": "4.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#91af8bda24fdf8a2183d7cbb4896c4023997bdd4"}}, "creation_time": "2019-03-25 08:26:24.199657", "completion_time": "2019-03-25 08:54:04.380511", "package_id": 407, "build_id": 1238682, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#91af8bda24fdf8a2183d7cbb4896c4023997bdd4", "epoch": 2, "version": "2.10.8", "completion_ts": 1553504044.38051, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.10.8-8.fc31", "start_time": "2019-03-25 08:26:24.199657", "creation_event_id": 41456368, "start_ts": 1553502384.19966, "volume_id": 6, "creation_ts": 1553502384.19966, "name": "gimp", "task_id": 33756921, "volume_name": "fedora_koji_archive05", "release": "8.fc31"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#fe0f42a983006880a82e97c112d27b01dfa9d214"}}, "creation_time": "2019-03-05 04:08:47.115093", "completion_time": "2019-03-05 04:48:26.401813", "package_id": 407, "build_id": 1220418, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#fe0f42a983006880a82e97c112d27b01dfa9d214", "epoch": 2, "version": "2.10.8", "completion_ts": 1551761306.40181, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-5.module_f31+3304+d1bbbb19", "start_time": "2019-03-05 04:08:47.115093", "creation_event_id": 40688274, "start_ts": 1551758927.11509, "volume_id": 0, "creation_ts": 1551758927.11509, "name": "gimp", "task_id": 33174429, "volume_name": "DEFAULT", "release": "5.module_f31+3304+d1bbbb19"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#fe0f42a983006880a82e97c112d27b01dfa9d214"}}, "creation_time": "2019-03-01 20:28:10.532823", "completion_time": "2019-03-01 21:07:10.884934", "package_id": 407, "build_id": 1218430, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#fe0f42a983006880a82e97c112d27b01dfa9d214", "epoch": 2, "version": "2.10.8", "completion_ts": 1551474430.88493, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-5.module_f28+3135+b51e752e", "start_time": "2019-03-01 20:28:10.532823", "creation_event_id": 40637237, "start_ts": 1551472090.53282, "volume_id": 0, "creation_ts": 1551472090.53282, "name": "gimp", "task_id": 33130809, "volume_name": "DEFAULT", "release": "5.module_f28+3135+b51e752e"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#fe0f42a983006880a82e97c112d27b01dfa9d214"}}, "creation_time": "2019-02-19 07:14:31.511581", "completion_time": "2019-02-19 08:43:00.198305", "package_id": 407, "build_id": 1212940, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#fe0f42a983006880a82e97c112d27b01dfa9d214", "epoch": 2, "version": "2.10.8", "completion_ts": 1550565780.1983, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-5.module_f30+2942+858f82d0", "start_time": "2019-02-19 07:14:31.511581", "creation_event_id": 40325016, "start_ts": 1550560471.51158, "volume_id": 0, "creation_ts": 1550560471.51158, "name": "gimp", "task_id": 32900791, "volume_name": "DEFAULT", "release": "5.module_f30+2942+858f82d0"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#fe0f42a983006880a82e97c112d27b01dfa9d214"}}, "creation_time": "2019-02-19 00:22:17.076879", "completion_time": "2019-02-19 01:04:57.470101", "package_id": 407, "build_id": 1212262, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#fe0f42a983006880a82e97c112d27b01dfa9d214", "epoch": 2, "version": "2.10.8", "completion_ts": 1550538297.4701, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-5.module_f29+2941+134e658d", "start_time": "2019-02-19 00:22:17.076879", "creation_event_id": 40315965, "start_ts": 1550535737.07688, "volume_id": 0, "creation_ts": 1550535737.07688, "name": "gimp", "task_id": 32894511, "volume_name": "DEFAULT", "release": "5.module_f29+2941+134e658d"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#fe0f42a983006880a82e97c112d27b01dfa9d214"}}, "creation_time": "2019-02-18 23:43:17.823251", "completion_time": "2019-02-19 00:21:54.542213", "package_id": 407, "build_id": 1212212, "state": 3, "source": "git+https://src.fedoraproject.org/rpms/gimp#fe0f42a983006880a82e97c112d27b01dfa9d214", "epoch": 2, "version": "2.10.8", "completion_ts": 1550535714.54221, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-5.module_f28+2943+e4ea1abf", "start_time": "2019-02-18 23:43:17.823251", "creation_event_id": 40315139, "start_ts": 1550533397.82325, "volume_id": 0, "creation_ts": 1550533397.82325, "name": "gimp", "task_id": 32893412, "volume_name": "DEFAULT", "release": "5.module_f28+2943+e4ea1abf"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#a015e9ca88abe11cb9e2e38b055960cad8167266"}}, "creation_time": "2019-02-01 18:28:17.921378", "completion_time": "2019-02-01 18:57:59.643277", "package_id": 407, "build_id": 1191532, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#a015e9ca88abe11cb9e2e38b055960cad8167266", "epoch": 2, "version": "2.10.8", "completion_ts": 1549047479.64328, "owner_id": 32, "owner_name": "caolanm", "nvr": "gimp-2.10.8-7.fc30", "start_time": "2019-02-01 18:28:17.921378", "creation_event_id": 39758188, "start_ts": 1549045697.92138, "volume_id": 0, "creation_ts": 1549045697.92138, "name": "gimp", "task_id": 32431148, "volume_name": "DEFAULT", "release": "7.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#d0d460ef15ae69c3c63f021aa3b035b6cea6b203"}}, "creation_time": "2019-01-31 20:41:56.972175", "completion_time": "2019-01-31 21:20:40.722550", "package_id": 407, "build_id": 1186927, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#d0d460ef15ae69c3c63f021aa3b035b6cea6b203", "epoch": 2, "version": "2.10.8", "completion_ts": 1548969640.72255, "owner_id": 994, "owner_name": "kalev", "nvr": "gimp-2.10.8-6.fc30", "start_time": "2019-01-31 20:41:56.972175", "creation_event_id": 39695248, "start_ts": 1548967316.97217, "volume_id": 0, "creation_ts": 1548967316.97217, "name": "gimp", "task_id": 32386109, "volume_name": "DEFAULT", "release": "6.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#4133d71acc8960c8a3ab79cf6a34c5f6cfbc2967"}}, "creation_time": "2018-11-10 22:40:09.706419", "completion_time": "2018-11-10 23:13:31.358790", "package_id": 407, "build_id": 1162996, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#4133d71acc8960c8a3ab79cf6a34c5f6cfbc2967", "epoch": 2, "version": "2.10.8", "completion_ts": 1541891611.35879, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.8-4.fc29", "start_time": "2018-11-10 22:40:09.706419", "creation_event_id": 37856072, "start_ts": 1541889609.70642, "volume_id": 0, "creation_ts": 1541889609.70642, "name": "gimp", "task_id": 30785061, "volume_name": "DEFAULT", "release": "4.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#b439295fba6836264c9aaf785304bacdc60a479d"}}, "creation_time": "2018-11-10 21:20:29.715232", "completion_time": "2018-11-10 21:51:29.167850", "package_id": 407, "build_id": 1162980, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#b439295fba6836264c9aaf785304bacdc60a479d", "epoch": 2, "version": "2.10.8", "completion_ts": 1541886689.16785, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.8-3.fc29", "start_time": "2018-11-10 21:20:29.715232", "creation_event_id": 37854277, "start_ts": 1541884829.71523, "volume_id": 0, "creation_ts": 1541884829.71523, "name": "gimp", "task_id": 30783650, "volume_name": "DEFAULT", "release": "3.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#fe0f42a983006880a82e97c112d27b01dfa9d214"}}, "creation_time": "2019-01-02 13:10:50.266591", "completion_time": "2019-01-02 13:41:58.758291", "package_id": 407, "build_id": 1176628, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#fe0f42a983006880a82e97c112d27b01dfa9d214", "epoch": 2, "version": "2.10.8", "completion_ts": 1546436518.75829, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-5.module_2665+ecbbd047", "start_time": "2019-01-02 13:10:50.266591", "creation_event_id": 39031637, "start_ts": 1546434650.26659, "volume_id": 0, "creation_ts": 1546434650.26659, "name": "gimp", "task_id": 31772547, "volume_name": "DEFAULT", "release": "5.module_2665+ecbbd047"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#574d516811065eba23dd47575cde8aede8eac5f4"}}, "creation_time": "2018-11-10 14:39:06.843497", "completion_time": "2018-11-10 15:07:34.697653", "package_id": 407, "build_id": 1162925, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#574d516811065eba23dd47575cde8aede8eac5f4", "epoch": 2, "version": "2.10.8", "completion_ts": 1541862454.69765, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.8-2.fc30", "start_time": "2018-11-10 14:39:06.843497", "creation_event_id": 37845604, "start_ts": 1541860746.8435, "volume_id": 0, "creation_ts": 1541860746.8435, "name": "gimp", "task_id": 30776988, "volume_name": "DEFAULT", "release": "2.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#574d516811065eba23dd47575cde8aede8eac5f4"}}, "creation_time": "2018-11-10 14:40:06.290445", "completion_time": "2018-11-10 15:07:45.515434", "package_id": 407, "build_id": 1162926, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#574d516811065eba23dd47575cde8aede8eac5f4", "epoch": 2, "version": "2.10.8", "completion_ts": 1541862465.51543, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.8-2.fc29", "start_time": "2018-11-10 14:40:06.290445", "creation_event_id": 37845672, "start_ts": 1541860806.29045, "volume_id": 0, "creation_ts": 1541860806.29045, "name": "gimp", "task_id": 30776999, "volume_name": "DEFAULT", "release": "2.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#9de7a953bf874f5f1aea6f6cbdf271cae3cf3ca6"}}, "creation_time": "2018-11-10 10:40:35.649603", "completion_time": "2018-11-10 11:09:18.783693", "package_id": 407, "build_id": 1162775, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#9de7a953bf874f5f1aea6f6cbdf271cae3cf3ca6", "epoch": 2, "version": "2.10.8", "completion_ts": 1541848158.78369, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.8-1.fc29", "start_time": "2018-11-10 10:40:35.649603", "creation_event_id": 37840970, "start_ts": 1541846435.6496, "volume_id": 0, "creation_ts": 1541846435.6496, "name": "gimp", "task_id": 30772765, "volume_name": "DEFAULT", "release": "1.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#34675e016d7b861f4c45a57174c2b7e8681baa1c"}}, "creation_time": "2018-05-02 13:37:34.877258", "completion_time": "2018-05-02 14:10:47.216702", "package_id": 407, "build_id": 1078494, "state": 2, "source": "git://pkgs.fedoraproject.org/rpms/gimp#34675e016d7b861f4c45a57174c2b7e8681baa1c", "epoch": 2, "version": "2.10.0", "completion_ts": 1525270247.2167, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.0-2.module_1718+74bcb2c2", "start_time": "2018-05-02 13:37:34.877258", "creation_event_id": 33077918, "start_ts": 1525268254.87726, "volume_id": 0, "creation_ts": 1525268254.87726, "name": "gimp", "task_id": 26727371, "volume_name": "DEFAULT", "release": "2.module_1718+74bcb2c2"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#fe0f42a983006880a82e97c112d27b01dfa9d214"}}, "creation_time": "2018-11-12 11:37:05.490159", "completion_time": "2018-11-12 12:05:54.433583", "package_id": 407, "build_id": 1163293, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#fe0f42a983006880a82e97c112d27b01dfa9d214", "epoch": 2, "version": "2.10.8", "completion_ts": 1542024354.43358, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-5.module_2462+2819239e", "start_time": "2018-11-12 11:37:05.490159", "creation_event_id": 37905510, "start_ts": 1542022625.49016, "volume_id": 0, "creation_ts": 1542022625.49016, "name": "gimp", "task_id": 30825970, "volume_name": "DEFAULT", "release": "5.module_2462+2819239e"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#fe0f42a983006880a82e97c112d27b01dfa9d214"}}, "creation_time": "2018-11-12 11:34:54.443084", "completion_time": "2018-11-12 12:03:10.749722", "package_id": 407, "build_id": 1163292, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#fe0f42a983006880a82e97c112d27b01dfa9d214", "epoch": 2, "version": "2.10.8", "completion_ts": 1542024190.74972, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-5.module_2462+a1ec44e9", "start_time": "2018-11-12 11:34:54.443084", "creation_event_id": 37905455, "start_ts": 1542022494.44308, "volume_id": 0, "creation_ts": 1542022494.44308, "name": "gimp", "task_id": 30825876, "volume_name": "DEFAULT", "release": "5.module_2462+a1ec44e9"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#fe0f42a983006880a82e97c112d27b01dfa9d214"}}, "creation_time": "2018-11-12 11:41:32.137732", "completion_time": "2018-11-12 11:44:35.654283", "package_id": 407, "build_id": 1163295, "state": 3, "source": "git+https://src.fedoraproject.org/rpms/gimp#fe0f42a983006880a82e97c112d27b01dfa9d214", "epoch": 2, "version": "2.10.8", "completion_ts": 1542023075.65428, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-5.module_2462+a0f2c515", "start_time": "2018-11-12 11:41:32.137732", "creation_event_id": 37905641, "start_ts": 1542022892.13773, "volume_id": 0, "creation_ts": 1542022892.13773, "name": "gimp", "task_id": 30826056, "volume_name": "DEFAULT", "release": "5.module_2462+a0f2c515"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#fe0f42a983006880a82e97c112d27b01dfa9d214"}}, "creation_time": "2018-11-12 09:52:29.242290", "completion_time": "2018-11-12 10:21:47.801076", "package_id": 407, "build_id": 1163249, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#fe0f42a983006880a82e97c112d27b01dfa9d214", "epoch": 2, "version": "2.10.8", "completion_ts": 1542018107.80108, "owner_id": 2115, "owner_name": "besser82", "nvr": "gimp-2.10.8-5.fc29", "start_time": "2018-11-12 09:52:29.242290", "creation_event_id": 37902366, "start_ts": 1542016349.24229, "volume_id": 5, "creation_ts": 1542016349.24229, "name": "gimp", "task_id": 30822982, "volume_name": "fedora_koji_archive04", "release": "5.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#4133d71acc8960c8a3ab79cf6a34c5f6cfbc2967"}}, "creation_time": "2018-11-10 22:47:53.029522", "completion_time": "2018-11-10 23:19:45.964778", "package_id": 407, "build_id": 1163000, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#4133d71acc8960c8a3ab79cf6a34c5f6cfbc2967", "epoch": 2, "version": "2.10.8", "completion_ts": 1541891985.96478, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-4.module_2459+edc4cba2", "start_time": "2018-11-10 22:47:53.029522", "creation_event_id": 37856236, "start_ts": 1541890073.02952, "volume_id": 0, "creation_ts": 1541890073.02952, "name": "gimp", "task_id": 30785230, "volume_name": "DEFAULT", "release": "4.module_2459+edc4cba2"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#4133d71acc8960c8a3ab79cf6a34c5f6cfbc2967"}}, "creation_time": "2018-11-10 22:50:02.669064", "completion_time": "2018-11-10 23:17:55.595191", "package_id": 407, "build_id": 1163002, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#4133d71acc8960c8a3ab79cf6a34c5f6cfbc2967", "epoch": 2, "version": "2.10.8", "completion_ts": 1541891875.59519, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-4.module_2459+364ce4ac", "start_time": "2018-11-10 22:50:02.669064", "creation_event_id": 37856278, "start_ts": 1541890202.66906, "volume_id": 0, "creation_ts": 1541890202.66906, "name": "gimp", "task_id": 30785252, "volume_name": "DEFAULT", "release": "4.module_2459+364ce4ac"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#4133d71acc8960c8a3ab79cf6a34c5f6cfbc2967"}}, "creation_time": "2018-11-10 22:49:40.408423", "completion_time": "2018-11-10 23:17:34.120632", "package_id": 407, "build_id": 1163001, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#4133d71acc8960c8a3ab79cf6a34c5f6cfbc2967", "epoch": 2, "version": "2.10.8", "completion_ts": 1541891854.12063, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-4.module_2459+391dfdb8", "start_time": "2018-11-10 22:49:40.408423", "creation_event_id": 37856269, "start_ts": 1541890180.40842, "volume_id": 0, "creation_ts": 1541890180.40842, "name": "gimp", "task_id": 30785254, "volume_name": "DEFAULT", "release": "4.module_2459+391dfdb8"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#b439295fba6836264c9aaf785304bacdc60a479d"}}, "creation_time": "2018-11-10 21:32:46.739310", "completion_time": "2018-11-10 22:09:34.792579", "package_id": 407, "build_id": 1162989, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#b439295fba6836264c9aaf785304bacdc60a479d", "epoch": 2, "version": "2.10.8", "completion_ts": 1541887774.79258, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-3.module_2456+e107f95c", "start_time": "2018-11-10 21:32:46.739310", "creation_event_id": 37854577, "start_ts": 1541885566.73931, "volume_id": 0, "creation_ts": 1541885566.73931, "name": "gimp", "task_id": 30783881, "volume_name": "DEFAULT", "release": "3.module_2456+e107f95c"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#b439295fba6836264c9aaf785304bacdc60a479d"}}, "creation_time": "2018-11-10 21:31:22.122864", "completion_time": "2018-11-10 21:59:40.965478", "package_id": 407, "build_id": 1162988, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#b439295fba6836264c9aaf785304bacdc60a479d", "epoch": 2, "version": "2.10.8", "completion_ts": 1541887180.96548, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-3.module_2456+b66320d7", "start_time": "2018-11-10 21:31:22.122864", "creation_event_id": 37854538, "start_ts": 1541885482.12286, "volume_id": 0, "creation_ts": 1541885482.12286, "name": "gimp", "task_id": 30783877, "volume_name": "DEFAULT", "release": "3.module_2456+b66320d7"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#b439295fba6836264c9aaf785304bacdc60a479d"}}, "creation_time": "2018-11-10 21:30:55.113511", "completion_time": "2018-11-10 21:54:00.917047", "package_id": 407, "build_id": 1162987, "state": 3, "source": "git+https://src.fedoraproject.org/rpms/gimp#b439295fba6836264c9aaf785304bacdc60a479d", "epoch": 2, "version": "2.10.8", "completion_ts": 1541886840.91705, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-3.module_2456+c493b799", "start_time": "2018-11-10 21:30:55.113511", "creation_event_id": 37854507, "start_ts": 1541885455.11351, "volume_id": 0, "creation_ts": 1541885455.11351, "name": "gimp", "task_id": 30783878, "volume_name": "DEFAULT", "release": "3.module_2456+c493b799"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#b439295fba6836264c9aaf785304bacdc60a479d"}}, "creation_time": "2018-11-10 21:20:29.055610", "completion_time": "2018-11-10 21:53:34.679224", "package_id": 407, "build_id": 1162979, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#b439295fba6836264c9aaf785304bacdc60a479d", "epoch": 2, "version": "2.10.8", "completion_ts": 1541886814.67922, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.8-3.fc30", "start_time": "2018-11-10 21:20:29.055610", "creation_event_id": 37854276, "start_ts": 1541884829.05561, "volume_id": 0, "creation_ts": 1541884829.05561, "name": "gimp", "task_id": 30783648, "volume_name": "DEFAULT", "release": "3.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#574d516811065eba23dd47575cde8aede8eac5f4"}}, "creation_time": "2018-11-10 15:01:16.194119", "completion_time": "2018-11-10 15:30:29.532456", "package_id": 407, "build_id": 1162932, "state": 3, "source": "git+https://src.fedoraproject.org/rpms/gimp#574d516811065eba23dd47575cde8aede8eac5f4", "epoch": 2, "version": "2.10.8", "completion_ts": 1541863829.53246, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-2.module_2453+34ea2420", "start_time": "2018-11-10 15:01:16.194119", "creation_event_id": 37846073, "start_ts": 1541862076.19412, "volume_id": 0, "creation_ts": 1541862076.19412, "name": "gimp", "task_id": 30777271, "volume_name": "DEFAULT", "release": "2.module_2453+34ea2420"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#574d516811065eba23dd47575cde8aede8eac5f4"}}, "creation_time": "2018-11-10 14:56:06.917131", "completion_time": "2018-11-10 15:23:40.645419", "package_id": 407, "build_id": 1162931, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#574d516811065eba23dd47575cde8aede8eac5f4", "epoch": 2, "version": "2.10.8", "completion_ts": 1541863420.64542, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-2.module_2453+4b8fecfc", "start_time": "2018-11-10 14:56:06.917131", "creation_event_id": 37845998, "start_ts": 1541861766.91713, "volume_id": 0, "creation_ts": 1541861766.91713, "name": "gimp", "task_id": 30777209, "volume_name": "DEFAULT", "release": "2.module_2453+4b8fecfc"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#574d516811065eba23dd47575cde8aede8eac5f4"}}, "creation_time": "2018-11-10 14:54:23.549307", "completion_time": "2018-11-10 15:21:55.392096", "package_id": 407, "build_id": 1162930, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#574d516811065eba23dd47575cde8aede8eac5f4", "epoch": 2, "version": "2.10.8", "completion_ts": 1541863315.3921, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-2.module_2453+931490a7", "start_time": "2018-11-10 14:54:23.549307", "creation_event_id": 37845969, "start_ts": 1541861663.54931, "volume_id": 0, "creation_ts": 1541861663.54931, "name": "gimp", "task_id": 30777200, "volume_name": "DEFAULT", "release": "2.module_2453+931490a7"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#e61a69d6ffb04244e520b92bb5bad98a91393559"}}, "creation_time": "2018-11-10 11:14:29.143334", "completion_time": "2018-11-10 11:36:32.887202", "package_id": 407, "build_id": 1162874, "state": 3, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#e61a69d6ffb04244e520b92bb5bad98a91393559", "epoch": 2, "version": "2.10.8", "completion_ts": 1541849792.8872, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.8-1.fc30", "start_time": "2018-11-10 11:14:29.143334", "creation_event_id": 37841712, "start_ts": 1541848469.14333, "volume_id": 0, "creation_ts": 1541848469.14333, "name": "gimp", "task_id": 30773180, "volume_name": "DEFAULT", "release": "1.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#9de7a953bf874f5f1aea6f6cbdf271cae3cf3ca6"}}, "creation_time": "2018-11-10 00:24:18.499822", "completion_time": "2018-11-10 00:55:05.291173", "package_id": 407, "build_id": 1162782, "state": 3, "source": "git+https://src.fedoraproject.org/rpms/gimp#9de7a953bf874f5f1aea6f6cbdf271cae3cf3ca6", "epoch": 2, "version": "2.10.8", "completion_ts": 1541811305.29117, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-1.module_2447+dda30ad8", "start_time": "2018-11-10 00:24:18.499822", "creation_event_id": 37835561, "start_ts": 1541809458.49982, "volume_id": 0, "creation_ts": 1541809458.49982, "name": "gimp", "task_id": 30768247, "volume_name": "DEFAULT", "release": "1.module_2447+dda30ad8"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#9de7a953bf874f5f1aea6f6cbdf271cae3cf3ca6"}}, "creation_time": "2018-11-10 00:19:18.898147", "completion_time": "2018-11-10 00:50:35.261460", "package_id": 407, "build_id": 1162781, "state": 3, "source": "git+https://src.fedoraproject.org/rpms/gimp#9de7a953bf874f5f1aea6f6cbdf271cae3cf3ca6", "epoch": 2, "version": "2.10.8", "completion_ts": 1541811035.26146, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-1.module_2447+53fd304d", "start_time": "2018-11-10 00:19:18.898147", "creation_event_id": 37835532, "start_ts": 1541809158.89815, "volume_id": 0, "creation_ts": 1541809158.89815, "name": "gimp", "task_id": 30768190, "volume_name": "DEFAULT", "release": "1.module_2447+53fd304d"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#9de7a953bf874f5f1aea6f6cbdf271cae3cf3ca6"}}, "creation_time": "2018-11-10 00:16:39.569128", "completion_time": "2018-11-10 00:19:48.598932", "package_id": 407, "build_id": 1162779, "state": 3, "source": "git+https://src.fedoraproject.org/rpms/gimp#9de7a953bf874f5f1aea6f6cbdf271cae3cf3ca6", "epoch": 2, "version": "2.10.8", "completion_ts": 1541809188.59893, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.8-1.module_2447+12b91221", "start_time": "2018-11-10 00:16:39.569128", "creation_event_id": 37835509, "start_ts": 1541808999.56913, "volume_id": 0, "creation_ts": 1541808999.56913, "name": "gimp", "task_id": 30768178, "volume_name": "DEFAULT", "release": "1.module_2447+12b91221"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#121bf883f63dc46fa04ffbbf7ce7389246d1a59d"}}, "creation_time": "2018-05-21 12:59:05.027509", "completion_time": "2018-05-21 13:25:25.440457", "package_id": 407, "build_id": 1083674, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#121bf883f63dc46fa04ffbbf7ce7389246d1a59d", "epoch": 2, "version": "2.10.2", "completion_ts": 1526909125.44046, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.2-1.fc29", "start_time": "2018-05-21 12:59:05.027509", "creation_event_id": 33507297, "start_ts": 1526907545.02751, "volume_id": 0, "creation_ts": 1526907545.02751, "name": "gimp", "task_id": 27112357, "volume_name": "DEFAULT", "release": "1.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git?#482b1d4079659e3170cfe68702416958d5ce3279"}}, "creation_time": "2018-05-18 09:45:50.248429", "completion_time": "2018-05-18 10:12:55.288283", "package_id": 407, "build_id": 1081224, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#482b1d4079659e3170cfe68702416958d5ce3279", "epoch": 2, "version": "2.10.0", "completion_ts": 1526638375.28828, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.0-4.fc29", "start_time": "2018-05-18 09:45:50.248429", "creation_event_id": 33419144, "start_ts": 1526636750.24843, "volume_id": 0, "creation_ts": 1526636750.24843, "name": "gimp", "task_id": 27036224, "volume_name": "DEFAULT", "release": "4.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git?#e63109135bf370868704a0a7c4c1d36a11d6b375"}}, "creation_time": "2018-05-02 14:11:52.007911", "completion_time": "2018-05-02 14:49:18.972762", "package_id": 407, "build_id": 1078511, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#e63109135bf370868704a0a7c4c1d36a11d6b375", "epoch": 2, "version": "2.10.0", "completion_ts": 1525272558.97276, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.0-3.fc29", "start_time": "2018-05-02 14:11:52.007911", "creation_event_id": 33078440, "start_ts": 1525270312.00791, "volume_id": 0, "creation_ts": 1525270312.00791, "name": "gimp", "task_id": 26727845, "volume_name": "DEFAULT", "release": "3.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git?#34675e016d7b861f4c45a57174c2b7e8681baa1c"}}, "creation_time": "2018-05-02 13:12:24.695652", "completion_time": "2018-05-02 13:43:27.299885", "package_id": 407, "build_id": 1078474, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#34675e016d7b861f4c45a57174c2b7e8681baa1c", "epoch": 2, "version": "2.10.0", "completion_ts": 1525268607.29989, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.0-2.fc29", "start_time": "2018-05-02 13:12:24.695652", "creation_event_id": 33077376, "start_ts": 1525266744.69565, "volume_id": 0, "creation_ts": 1525266744.69565, "name": "gimp", "task_id": 26726787, "volume_name": "DEFAULT", "release": "2.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#5806be946febc58b68ec28a3af16eab0e9207435"}}, "creation_time": "2018-08-24 15:19:52.675365", "completion_time": "2018-08-24 15:54:18.630281", "package_id": 407, "build_id": 1139100, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#5806be946febc58b68ec28a3af16eab0e9207435", "epoch": 2, "version": "2.10.6", "completion_ts": 1535126058.63028, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.6-2.module_2129+667bd410", "start_time": "2018-08-24 15:19:52.675365", "creation_event_id": 36008247, "start_ts": 1535123992.67536, "volume_id": 0, "creation_ts": 1535123992.67536, "name": "gimp", "task_id": 29270303, "volume_name": "DEFAULT", "release": "2.module_2129+667bd410"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#5806be946febc58b68ec28a3af16eab0e9207435"}}, "creation_time": "2018-08-24 15:20:07.724965", "completion_time": "2018-08-24 15:50:06.128691", "package_id": 407, "build_id": 1139101, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#5806be946febc58b68ec28a3af16eab0e9207435", "epoch": 2, "version": "2.10.6", "completion_ts": 1535125806.12869, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.6-2.module_2129+0d46cbd3", "start_time": "2018-08-24 15:20:07.724965", "creation_event_id": 36008262, "start_ts": 1535124007.72497, "volume_id": 0, "creation_ts": 1535124007.72497, "name": "gimp", "task_id": 29270348, "volume_name": "DEFAULT", "release": "2.module_2129+0d46cbd3"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#5806be946febc58b68ec28a3af16eab0e9207435"}}, "creation_time": "2018-08-24 15:11:53.285581", "completion_time": "2018-08-24 15:39:44.238724", "package_id": 407, "build_id": 1139098, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#5806be946febc58b68ec28a3af16eab0e9207435", "epoch": 2, "version": "2.10.6", "completion_ts": 1535125184.23872, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.6-2.module_2129+8576126a", "start_time": "2018-08-24 15:11:53.285581", "creation_event_id": 36008106, "start_ts": 1535123513.28558, "volume_id": 0, "creation_ts": 1535123513.28558, "name": "gimp", "task_id": 29270187, "volume_name": "DEFAULT", "release": "2.module_2129+8576126a"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#5806be946febc58b68ec28a3af16eab0e9207435"}}, "creation_time": "2018-08-24 14:52:05.670396", "completion_time": "2018-08-24 15:24:58.401259", "package_id": 407, "build_id": 1139086, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#5806be946febc58b68ec28a3af16eab0e9207435", "epoch": 2, "version": "2.10.6", "completion_ts": 1535124298.40126, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.6-2.fc30", "start_time": "2018-08-24 14:52:05.670396", "creation_event_id": 36007818, "start_ts": 1535122325.6704, "volume_id": 6, "creation_ts": 1535122325.6704, "name": "gimp", "task_id": 29269855, "volume_name": "fedora_koji_archive05", "release": "2.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#f3f09fe667f718793c0853a2d411b141c5fe7611"}}, "creation_time": "2018-08-23 11:11:13.015788", "completion_time": "2018-08-23 11:45:41.203880", "package_id": 407, "build_id": 1138699, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#f3f09fe667f718793c0853a2d411b141c5fe7611", "epoch": 2, "version": "2.8.22", "completion_ts": 1535024741.20388, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-7.fc28", "start_time": "2018-08-23 11:11:13.015788", "creation_event_id": 35983631, "start_ts": 1535022673.01579, "volume_id": 3, "creation_ts": 1535022673.01579, "name": "gimp", "task_id": 29246951, "volume_name": "fedora_koji_archive02", "release": "7.fc28"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#0b67fc78e42b3ef7bafaf8b773338850397eabd8"}}, "creation_time": "2018-08-20 19:24:48.825684", "completion_time": "2018-08-20 20:02:28.733726", "package_id": 407, "build_id": 1137904, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#0b67fc78e42b3ef7bafaf8b773338850397eabd8", "epoch": 2, "version": "2.10.6", "completion_ts": 1534795348.73373, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.6-1.module_2117+47a63e4d", "start_time": "2018-08-20 19:24:48.825684", "creation_event_id": 35938742, "start_ts": 1534793088.82568, "volume_id": 0, "creation_ts": 1534793088.82568, "name": "gimp", "task_id": 29204941, "volume_name": "DEFAULT", "release": "1.module_2117+47a63e4d"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#0b67fc78e42b3ef7bafaf8b773338850397eabd8"}}, "creation_time": "2018-08-20 19:23:49.376639", "completion_time": "2018-08-20 20:00:25.210908", "package_id": 407, "build_id": 1137903, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#0b67fc78e42b3ef7bafaf8b773338850397eabd8", "epoch": 2, "version": "2.10.6", "completion_ts": 1534795225.21091, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.6-1.module_2117+76a294af", "start_time": "2018-08-20 19:23:49.376639", "creation_event_id": 35938730, "start_ts": 1534793029.37664, "volume_id": 0, "creation_ts": 1534793029.37664, "name": "gimp", "task_id": 29204938, "volume_name": "DEFAULT", "release": "1.module_2117+76a294af"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#0b67fc78e42b3ef7bafaf8b773338850397eabd8"}}, "creation_time": "2018-08-20 19:20:51.180458", "completion_time": "2018-08-20 19:53:41.348590", "package_id": 407, "build_id": 1137902, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#0b67fc78e42b3ef7bafaf8b773338850397eabd8", "epoch": 2, "version": "2.10.6", "completion_ts": 1534794821.34859, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.6-1.module_2117+07c319fa", "start_time": "2018-08-20 19:20:51.180458", "creation_event_id": 35938684, "start_ts": 1534792851.18046, "volume_id": 0, "creation_ts": 1534792851.18046, "name": "gimp", "task_id": 29204902, "volume_name": "DEFAULT", "release": "1.module_2117+07c319fa"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#0b67fc78e42b3ef7bafaf8b773338850397eabd8"}}, "creation_time": "2018-08-20 19:04:34.136328", "completion_time": "2018-08-20 19:32:57.491390", "package_id": 407, "build_id": 1137893, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#0b67fc78e42b3ef7bafaf8b773338850397eabd8", "epoch": 2, "version": "2.10.6", "completion_ts": 1534793577.49139, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.6-1.fc29", "start_time": "2018-08-20 19:04:34.136328", "creation_event_id": 35938374, "start_ts": 1534791874.13633, "volume_id": 5, "creation_ts": 1534791874.13633, "name": "gimp", "task_id": 29204631, "volume_name": "fedora_koji_archive04", "release": "1.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#0b67fc78e42b3ef7bafaf8b773338850397eabd8"}}, "creation_time": "2018-08-20 17:36:32.481012", "completion_time": "2018-08-20 18:10:01.989709", "package_id": 407, "build_id": 1137874, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#0b67fc78e42b3ef7bafaf8b773338850397eabd8", "epoch": 2, "version": "2.10.6", "completion_ts": 1534788601.98971, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.6-1.fc30", "start_time": "2018-08-20 17:36:32.481012", "creation_event_id": 35937212, "start_ts": 1534786592.48101, "volume_id": 6, "creation_ts": 1534786592.48101, "name": "gimp", "task_id": 29203366, "volume_name": "fedora_koji_archive05", "release": "1.fc30"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#16f8643e2e964a0566538a400649922b56b9a522"}}, "creation_time": "2018-08-16 14:41:29.374290", "completion_time": "2018-08-16 15:14:02.933294", "package_id": 407, "build_id": 1136892, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#16f8643e2e964a0566538a400649922b56b9a522", "epoch": 2, "version": "2.10.4", "completion_ts": 1534432442.93329, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.4-1.module_2050+0d5b27d3", "start_time": "2018-08-16 14:41:29.374290", "creation_event_id": 35836433, "start_ts": 1534430489.37429, "volume_id": 0, "creation_ts": 1534430489.37429, "name": "gimp", "task_id": 29113637, "volume_name": "DEFAULT", "release": "1.module_2050+0d5b27d3"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#16f8643e2e964a0566538a400649922b56b9a522"}}, "creation_time": "2018-07-05 11:47:19.539814", "completion_time": "2018-07-05 12:15:09.288777", "package_id": 407, "build_id": 1103210, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#16f8643e2e964a0566538a400649922b56b9a522", "epoch": 2, "version": "2.10.4", "completion_ts": 1530792909.28878, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.4-1.module_1890+e4554637", "start_time": "2018-07-05 11:47:19.539814", "creation_event_id": 34520860, "start_ts": 1530791239.53981, "volume_id": 0, "creation_ts": 1530791239.53981, "name": "gimp", "task_id": 28032208, "volume_name": "DEFAULT", "release": "1.module_1890+e4554637"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#16f8643e2e964a0566538a400649922b56b9a522"}}, "creation_time": "2018-07-05 11:46:39.512522", "completion_time": "2018-07-05 12:14:03.144700", "package_id": 407, "build_id": 1103209, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#16f8643e2e964a0566538a400649922b56b9a522", "epoch": 2, "version": "2.10.4", "completion_ts": 1530792843.1447, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.4-1.module_1890+ef0a0cae", "start_time": "2018-07-05 11:46:39.512522", "creation_event_id": 34520838, "start_ts": 1530791199.51252, "volume_id": 0, "creation_ts": 1530791199.51252, "name": "gimp", "task_id": 28032206, "volume_name": "DEFAULT", "release": "1.module_1890+ef0a0cae"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#8639b86eb8eceaa21c32dfe46c48af4f6293117a"}}, "creation_time": "2018-07-05 11:06:19.108519", "completion_time": "2018-07-05 11:32:54.947893", "package_id": 407, "build_id": 1103166, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#8639b86eb8eceaa21c32dfe46c48af4f6293117a", "epoch": 2, "version": "2.10.4", "completion_ts": 1530790374.94789, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.4-1.fc29", "start_time": "2018-07-05 11:06:19.108519", "creation_event_id": 34520233, "start_ts": 1530788779.10852, "volume_id": 6, "creation_ts": 1530788779.10852, "name": "gimp", "task_id": 28031620, "volume_name": "fedora_koji_archive05", "release": "1.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git?#282605dda71c225bc5fed37b54aab8e5f3e272c1"}}, "creation_time": "2018-03-09 08:59:05.807784", "completion_time": "2018-03-09 09:38:46.563737", "package_id": 407, "build_id": 1056135, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#282605dda71c225bc5fed37b54aab8e5f3e272c1", "epoch": 2, "version": "2.8.22", "completion_ts": 1520588326.56374, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-6.fc28", "start_time": "2018-03-09 08:59:05.807784", "creation_event_id": 31690210, "start_ts": 1520585945.80778, "volume_id": 0, "creation_ts": 1520585945.80778, "name": "gimp", "task_id": 25576169, "volume_name": "DEFAULT", "release": "6.fc28"}, {"package_name": "gimp", "extra": null, "creation_time": "2018-01-05 23:33:37.839726", "completion_time": "2018-01-06 00:00:43.401190", "package_id": 407, "build_id": 1013752, "state": 2, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1515196843.40119, "owner_id": 2546, "owner_name": "ignatenkobrain", "nvr": "gimp-2.8.22-3.fc28.1", "start_time": "2018-01-05 23:33:37.839726", "creation_event_id": 29802815, "start_ts": 1515195217.83973, "volume_id": 0, "creation_ts": 1515195217.83973, "name": "gimp", "task_id": 24021777, "volume_name": "DEFAULT", "release": "3.fc28.1"}, {"package_name": "gimp", "extra": null, "creation_time": "2018-01-04 12:32:30.756648", "completion_time": "2018-01-04 13:00:27.533533", "package_id": 407, "build_id": 1013279, "state": 2, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1515070827.53353, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-3.fc28", "start_time": "2018-01-04 12:32:30.756648", "creation_event_id": 29771660, "start_ts": 1515069150.75665, "volume_id": 0, "creation_ts": 1515069150.75665, "name": "gimp", "task_id": 23993378, "volume_name": "DEFAULT", "release": "3.fc28"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#13a6753730bc2fd2c21d15aca94a804cab55d01f"}}, "creation_time": "2018-05-23 09:00:17.260459", "completion_time": "2018-05-23 09:31:05.212181", "package_id": 407, "build_id": 1084123, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#13a6753730bc2fd2c21d15aca94a804cab55d01f", "epoch": 2, "version": "2.10.2", "completion_ts": 1527067865.21218, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.2-2.module_1778+8cb2ad22", "start_time": "2018-05-23 09:00:17.260459", "creation_event_id": 33536479, "start_ts": 1527066017.26046, "volume_id": 0, "creation_ts": 1527066017.26046, "name": "gimp", "task_id": 27138177, "volume_name": "DEFAULT", "release": "2.module_1778+8cb2ad22"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#13a6753730bc2fd2c21d15aca94a804cab55d01f"}}, "creation_time": "2018-05-23 08:41:30.738303", "completion_time": "2018-05-23 09:20:16.464568", "package_id": 407, "build_id": 1084124, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#13a6753730bc2fd2c21d15aca94a804cab55d01f", "epoch": 2, "version": "2.10.2", "completion_ts": 1527067216.46457, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.2-2.module_1778+41273c4f", "start_time": "2018-05-23 08:41:30.738303", "creation_event_id": 33535906, "start_ts": 1527064890.7383, "volume_id": 0, "creation_ts": 1527064890.7383, "name": "gimp", "task_id": 27137581, "volume_name": "DEFAULT", "release": "2.module_1778+41273c4f"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#13a6753730bc2fd2c21d15aca94a804cab55d01f"}}, "creation_time": "2018-05-23 08:25:16.800865", "completion_time": "2018-05-23 08:51:34.323029", "package_id": 407, "build_id": 1084120, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#13a6753730bc2fd2c21d15aca94a804cab55d01f", "epoch": 2, "version": "2.10.2", "completion_ts": 1527065494.32303, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.2-2.fc29", "start_time": "2018-05-23 08:25:16.800865", "creation_event_id": 33535511, "start_ts": 1527063916.80086, "volume_id": 6, "creation_ts": 1527063916.80086, "name": "gimp", "task_id": 27137374, "volume_name": "fedora_koji_archive05", "release": "2.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#121bf883f63dc46fa04ffbbf7ce7389246d1a59d"}}, "creation_time": "2018-05-21 13:02:45.561284", "completion_time": "2018-05-21 13:30:34.318354", "package_id": 407, "build_id": 1083678, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#121bf883f63dc46fa04ffbbf7ce7389246d1a59d", "epoch": 2, "version": "2.10.2", "completion_ts": 1526909434.31835, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.2-1.module_1771+ce88fc44", "start_time": "2018-05-21 13:02:45.561284", "creation_event_id": 33507362, "start_ts": 1526907765.56128, "volume_id": 0, "creation_ts": 1526907765.56128, "name": "gimp", "task_id": 27112427, "volume_name": "DEFAULT", "release": "1.module_1771+ce88fc44"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#121bf883f63dc46fa04ffbbf7ce7389246d1a59d"}}, "creation_time": "2018-05-21 13:03:50.777185", "completion_time": "2018-05-21 13:30:31.386562", "package_id": 407, "build_id": 1083679, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#121bf883f63dc46fa04ffbbf7ce7389246d1a59d", "epoch": 2, "version": "2.10.2", "completion_ts": 1526909431.38656, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.2-1.module_1771+35cb837e", "start_time": "2018-05-21 13:03:50.777185", "creation_event_id": 33507378, "start_ts": 1526907830.77718, "volume_id": 0, "creation_ts": 1526907830.77718, "name": "gimp", "task_id": 27112453, "volume_name": "DEFAULT", "release": "1.module_1771+35cb837e"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#482b1d4079659e3170cfe68702416958d5ce3279"}}, "creation_time": "2018-05-11 14:23:50.333198", "completion_time": "2018-05-11 14:54:38.339892", "package_id": 407, "build_id": 1081231, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#482b1d4079659e3170cfe68702416958d5ce3279", "epoch": 2, "version": "2.10.0", "completion_ts": 1526050478.33989, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.0-4.module_1745+9cfe05b5", "start_time": "2018-05-11 14:23:50.333198", "creation_event_id": 33260135, "start_ts": 1526048630.3332, "volume_id": 0, "creation_ts": 1526048630.3332, "name": "gimp", "task_id": 26895414, "volume_name": "DEFAULT", "release": "4.module_1745+9cfe05b5"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#482b1d4079659e3170cfe68702416958d5ce3279"}}, "creation_time": "2018-05-11 14:23:45.050288", "completion_time": "2018-05-11 14:54:17.089869", "package_id": 407, "build_id": 1081230, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#482b1d4079659e3170cfe68702416958d5ce3279", "epoch": 2, "version": "2.10.0", "completion_ts": 1526050457.08987, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.0-4.module_1745+22be10da", "start_time": "2018-05-11 14:23:45.050288", "creation_event_id": 33260132, "start_ts": 1526048625.05029, "volume_id": 0, "creation_ts": 1526048625.05029, "name": "gimp", "task_id": 26895364, "volume_name": "DEFAULT", "release": "4.module_1745+22be10da"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#e63109135bf370868704a0a7c4c1d36a11d6b375"}}, "creation_time": "2018-05-02 14:27:30.164249", "completion_time": "2018-05-02 21:21:35.300385", "package_id": 407, "build_id": 1078523, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#e63109135bf370868704a0a7c4c1d36a11d6b375", "epoch": 2, "version": "2.10.0", "completion_ts": 1525296095.30038, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.0-3.module_1720+d2fe4578", "start_time": "2018-05-02 14:27:30.164249", "creation_event_id": 33078650, "start_ts": 1525271250.16425, "volume_id": 0, "creation_ts": 1525271250.16425, "name": "gimp", "task_id": 26728144, "volume_name": "DEFAULT", "release": "3.module_1720+d2fe4578"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#e63109135bf370868704a0a7c4c1d36a11d6b375"}}, "creation_time": "2018-05-02 14:27:52.319035", "completion_time": "2018-05-02 21:01:16.094788", "package_id": 407, "build_id": 1078525, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#e63109135bf370868704a0a7c4c1d36a11d6b375", "epoch": 2, "version": "2.10.0", "completion_ts": 1525294876.09479, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.0-3.module_1720+f07dd188", "start_time": "2018-05-02 14:27:52.319035", "creation_event_id": 33078665, "start_ts": 1525271272.31904, "volume_id": 0, "creation_ts": 1525271272.31904, "name": "gimp", "task_id": 26728153, "volume_name": "DEFAULT", "release": "3.module_1720+f07dd188"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#34675e016d7b861f4c45a57174c2b7e8681baa1c"}}, "creation_time": "2018-05-02 13:42:06.481639", "completion_time": "2018-05-02 14:11:15.928356", "package_id": 407, "build_id": 1078497, "state": 4, "source": "git://pkgs.fedoraproject.org/rpms/gimp#34675e016d7b861f4c45a57174c2b7e8681baa1c", "epoch": 2, "version": "2.10.0", "completion_ts": 1525270275.92836, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.0-2.module_1718+c8f3ab49", "start_time": "2018-05-02 13:42:06.481639", "creation_event_id": 33077997, "start_ts": 1525268526.48164, "volume_id": 0, "creation_ts": 1525268526.48164, "name": "gimp", "task_id": 26727445, "volume_name": "DEFAULT", "release": "2.module_1718+c8f3ab49"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#5fcbb4ca6bd57bd451ccea4d0425732ecde269c9"}}, "creation_time": "2018-05-01 15:59:59.715889", "completion_time": "2018-05-01 16:34:07.868080", "package_id": 407, "build_id": 1078153, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#5fcbb4ca6bd57bd451ccea4d0425732ecde269c9", "epoch": 2, "version": "2.10.0", "completion_ts": 1525192447.86808, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.0-1.module_1714+a5a22867", "start_time": "2018-05-01 15:59:59.715889", "creation_event_id": 33054866, "start_ts": 1525190399.71589, "volume_id": 0, "creation_ts": 1525190399.71589, "name": "gimp", "task_id": 26705125, "volume_name": "DEFAULT", "release": "1.module_1714+a5a22867"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git://pkgs.fedoraproject.org/rpms/gimp?#5fcbb4ca6bd57bd451ccea4d0425732ecde269c9"}}, "creation_time": "2018-05-01 15:42:36.242031", "completion_time": "2018-05-01 16:21:07.119524", "package_id": 407, "build_id": 1078155, "state": 1, "source": "git://pkgs.fedoraproject.org/rpms/gimp#5fcbb4ca6bd57bd451ccea4d0425732ecde269c9", "epoch": 2, "version": "2.10.0", "completion_ts": 1525191667.11952, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.0-1.module_1714+14bf84bf", "start_time": "2018-05-01 15:42:36.242031", "creation_event_id": 33054576, "start_ts": 1525189356.24203, "volume_id": 0, "creation_ts": 1525189356.24203, "name": "gimp", "task_id": 26704875, "volume_name": "DEFAULT", "release": "1.module_1714+14bf84bf"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git?#5fcbb4ca6bd57bd451ccea4d0425732ecde269c9"}}, "creation_time": "2018-04-28 21:50:06.507552", "completion_time": "2018-04-28 22:18:49.615231", "package_id": 407, "build_id": 1077457, "state": 2, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#5fcbb4ca6bd57bd451ccea4d0425732ecde269c9", "epoch": 2, "version": "2.10.0", "completion_ts": 1524953929.61523, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.10.0-1.fc29", "start_time": "2018-04-28 21:50:06.507552", "creation_event_id": 32970792, "start_ts": 1524952206.50755, "volume_id": 0, "creation_ts": 1524952206.50755, "name": "gimp", "task_id": 26629425, "volume_name": "DEFAULT", "release": "1.fc29"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git?#282605dda71c225bc5fed37b54aab8e5f3e272c1"}}, "creation_time": "2018-03-09 07:43:13.653964", "completion_time": "2018-03-09 08:14:32.127551", "package_id": 407, "build_id": 1056120, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#282605dda71c225bc5fed37b54aab8e5f3e272c1", "epoch": 2, "version": "2.8.22", "completion_ts": 1520583272.12755, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-6.fc29", "start_time": "2018-03-09 07:43:13.653964", "creation_event_id": 31688905, "start_ts": 1520581393.65396, "volume_id": 6, "creation_ts": 1520581393.65396, "name": "gimp", "task_id": 25575067, "volume_name": "fedora_koji_archive05", "release": "6.fc29"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-10-19 07:45:03.786397", "completion_time": "2017-10-19 08:13:22.042952", "package_id": 407, "build_id": 986502, "state": 2, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1508400802.04295, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-2.fc28.3", "start_time": "2017-10-19 07:45:03.786397", "creation_event_id": 28011105, "start_ts": 1508399103.7864, "volume_id": 0, "creation_ts": 1508399103.7864, "name": "gimp", "task_id": 22542152, "volume_name": "DEFAULT", "release": "2.fc28.3"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git?#8010edd8adab9db9b4d70bf5785b25c03edb87b7"}}, "creation_time": "2018-02-20 16:28:11.499828", "completion_time": "2018-02-20 17:03:37.870652", "package_id": 407, "build_id": 1047385, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#8010edd8adab9db9b4d70bf5785b25c03edb87b7", "epoch": 2, "version": "2.8.22", "completion_ts": 1519146217.87065, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.22-5.fc28", "start_time": "2018-02-20 16:28:11.499828", "creation_event_id": 31262598, "start_ts": 1519144091.49983, "volume_id": 6, "creation_ts": 1519144091.49983, "name": "gimp", "task_id": 25191677, "volume_name": "fedora_koji_archive05", "release": "5.fc28"}, {"package_name": "gimp", "extra": null, "creation_time": "2018-01-17 09:43:05.896975", "completion_time": "2018-01-17 10:10:18.044787", "package_id": 407, "build_id": 1017816, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1516183818.04479, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-4.fc28", "start_time": "2018-01-17 09:43:05.896975", "creation_event_id": 30052239, "start_ts": 1516182185.89698, "volume_id": 3, "creation_ts": 1516182185.89698, "name": "gimp", "task_id": 24240367, "volume_name": "fedora_koji_archive02", "release": "4.fc28"}, {"package_name": "gimp", "extra": null, "creation_time": "2018-01-05 08:43:11.355517", "completion_time": "2018-01-05 09:10:47.105024", "package_id": 407, "build_id": 1013509, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1515143447.10502, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-3.fc26", "start_time": "2018-01-05 08:43:11.355517", "creation_event_id": 29791752, "start_ts": 1515141791.35552, "volume_id": 2, "creation_ts": 1515141791.35552, "name": "gimp", "task_id": 24011110, "volume_name": "fedora_koji_archive01", "release": "3.fc26"}, {"package_name": "gimp", "extra": null, "creation_time": "2018-01-04 13:33:03.088380", "completion_time": "2018-01-04 13:58:48.696898", "package_id": 407, "build_id": 1013287, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1515074328.6969, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-3.fc27", "start_time": "2018-01-04 13:33:03.088380", "creation_event_id": 29772758, "start_ts": 1515072783.08838, "volume_id": 3, "creation_ts": 1515072783.08838, "name": "gimp", "task_id": 23994132, "volume_name": "fedora_koji_archive02", "release": "3.fc27"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-10-19 09:59:41.020133", "completion_time": "2017-10-19 10:34:00.909876", "package_id": 407, "build_id": 986525, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1508409240.90988, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-2.fc26.3", "start_time": "2017-10-19 09:59:41.020133", "creation_event_id": 28014093, "start_ts": 1508407181.02013, "volume_id": 2, "creation_ts": 1508407181.02013, "name": "gimp", "task_id": 22544290, "volume_name": "fedora_koji_archive01", "release": "2.fc26.3"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-05-10 08:41:27.359622", "completion_time": "2017-05-10 09:17:23.086315", "package_id": 407, "build_id": 888579, "state": 2, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1494407843.08631, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.22-1.fc24", "start_time": "2017-05-10 08:41:27.359622", "creation_event_id": 23550436, "start_ts": 1494405687.35962, "volume_id": 0, "creation_ts": 1494405687.35962, "name": "gimp", "task_id": 19484231, "volume_name": "DEFAULT", "release": "1.fc24"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-05-10 08:41:27.131773", "completion_time": "2017-05-10 09:14:10.265520", "package_id": 407, "build_id": 888578, "state": 2, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1494407650.26552, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.22-1.fc26", "start_time": "2017-05-10 08:41:27.131773", "creation_event_id": 23550435, "start_ts": 1494405687.13177, "volume_id": 0, "creation_ts": 1494405687.13177, "name": "gimp", "task_id": 19484227, "volume_name": "DEFAULT", "release": "1.fc26"}, {"package_name": "gimp", "extra": null, "creation_time": "2015-07-17 15:29:32.736356", "completion_time": "2015-07-17 16:11:20.388676", "package_id": 407, "build_id": 669655, "state": 2, "source": null, "epoch": 2, "version": "2.8.14", "completion_ts": 1437149480.38868, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.14-3.fc24", "start_time": null, "creation_event_id": 11590152, "start_ts": null, "volume_id": 0, "creation_ts": 1437146972.73636, "name": "gimp", "task_id": 10392261, "volume_name": "DEFAULT", "release": "3.fc24"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-05-10 12:22:43.471240", "completion_time": "2017-05-10 12:52:11.939721", "package_id": 407, "build_id": 888935, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1494420731.93972, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.22-2.fc27", "start_time": "2017-05-10 12:22:43.471240", "creation_event_id": 23556091, "start_ts": 1494418963.47124, "volume_id": 3, "creation_ts": 1494418963.47124, "name": "gimp", "task_id": 19487477, "volume_name": "fedora_koji_archive02", "release": "2.fc27"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-05-10 08:40:30.662197", "completion_time": "2017-05-10 09:43:04.732572", "package_id": 407, "build_id": 888576, "state": 1, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1494409384.73257, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.22-1.fc27", "start_time": "2017-05-10 08:40:30.662197", "creation_event_id": 23550420, "start_ts": 1494405630.6622, "volume_id": 3, "creation_ts": 1494405630.6622, "name": "gimp", "task_id": 19484193, "volume_name": "fedora_koji_archive02", "release": "1.fc27"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-05-10 08:41:02.051273", "completion_time": "2017-05-10 09:08:58.209452", "package_id": 407, "build_id": 888577, "state": 2, "source": null, "epoch": 2, "version": "2.8.22", "completion_ts": 1494407338.20945, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.22-1.fc25", "start_time": "2017-05-10 08:41:02.051273", "creation_event_id": 23550429, "start_ts": 1494405662.05127, "volume_id": 0, "creation_ts": 1494405662.05127, "name": "gimp", "task_id": 19484229, "volume_name": "DEFAULT", "release": "1.fc25"}, {"package_name": "gimp", "extra": null, "creation_time": "2015-07-16 13:17:05.251073", "completion_time": "2015-07-16 13:58:59.227980", "package_id": 407, "build_id": 669063, "state": 2, "source": null, "epoch": 2, "version": "2.8.14", "completion_ts": 1437055139.22798, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.14-2.fc24", "start_time": null, "creation_event_id": 11575627, "start_ts": null, "volume_id": 0, "creation_ts": 1437052625.25107, "name": "gimp", "task_id": 10379471, "volume_name": "DEFAULT", "release": "2.fc24"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-02-02 09:17:49.761561", "completion_time": "2017-02-02 09:55:31.008652", "package_id": 407, "build_id": 837870, "state": 1, "source": null, "epoch": 2, "version": "2.8.20", "completion_ts": 1486029331.00865, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.20-1.fc25", "start_time": "2017-02-02 09:17:49.761561", "creation_event_id": 20796233, "start_ts": 1486027069.76156, "volume_id": 2, "creation_ts": 1486027069.76156, "name": "gimp", "task_id": 17546914, "volume_name": "fedora_koji_archive01", "release": "1.fc25"}, {"package_name": "gimp", "extra": null, "creation_time": "2017-02-02 07:14:41.819182", "completion_time": "2017-02-02 08:02:41.887088", "package_id": 407, "build_id": 837855, "state": 1, "source": null, "epoch": 2, "version": "2.8.20", "completion_ts": 1486022561.88709, "owner_id": 3580, "owner_name": "jridky", "nvr": "gimp-2.8.20-1.fc26", "start_time": "2017-02-02 07:14:41.819182", "creation_event_id": 20795919, "start_ts": 1486019681.81918, "volume_id": 2, "creation_ts": 1486019681.81918, "name": "gimp", "task_id": 17546645, "volume_name": "fedora_koji_archive01", "release": "1.fc26"}, {"package_name": "gimp", "extra": null, "creation_time": "2016-02-04 00:16:10.543529", "completion_time": "2016-02-04 01:19:48.682712", "package_id": 407, "build_id": 719207, "state": 1, "source": null, "epoch": 2, "version": "2.8.16", "completion_ts": 1454548788.68271, "owner_id": 3445, "owner_name": "releng", "nvr": "gimp-2.8.16-1.fc24.1", "start_time": "2016-02-04 00:16:10.543529", "creation_event_id": 14527828, "start_ts": 1454544970.54353, "volume_id": 2, "creation_ts": 1454544970.54353, "name": "gimp", "task_id": 12818707, "volume_name": "fedora_koji_archive01", "release": "1.fc24.1"}, {"package_name": "gimp", "extra": null, "creation_time": "2015-11-22 18:40:25.590845", "completion_time": "2015-11-22 19:25:45.860991", "package_id": 407, "build_id": 700871, "state": 1, "source": null, "epoch": 2, "version": "2.8.16", "completion_ts": 1448220345.86099, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.16-1.fc24", "start_time": null, "creation_event_id": 13487101, "start_ts": null, "volume_id": 6, "creation_ts": 1448217625.59085, "name": "gimp", "task_id": 11948477, "volume_name": "fedora_koji_archive05", "release": "1.fc24"}, {"package_name": "gimp", "extra": null, "creation_time": "2015-11-22 18:36:44.335365", "completion_time": "2015-11-22 19:21:31.967720", "package_id": 407, "build_id": 700869, "state": 1, "source": null, "epoch": 2, "version": "2.8.16", "completion_ts": 1448220091.96772, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.16-1.fc23", "start_time": null, "creation_event_id": 13487087, "start_ts": null, "volume_id": 2, "creation_ts": 1448217404.33537, "name": "gimp", "task_id": 11948479, "volume_name": "fedora_koji_archive01", "release": "1.fc23"}, {"package_name": "gimp", "extra": null, "creation_time": "2015-11-22 18:38:31.448897", "completion_time": "2015-11-22 19:20:56.689806", "package_id": 407, "build_id": 700870, "state": 1, "source": null, "epoch": 2, "version": "2.8.16", "completion_ts": 1448220056.68981, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.16-1.fc21", "start_time": null, "creation_event_id": 13487094, "start_ts": null, "volume_id": 2, "creation_ts": 1448217511.4489, "name": "gimp", "task_id": 11948483, "volume_name": "fedora_koji_archive01", "release": "1.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2015-07-16 13:17:30.333570", "completion_time": "2015-07-16 14:14:56.416474", "package_id": 407, "build_id": 668748, "state": 2, "source": null, "epoch": 2, "version": "2.8.14", "completion_ts": 1437056096.41647, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.14-2.fc21", "start_time": null, "creation_event_id": 11575638, "start_ts": null, "volume_id": 0, "creation_ts": 1437052650.33357, "name": "gimp", "task_id": 10379482, "volume_name": "DEFAULT", "release": "2.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2015-07-17 15:32:11.572158", "completion_time": "2015-07-17 16:14:29.975884", "package_id": 407, "build_id": 669662, "state": 1, "source": null, "epoch": 2, "version": "2.8.14", "completion_ts": 1437149669.97588, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.14-3.fc23", "start_time": null, "creation_event_id": 11590483, "start_ts": null, "volume_id": 2, "creation_ts": 1437147131.57216, "name": "gimp", "task_id": 10392263, "volume_name": "fedora_koji_archive01", "release": "3.fc23"}, {"package_name": "gimp", "extra": null, "creation_time": "2015-07-16 13:16:58.028142", "completion_time": "2015-07-16 13:59:02.424019", "package_id": 407, "build_id": 668744, "state": 2, "source": null, "epoch": 2, "version": "2.8.14", "completion_ts": 1437055142.42402, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.14-2.fc23", "start_time": null, "creation_event_id": 11575625, "start_ts": null, "volume_id": 0, "creation_ts": 1437052618.02814, "name": "gimp", "task_id": 10379477, "volume_name": "DEFAULT", "release": "2.fc23"}, {"package_name": "gimp", "extra": null, "creation_time": "2015-07-16 13:17:03.265947", "completion_time": "2015-07-16 13:58:45.368469", "package_id": 407, "build_id": 668746, "state": 2, "source": null, "epoch": 2, "version": "2.8.14", "completion_ts": 1437055125.36847, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.14-2.fc22", "start_time": null, "creation_event_id": 11575626, "start_ts": null, "volume_id": 0, "creation_ts": 1437052623.26595, "name": "gimp", "task_id": 10379480, "volume_name": "DEFAULT", "release": "2.fc22"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-29 10:19:45.615156", "completion_time": "2013-11-29 11:02:45.507012", "package_id": 407, "build_id": 481704, "state": 2, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1385722965.50701, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-1.fc21", "start_time": null, "creation_event_id": 6955288, "start_ts": null, "volume_id": 0, "creation_ts": 1385720385.61516, "name": "gimp", "task_id": 6238782, "volume_name": "DEFAULT", "release": "1.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-09-19 15:54:52.949982", "completion_time": "2013-09-19 16:39:02.464147", "package_id": 407, "build_id": 465727, "state": 2, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1379608742.46415, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.6-5.fc21", "start_time": null, "creation_event_id": 6678122, "start_ts": null, "volume_id": 0, "creation_ts": 1379606092.94998, "name": "gimp", "task_id": 5956257, "volume_name": "DEFAULT", "release": "5.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-06-25 14:32:47.082124", "completion_time": "2012-06-25 14:47:44.697211", "package_id": 407, "build_id": 327475, "state": 1, "source": null, "epoch": 2, "version": "2.8.0", "completion_ts": 1340635664.69721, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.0-2.fc18", "start_time": null, "creation_event_id": 4827235, "start_ts": null, "volume_id": 6, "creation_ts": 1340634767.08212, "name": "gimp", "task_id": 4194311, "volume_name": "fedora_koji_archive05", "release": "2.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-03-27 10:58:45.372861", "completion_time": "2012-03-27 11:12:41.720193", "package_id": 407, "build_id": 309867, "state": 2, "source": null, "epoch": 2, "version": "2.7.5", "completion_ts": 1332846761.72019, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.7.5-2.fc18", "start_time": null, "creation_event_id": 4554865, "start_ts": null, "volume_id": 0, "creation_ts": 1332845925.37286, "name": "gimp", "task_id": 3936022, "volume_name": "DEFAULT", "release": "2.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-11-17 15:42:17.927542", "completion_time": "2011-11-17 15:53:25.942513", "package_id": 407, "build_id": 272680, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1321545205.94251, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-25.fc17", "start_time": null, "creation_event_id": 4139568, "start_ts": null, "volume_id": 0, "creation_ts": 1321544537.92754, "name": "gimp", "task_id": 3521717, "volume_name": "DEFAULT", "release": "25.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-08-24 10:35:15.669357", "completion_time": "2012-08-24 11:01:04.831315", "package_id": 407, "build_id": 350219, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1345806064.83132, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-1.fc19", "start_time": null, "creation_event_id": 5072779, "start_ts": null, "volume_id": 0, "creation_ts": 1345804515.66936, "name": "gimp", "task_id": 4419367, "volume_name": "DEFAULT", "release": "1.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-08-24 10:35:39.897728", "completion_time": "2012-08-24 11:01:24.822176", "package_id": 407, "build_id": 350220, "state": 1, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1345806084.82218, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-1.fc18", "start_time": null, "creation_event_id": 5072783, "start_ts": null, "volume_id": 6, "creation_ts": 1345804539.89773, "name": "gimp", "task_id": 4419371, "volume_name": "fedora_koji_archive05", "release": "1.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-08-24 10:37:44.938520", "completion_time": "2012-08-24 10:53:29.469355", "package_id": 407, "build_id": 350221, "state": 1, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1345805609.46936, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-1.fc17", "start_time": null, "creation_event_id": 5072791, "start_ts": null, "volume_id": 1, "creation_ts": 1345804664.93852, "name": "gimp", "task_id": 4419375, "volume_name": "fedora_koji_archive00", "release": "1.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-08-20 12:34:06.096737", "completion_time": "2012-08-20 12:52:29.027053", "package_id": 407, "build_id": 349261, "state": 2, "source": null, "epoch": 2, "version": "2.8.0", "completion_ts": 1345467149.02705, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.0-3.fc19", "start_time": null, "creation_event_id": 5060279, "start_ts": null, "volume_id": 0, "creation_ts": 1345466046.09674, "name": "gimp", "task_id": 4406016, "volume_name": "DEFAULT", "release": "3.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-08-20 12:34:23.986764", "completion_time": "2012-08-20 12:54:46.746652", "package_id": 407, "build_id": 349262, "state": 2, "source": null, "epoch": 2, "version": "2.8.0", "completion_ts": 1345467286.74665, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.0-3.fc18", "start_time": null, "creation_event_id": 5060283, "start_ts": null, "volume_id": 0, "creation_ts": 1345466063.98676, "name": "gimp", "task_id": 4406022, "volume_name": "DEFAULT", "release": "3.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-08-20 12:40:33.387722", "completion_time": "2012-08-20 12:58:50.836443", "package_id": 407, "build_id": 349265, "state": 2, "source": null, "epoch": 2, "version": "2.8.0", "completion_ts": 1345467530.83644, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.0-3.fc17", "start_time": null, "creation_event_id": 5060305, "start_ts": null, "volume_id": 0, "creation_ts": 1345466433.38772, "name": "gimp", "task_id": 4406039, "volume_name": "DEFAULT", "release": "3.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-08-20 13:38:51.760956", "completion_time": "2012-08-20 13:52:40.582961", "package_id": 407, "build_id": 349282, "state": 1, "source": null, "epoch": 2, "version": "2.6.12", "completion_ts": 1345470760.58296, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.12-2.fc16", "start_time": null, "creation_event_id": 5060477, "start_ts": null, "volume_id": 1, "creation_ts": 1345469931.76096, "name": "gimp", "task_id": 4406218, "volume_name": "fedora_koji_archive00", "release": "2.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-09-30 09:18:52.054969", "completion_time": "2011-09-30 09:32:35.767688", "package_id": 407, "build_id": 266135, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1317375155.76769, "owner_id": 603, "owner_name": "mkasik", "nvr": "gimp-2.6.11-23.fc17", "start_time": null, "creation_event_id": 4019677, "start_ts": null, "volume_id": 0, "creation_ts": 1317374332.05497, "name": "gimp", "task_id": 3390760, "volume_name": "DEFAULT", "release": "23.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-10-20 13:30:25.032865", "completion_time": "2012-10-20 13:52:50.320126", "package_id": 407, "build_id": 361328, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1350741170.32013, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-2.fc19", "start_time": null, "creation_event_id": 5290566, "start_ts": null, "volume_id": 0, "creation_ts": 1350739825.03287, "name": "gimp", "task_id": 4610859, "volume_name": "DEFAULT", "release": "2.fc19"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp.git#37a1cc96080d1b0486526e5dfa9ba8b5a9a9249b"}}, "creation_time": "2019-07-25 06:12:59.874151", "completion_time": "2019-07-25 16:10:53.546216", "package_id": 407, "build_id": 1324602, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp.git#37a1cc96080d1b0486526e5dfa9ba8b5a9a9249b", "epoch": 2, "version": "2.10.12", "completion_ts": 1564071053.54622, "owner_id": 3445, "owner_name": "releng", "nvr": "gimp-2.10.12-1.fc31.1", "start_time": "2019-07-25 06:12:59.874151", "creation_event_id": 44806875, "start_ts": 1564035179.87415, "volume_id": 0, "creation_ts": 1564035179.87415, "name": "gimp", "task_id": 36491990, "volume_name": "DEFAULT", "release": "1.fc31.1"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#7348650abba1129a32f6550ca4dd2feda9876e6b"}}, "creation_time": "2019-06-14 22:10:55.260648", "completion_time": "2019-06-14 22:47:50.891241", "package_id": 407, "build_id": 1288008, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#7348650abba1129a32f6550ca4dd2feda9876e6b", "epoch": 2, "version": "2.10.12", "completion_ts": 1560552470.89124, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-1.module_f29+4716+3982d625", "start_time": "2019-06-14 22:10:55.260648", "creation_event_id": 43672104, "start_ts": 1560550255.26065, "volume_id": 0, "creation_ts": 1560550255.26065, "name": "gimp", "task_id": 35546569, "volume_name": "DEFAULT", "release": "1.module_f29+4716+3982d625"}, {"package_name": "gimp", "extra": {"source": {"original_url": "git+https://src.fedoraproject.org/rpms/gimp?#7348650abba1129a32f6550ca4dd2feda9876e6b"}}, "creation_time": "2019-06-14 22:03:02.751373", "completion_time": "2019-06-14 22:37:43.337660", "package_id": 407, "build_id": 1288006, "state": 1, "source": "git+https://src.fedoraproject.org/rpms/gimp#7348650abba1129a32f6550ca4dd2feda9876e6b", "epoch": 2, "version": "2.10.12", "completion_ts": 1560551863.33766, "owner_id": 3819, "owner_name": "mbs/mbs.fedoraproject.org", "nvr": "gimp-2.10.12-1.module_f31+4714+6af7bfbf", "start_time": "2019-06-14 22:03:02.751373", "creation_event_id": 43672072, "start_ts": 1560549782.75137, "volume_id": 0, "creation_ts": 1560549782.75137, "name": "gimp", "task_id": 35546533, "volume_name": "DEFAULT", "release": "1.module_f31+4714+6af7bfbf"}, {"package_name": "gimp", "extra": null, "creation_time": "2016-07-15 22:50:53.016528", "completion_time": "2016-07-15 23:29:59.765317", "package_id": 407, "build_id": 780567, "state": 1, "source": null, "epoch": 2, "version": "2.8.18", "completion_ts": 1468625399.76532, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.18-1.fc25", "start_time": "2016-07-15 22:50:53.016528", "creation_event_id": 17215601, "start_ts": 1468623053.01653, "volume_id": 2, "creation_ts": 1468623053.01653, "name": "gimp", "task_id": 14910952, "volume_name": "fedora_koji_archive01", "release": "1.fc25"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-14 16:37:21.027036", "completion_time": "2012-11-14 17:00:18.151979", "package_id": 407, "build_id": 366497, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1352912418.15198, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-4.fc18", "start_time": null, "creation_event_id": 5360480, "start_ts": null, "volume_id": 0, "creation_ts": 1352911041.02704, "name": "gimp", "task_id": 4688073, "volume_name": "DEFAULT", "release": "4.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-14 16:37:42.136713", "completion_time": "2012-11-14 17:02:55.127725", "package_id": 407, "build_id": 366499, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1352912575.12772, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-4.fc19", "start_time": null, "creation_event_id": 5360487, "start_ts": null, "volume_id": 0, "creation_ts": 1352911062.13671, "name": "gimp", "task_id": 4688071, "volume_name": "DEFAULT", "release": "4.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-15 08:31:16.623638", "completion_time": "2012-11-15 08:51:47.067759", "package_id": 407, "build_id": 366624, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1352969507.06776, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-4.fc17", "start_time": null, "creation_event_id": 5362561, "start_ts": null, "volume_id": 0, "creation_ts": 1352968276.62364, "name": "gimp", "task_id": 4690914, "volume_name": "DEFAULT", "release": "4.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-15 11:45:38.873099", "completion_time": "2012-11-15 12:08:06.302534", "package_id": 407, "build_id": 366662, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1352981286.30253, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-5.fc17", "start_time": null, "creation_event_id": 5363049, "start_ts": null, "volume_id": 0, "creation_ts": 1352979938.8731, "name": "gimp", "task_id": 4691400, "volume_name": "DEFAULT", "release": "5.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-19 17:40:42.426703", "completion_time": "2012-11-19 18:03:40.255871", "package_id": 407, "build_id": 367495, "state": 1, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1353348220.25587, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-6.fc17", "start_time": null, "creation_event_id": 5375311, "start_ts": null, "volume_id": 1, "creation_ts": 1353346842.4267, "name": "gimp", "task_id": 4705303, "volume_name": "fedora_koji_archive00", "release": "6.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-15 11:45:59.122150", "completion_time": "2012-11-15 12:08:06.264974", "package_id": 407, "build_id": 366663, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1352981286.26497, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-5.fc19", "start_time": null, "creation_event_id": 5363054, "start_ts": null, "volume_id": 0, "creation_ts": 1352979959.12215, "name": "gimp", "task_id": 4691396, "volume_name": "DEFAULT", "release": "5.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-15 11:46:40.125589", "completion_time": "2012-11-15 12:08:52.036416", "package_id": 407, "build_id": 366664, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1352981332.03642, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-5.fc18", "start_time": null, "creation_event_id": 5363059, "start_ts": null, "volume_id": 0, "creation_ts": 1352980000.12559, "name": "gimp", "task_id": 4691398, "volume_name": "DEFAULT", "release": "5.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-19 17:42:03.875374", "completion_time": "2012-11-19 18:04:29.920250", "package_id": 407, "build_id": 367497, "state": 1, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1353348269.92025, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-6.fc18", "start_time": null, "creation_event_id": 5375318, "start_ts": null, "volume_id": 1, "creation_ts": 1353346923.87537, "name": "gimp", "task_id": 4705300, "volume_name": "fedora_koji_archive00", "release": "6.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-13 12:28:08.401561", "completion_time": "2012-11-13 12:48:51.237480", "package_id": 407, "build_id": 366124, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1352810931.23748, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-2.fc18", "start_time": null, "creation_event_id": 5355693, "start_ts": null, "volume_id": 0, "creation_ts": 1352809688.40156, "name": "gimp", "task_id": 4682771, "volume_name": "DEFAULT", "release": "2.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-13 16:54:23.552098", "completion_time": "2012-11-13 17:24:47.954332", "package_id": 407, "build_id": 366214, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1352827487.95433, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-3.fc18", "start_time": null, "creation_event_id": 5356806, "start_ts": null, "volume_id": 0, "creation_ts": 1352825663.5521, "name": "gimp", "task_id": 4683928, "volume_name": "DEFAULT", "release": "3.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-13 16:56:45.728257", "completion_time": "2012-11-13 17:26:29.332398", "package_id": 407, "build_id": 366216, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1352827589.3324, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-3.fc17", "start_time": null, "creation_event_id": 5356819, "start_ts": null, "volume_id": 0, "creation_ts": 1352825805.72826, "name": "gimp", "task_id": 4683940, "volume_name": "DEFAULT", "release": "3.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-11-13 16:56:47.016285", "completion_time": "2012-11-13 17:17:23.807463", "package_id": 407, "build_id": 366217, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1352827043.80746, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-3.fc19", "start_time": null, "creation_event_id": 5356820, "start_ts": null, "volume_id": 0, "creation_ts": 1352825807.01628, "name": "gimp", "task_id": 4683923, "volume_name": "DEFAULT", "release": "3.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-01-28 13:41:41.854801", "completion_time": "2013-01-28 14:03:13.756012", "package_id": 407, "build_id": 380933, "state": 2, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1359381793.75601, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.2-7.fc19", "start_time": null, "creation_event_id": 5591109, "start_ts": null, "volume_id": 0, "creation_ts": 1359380501.8548, "name": "gimp", "task_id": 4908636, "volume_name": "DEFAULT", "release": "7.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-01-18 17:10:49.533788", "completion_time": "2013-01-18 17:48:54.968251", "package_id": 407, "build_id": 379104, "state": 1, "source": null, "epoch": 2, "version": "2.8.2", "completion_ts": 1358531334.96825, "owner_id": 44, "owner_name": "atkac", "nvr": "gimp-2.8.2-6.fc19.1", "start_time": null, "creation_event_id": 5565033, "start_ts": null, "volume_id": 6, "creation_ts": 1358529049.53379, "name": "gimp", "task_id": 4881841, "volume_name": "fedora_koji_archive05", "release": "6.fc19.1"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-03-06 15:01:50.573284", "completion_time": "2013-03-06 15:24:02.378087", "package_id": 407, "build_id": 400315, "state": 1, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1362583442.37809, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-2.fc19", "start_time": null, "creation_event_id": 5797499, "start_ts": null, "volume_id": 6, "creation_ts": 1362582110.57328, "name": "gimp", "task_id": 5084779, "volume_name": "fedora_koji_archive05", "release": "2.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-04-20 12:47:12.096585", "completion_time": "2013-04-20 13:07:06.895034", "package_id": 407, "build_id": 413154, "state": 2, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1366463226.89503, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-3.fc20", "start_time": null, "creation_event_id": 5976379, "start_ts": null, "volume_id": 0, "creation_ts": 1366462032.09659, "name": "gimp", "task_id": 5281948, "volume_name": "DEFAULT", "release": "3.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-04-20 12:47:40.481282", "completion_time": "2013-04-20 13:06:21.697942", "package_id": 407, "build_id": 413157, "state": 1, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1366463181.69794, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-3.fc19", "start_time": null, "creation_event_id": 5976388, "start_ts": null, "volume_id": 6, "creation_ts": 1366462060.48128, "name": "gimp", "task_id": 5281950, "volume_name": "fedora_koji_archive05", "release": "3.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-04-20 12:46:44.240466", "completion_time": "2013-04-20 13:09:38.338390", "package_id": 407, "build_id": 413158, "state": 1, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1366463378.33839, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-3.fc18", "start_time": null, "creation_event_id": 5976372, "start_ts": null, "volume_id": 1, "creation_ts": 1366462004.24047, "name": "gimp", "task_id": 5281952, "volume_name": "fedora_koji_archive00", "release": "3.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-06-04 09:37:24.019771", "completion_time": "2013-06-04 09:52:33.615181", "package_id": 407, "build_id": 424471, "state": 1, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1370339553.61518, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-5.fc17", "start_time": null, "creation_event_id": 6136331, "start_ts": null, "volume_id": 1, "creation_ts": 1370338644.01977, "name": "gimp", "task_id": 5464212, "volume_name": "fedora_koji_archive00", "release": "5.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-06-04 09:37:40.179423", "completion_time": "2013-06-04 09:53:59.462341", "package_id": 407, "build_id": 424472, "state": 2, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1370339639.46234, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-5.fc20", "start_time": null, "creation_event_id": 6136335, "start_ts": null, "volume_id": 0, "creation_ts": 1370338660.17942, "name": "gimp", "task_id": 5464210, "volume_name": "DEFAULT", "release": "5.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-06-04 09:38:31.100134", "completion_time": "2013-06-04 09:54:27.783236", "package_id": 407, "build_id": 424473, "state": 1, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1370339667.78324, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-5.fc19", "start_time": null, "creation_event_id": 6136342, "start_ts": null, "volume_id": 1, "creation_ts": 1370338711.10013, "name": "gimp", "task_id": 5464219, "volume_name": "fedora_koji_archive00", "release": "5.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-06-04 09:38:31.112414", "completion_time": "2013-06-04 09:57:58.308678", "package_id": 407, "build_id": 424474, "state": 1, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1370339878.30868, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-5.fc18", "start_time": null, "creation_event_id": 6136343, "start_ts": null, "volume_id": 1, "creation_ts": 1370338711.11241, "name": "gimp", "task_id": 5464215, "volume_name": "fedora_koji_archive00", "release": "5.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-05-29 15:08:21.867022", "completion_time": "2013-05-29 15:29:24.512120", "package_id": 407, "build_id": 422809, "state": 2, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1369841364.51212, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-4.fc18", "start_time": null, "creation_event_id": 6114022, "start_ts": null, "volume_id": 0, "creation_ts": 1369840101.86702, "name": "gimp", "task_id": 5438459, "volume_name": "DEFAULT", "release": "4.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-05-29 15:07:29.009077", "completion_time": "2013-05-29 15:28:38.362107", "package_id": 407, "build_id": 422807, "state": 2, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1369841318.36211, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-4.fc19", "start_time": null, "creation_event_id": 6114008, "start_ts": null, "volume_id": 0, "creation_ts": 1369840049.00908, "name": "gimp", "task_id": 5438455, "volume_name": "DEFAULT", "release": "4.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-05-29 15:08:00.184864", "completion_time": "2013-05-29 15:29:24.500279", "package_id": 407, "build_id": 422808, "state": 2, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1369841364.50028, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-4.fc20", "start_time": null, "creation_event_id": 6114017, "start_ts": null, "volume_id": 0, "creation_ts": 1369840080.18486, "name": "gimp", "task_id": 5438452, "volume_name": "DEFAULT", "release": "4.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-09-18 15:14:08.978910", "completion_time": "2013-09-18 16:05:12.557156", "package_id": 407, "build_id": 465440, "state": 1, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1379520312.55716, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.6-4.fc20", "start_time": null, "creation_event_id": 6673326, "start_ts": null, "volume_id": 1, "creation_ts": 1379517248.97891, "name": "gimp", "task_id": 5951174, "volume_name": "fedora_koji_archive00", "release": "4.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-09-18 15:01:17.420156", "completion_time": "2013-09-18 15:44:48.888354", "package_id": 407, "build_id": 465431, "state": 2, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1379519088.88835, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.6-4.fc21", "start_time": null, "creation_event_id": 6673234, "start_ts": null, "volume_id": 0, "creation_ts": 1379516477.42016, "name": "gimp", "task_id": 5951100, "volume_name": "DEFAULT", "release": "4.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-06-23 15:01:15.400449", "completion_time": "2013-06-23 15:16:20.845457", "package_id": 407, "build_id": 428855, "state": 2, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1372000580.84546, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.6-1.fc20", "start_time": null, "creation_event_id": 6197243, "start_ts": null, "volume_id": 0, "creation_ts": 1371999675.40045, "name": "gimp", "task_id": 5533175, "volume_name": "DEFAULT", "release": "1.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-06-23 15:01:26.228710", "completion_time": "2013-06-23 15:15:57.007509", "package_id": 407, "build_id": 428856, "state": 1, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1372000557.00751, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.6-1.fc18", "start_time": null, "creation_event_id": 6197248, "start_ts": null, "volume_id": 1, "creation_ts": 1371999686.22871, "name": "gimp", "task_id": 5533179, "volume_name": "fedora_koji_archive00", "release": "1.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-06-23 15:01:30.912435", "completion_time": "2013-06-23 15:19:15.916263", "package_id": 407, "build_id": 428857, "state": 1, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1372000755.91626, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.6-1.fc19", "start_time": null, "creation_event_id": 6197249, "start_ts": null, "volume_id": 1, "creation_ts": 1371999690.91244, "name": "gimp", "task_id": 5533177, "volume_name": "fedora_koji_archive00", "release": "1.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-06-23 15:02:43.345548", "completion_time": "2013-06-23 15:19:49.250324", "package_id": 407, "build_id": 428858, "state": 1, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1372000789.25032, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.6-1.fc17", "start_time": null, "creation_event_id": 6197255, "start_ts": null, "volume_id": 1, "creation_ts": 1371999763.34555, "name": "gimp", "task_id": 5533181, "volume_name": "fedora_koji_archive00", "release": "1.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-07-08 10:03:46.399500", "completion_time": "2013-07-08 10:18:47.079637", "package_id": 407, "build_id": 432147, "state": 1, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1373278727.07964, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.6-3.fc19", "start_time": null, "creation_event_id": 6243071, "start_ts": null, "volume_id": 1, "creation_ts": 1373277826.3995, "name": "gimp", "task_id": 5584273, "volume_name": "fedora_koji_archive00", "release": "3.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-07-08 10:03:50.740962", "completion_time": "2013-07-08 10:23:13.713911", "package_id": 407, "build_id": 432148, "state": 1, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1373278993.71391, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.6-3.fc18", "start_time": null, "creation_event_id": 6243072, "start_ts": null, "volume_id": 1, "creation_ts": 1373277830.74096, "name": "gimp", "task_id": 5584275, "volume_name": "fedora_koji_archive00", "release": "3.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-07-08 10:03:57.922020", "completion_time": "2013-07-08 10:20:47.665311", "package_id": 407, "build_id": 432149, "state": 1, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1373278847.66531, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.6-3.fc20", "start_time": null, "creation_event_id": 6243076, "start_ts": null, "volume_id": 6, "creation_ts": 1373277837.92202, "name": "gimp", "task_id": 5584271, "volume_name": "fedora_koji_archive05", "release": "3.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-02-06 09:56:32.873884", "completion_time": "2013-02-06 10:16:34.835583", "package_id": 407, "build_id": 382455, "state": 1, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1360145794.83558, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-1.fc18", "start_time": null, "creation_event_id": 5623051, "start_ts": null, "volume_id": 1, "creation_ts": 1360144592.87388, "name": "gimp", "task_id": 4932324, "volume_name": "fedora_koji_archive00", "release": "1.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-02-06 09:59:23.883054", "completion_time": "2013-02-06 10:26:02.815609", "package_id": 407, "build_id": 382457, "state": 1, "source": null, "epoch": 2, "version": "2.8.4", "completion_ts": 1360146362.81561, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.4-1.fc19", "start_time": null, "creation_event_id": 5623271, "start_ts": null, "volume_id": 6, "creation_ts": 1360144763.88305, "name": "gimp", "task_id": 4932320, "volume_name": "fedora_koji_archive05", "release": "1.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-09-19 15:53:37.486940", "completion_time": "2013-09-19 16:36:44.305658", "package_id": 407, "build_id": 465726, "state": 2, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1379608604.30566, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.6-5.fc20", "start_time": null, "creation_event_id": 6678112, "start_ts": null, "volume_id": 0, "creation_ts": 1379606017.48694, "name": "gimp", "task_id": 5956262, "volume_name": "DEFAULT", "release": "5.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-04 12:51:45.580847", "completion_time": "2013-11-04 13:36:03.205497", "package_id": 407, "build_id": 476086, "state": 1, "source": null, "epoch": 2, "version": "2.8.8", "completion_ts": 1383572163.2055, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.8-1.fc20", "start_time": null, "creation_event_id": 6854175, "start_ts": null, "volume_id": 1, "creation_ts": 1383569505.58085, "name": "gimp", "task_id": 6135534, "volume_name": "fedora_koji_archive00", "release": "1.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-04 12:52:01.316454", "completion_time": "2013-11-04 13:10:32.946861", "package_id": 407, "build_id": 476087, "state": 1, "source": null, "epoch": 2, "version": "2.8.8", "completion_ts": 1383570632.94686, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.8-1.fc19", "start_time": null, "creation_event_id": 6854181, "start_ts": null, "volume_id": 1, "creation_ts": 1383569521.31645, "name": "gimp", "task_id": 6135536, "volume_name": "fedora_koji_archive00", "release": "1.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-04 12:52:37.459924", "completion_time": "2013-11-04 13:05:24.912616", "package_id": 407, "build_id": 476088, "state": 2, "source": null, "epoch": 2, "version": "2.8.8", "completion_ts": 1383570324.91262, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.8-1.fc18", "start_time": null, "creation_event_id": 6854188, "start_ts": null, "volume_id": 0, "creation_ts": 1383569557.45992, "name": "gimp", "task_id": 6135540, "volume_name": "DEFAULT", "release": "1.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-08-27 13:05:03.871005", "completion_time": "2013-08-27 13:45:59.284006", "package_id": 407, "build_id": 459296, "state": 2, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1377611159.28401, "owner_id": 279, "owner_name": "limb", "nvr": "gimp-2.8.6-3.fc21.2", "start_time": null, "creation_event_id": 6587417, "start_ts": null, "volume_id": 0, "creation_ts": 1377608703.87101, "name": "gimp", "task_id": 5859758, "volume_name": "DEFAULT", "release": "3.fc21.2"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-08 13:25:16.724141", "completion_time": "2013-11-08 14:08:37.301287", "package_id": 407, "build_id": 477188, "state": 1, "source": null, "epoch": 2, "version": "2.8.8", "completion_ts": 1383919717.30129, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.8-3.fc21", "start_time": null, "creation_event_id": 6870489, "start_ts": null, "volume_id": 6, "creation_ts": 1383917116.72414, "name": "gimp", "task_id": 6154595, "volume_name": "fedora_koji_archive05", "release": "3.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-08 13:26:32.884864", "completion_time": "2013-11-08 14:09:49.609058", "package_id": 407, "build_id": 477189, "state": 1, "source": null, "epoch": 2, "version": "2.8.8", "completion_ts": 1383919789.60906, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.8-3.fc20", "start_time": null, "creation_event_id": 6870500, "start_ts": null, "volume_id": 1, "creation_ts": 1383917192.88486, "name": "gimp", "task_id": 6154598, "volume_name": "fedora_koji_archive00", "release": "3.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-08 13:26:39.156171", "completion_time": "2013-11-08 13:47:38.022088", "package_id": 407, "build_id": 477190, "state": 1, "source": null, "epoch": 2, "version": "2.8.8", "completion_ts": 1383918458.02209, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.8-3.fc19", "start_time": null, "creation_event_id": 6870501, "start_ts": null, "volume_id": 1, "creation_ts": 1383917199.15617, "name": "gimp", "task_id": 6154600, "volume_name": "fedora_koji_archive00", "release": "3.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-08 13:28:25.978993", "completion_time": "2013-11-08 13:45:18.364444", "package_id": 407, "build_id": 477192, "state": 1, "source": null, "epoch": 2, "version": "2.8.8", "completion_ts": 1383918318.36444, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.8-3.fc18", "start_time": null, "creation_event_id": 6870519, "start_ts": null, "volume_id": 1, "creation_ts": 1383917305.97899, "name": "gimp", "task_id": 6154611, "volume_name": "fedora_koji_archive00", "release": "3.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-07 12:27:07.127308", "completion_time": "2013-11-07 13:10:07.158456", "package_id": 407, "build_id": 476913, "state": 2, "source": null, "epoch": 2, "version": "2.8.8", "completion_ts": 1383829807.15846, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.8-2.fc21", "start_time": null, "creation_event_id": 6866361, "start_ts": null, "volume_id": 0, "creation_ts": 1383827227.12731, "name": "gimp", "task_id": 6149569, "volume_name": "DEFAULT", "release": "2.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-07 12:36:46.878841", "completion_time": "2013-11-07 12:53:17.975586", "package_id": 407, "build_id": 476923, "state": 1, "source": null, "epoch": 2, "version": "2.8.8", "completion_ts": 1383828797.97559, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.8-2.fc19", "start_time": null, "creation_event_id": 6866485, "start_ts": null, "volume_id": 1, "creation_ts": 1383827806.87884, "name": "gimp", "task_id": 6149676, "volume_name": "fedora_koji_archive00", "release": "2.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-07 12:39:59.727672", "completion_time": "2013-11-07 13:22:32.535327", "package_id": 407, "build_id": 476927, "state": 2, "source": null, "epoch": 2, "version": "2.8.8", "completion_ts": 1383830552.53533, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.8-2.fc20", "start_time": null, "creation_event_id": 6866507, "start_ts": null, "volume_id": 0, "creation_ts": 1383827999.72767, "name": "gimp", "task_id": 6149684, "volume_name": "DEFAULT", "release": "2.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-29 10:39:52.161095", "completion_time": "2013-11-29 11:22:26.855493", "package_id": 407, "build_id": 481705, "state": 1, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1385724146.85549, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-1.fc20", "start_time": null, "creation_event_id": 6955354, "start_ts": null, "volume_id": 1, "creation_ts": 1385721592.16109, "name": "gimp", "task_id": 6238815, "volume_name": "fedora_koji_archive00", "release": "1.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-29 10:41:25.417968", "completion_time": "2013-11-29 10:54:58.541346", "package_id": 407, "build_id": 481706, "state": 2, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1385722498.54135, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-1.fc19", "start_time": null, "creation_event_id": 6955361, "start_ts": null, "volume_id": 0, "creation_ts": 1385721685.41797, "name": "gimp", "task_id": 6238826, "volume_name": "DEFAULT", "release": "1.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-29 10:51:59.067387", "completion_time": "2013-11-29 11:05:48.734025", "package_id": 407, "build_id": 481707, "state": 2, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1385723148.73403, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-1.fc18", "start_time": null, "creation_event_id": 6955372, "start_ts": null, "volume_id": 0, "creation_ts": 1385722319.06739, "name": "gimp", "task_id": 6238850, "volume_name": "DEFAULT", "release": "1.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-29 09:26:23.842509", "completion_time": "2013-11-29 10:10:06.526646", "package_id": 407, "build_id": 481700, "state": 2, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1385719806.52665, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-3.fc20", "start_time": null, "creation_event_id": 6955196, "start_ts": null, "volume_id": 0, "creation_ts": 1385717183.84251, "name": "gimp", "task_id": 6238736, "volume_name": "DEFAULT", "release": "3.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-29 09:28:19.779941", "completion_time": "2013-11-29 10:11:06.965172", "package_id": 407, "build_id": 481701, "state": 2, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1385719866.96517, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-3.fc21", "start_time": null, "creation_event_id": 6955201, "start_ts": null, "volume_id": 0, "creation_ts": 1385717299.77994, "name": "gimp", "task_id": 6238734, "volume_name": "DEFAULT", "release": "3.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-29 09:35:13.975640", "completion_time": "2013-11-29 09:48:54.834146", "package_id": 407, "build_id": 481702, "state": 2, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1385718534.83415, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-3.fc19", "start_time": null, "creation_event_id": 6955210, "start_ts": null, "volume_id": 0, "creation_ts": 1385717713.97564, "name": "gimp", "task_id": 6238744, "volume_name": "DEFAULT", "release": "3.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-29 09:36:04.528848", "completion_time": "2013-11-29 09:49:48.232441", "package_id": 407, "build_id": 481703, "state": 2, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1385718588.23244, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-3.fc18", "start_time": null, "creation_event_id": 6955214, "start_ts": null, "volume_id": 0, "creation_ts": 1385717764.52885, "name": "gimp", "task_id": 6238749, "volume_name": "DEFAULT", "release": "3.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-12-04 10:44:12.506498", "completion_time": "2013-12-04 11:26:29.837320", "package_id": 407, "build_id": 482641, "state": 1, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1386156389.83732, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-4.fc20", "start_time": null, "creation_event_id": 6970110, "start_ts": null, "volume_id": 1, "creation_ts": 1386153852.5065, "name": "gimp", "task_id": 6255314, "volume_name": "fedora_koji_archive00", "release": "4.fc20"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-12-04 14:58:09.307770", "completion_time": "2013-12-04 15:42:33.398552", "package_id": 407, "build_id": 482642, "state": 1, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1386171753.39855, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-4.fc21", "start_time": null, "creation_event_id": 6971038, "start_ts": null, "volume_id": 6, "creation_ts": 1386169089.30777, "name": "gimp", "task_id": 6256254, "volume_name": "fedora_koji_archive05", "release": "4.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-12-04 10:47:28.993384", "completion_time": "2013-12-04 11:12:17.705430", "package_id": 407, "build_id": 482643, "state": 1, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1386155537.70543, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-4.fc19", "start_time": null, "creation_event_id": 6970125, "start_ts": null, "volume_id": 1, "creation_ts": 1386154048.99338, "name": "gimp", "task_id": 6255330, "volume_name": "fedora_koji_archive00", "release": "4.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-12-04 10:49:21.645673", "completion_time": "2013-12-04 11:10:02.930419", "package_id": 407, "build_id": 482645, "state": 1, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1386155402.93042, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-4.fc18", "start_time": null, "creation_event_id": 6970138, "start_ts": null, "volume_id": 1, "creation_ts": 1386154161.64567, "name": "gimp", "task_id": 6255332, "volume_name": "fedora_koji_archive00", "release": "4.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-11-07 12:37:42.680474", "completion_time": "2013-11-07 12:52:37.361796", "package_id": 407, "build_id": 476924, "state": 2, "source": null, "epoch": 2, "version": "2.8.8", "completion_ts": 1383828757.3618, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.8-2.fc18", "start_time": null, "creation_event_id": 6866492, "start_ts": null, "volume_id": 0, "creation_ts": 1383827862.68047, "name": "gimp", "task_id": 6149687, "volume_name": "DEFAULT", "release": "2.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-28 16:16:38.024419", "completion_time": "2010-06-28 16:32:30.796502", "package_id": 407, "build_id": 180177, "state": 2, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1277742750.7965, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-3.fc13", "start_time": null, "creation_event_id": 2875412, "start_ts": null, "volume_id": 0, "creation_ts": 1277741798.02442, "name": "gimp", "task_id": 2277959, "volume_name": "DEFAULT", "release": "3.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2013-08-03 16:43:46.786655", "completion_time": "2013-08-03 18:04:08.850330", "package_id": 407, "build_id": 445310, "state": 1, "source": null, "epoch": 2, "version": "2.8.6", "completion_ts": 1375553048.85033, "owner_id": 131, "owner_name": "ausil", "nvr": "gimp-2.8.6-3.fc20.1", "start_time": null, "creation_event_id": 6413976, "start_ts": null, "volume_id": 1, "creation_ts": 1375548226.78665, "name": "gimp", "task_id": 5720956, "volume_name": "fedora_koji_archive00", "release": "3.fc20.1"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-07-19 20:49:30.478735", "completion_time": "2012-07-19 21:31:41.119162", "package_id": 407, "build_id": 333975, "state": 1, "source": null, "epoch": 2, "version": "2.8.0", "completion_ts": 1342733501.11916, "owner_id": 131, "owner_name": "ausil", "nvr": "gimp-2.8.0-2.fc18.1", "start_time": null, "creation_event_id": 4909793, "start_ts": null, "volume_id": 1, "creation_ts": 1342730970.47873, "name": "gimp", "task_id": 4259490, "volume_name": "fedora_koji_archive00", "release": "2.fc18.1"}, {"package_name": "gimp", "extra": null, "creation_time": "2014-05-28 11:03:52.380081", "completion_time": "2014-05-28 11:48:58.758589", "package_id": 407, "build_id": 519955, "state": 1, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1401277738.75859, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.10-6.fc21", "start_time": null, "creation_event_id": 7561953, "start_ts": null, "volume_id": 6, "creation_ts": 1401275032.38008, "name": "gimp", "task_id": 6901829, "volume_name": "fedora_koji_archive05", "release": "6.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2014-08-26 19:12:38.577157", "completion_time": "2014-08-26 19:47:21.934997", "package_id": 407, "build_id": 570845, "state": 1, "source": null, "epoch": 2, "version": "2.8.14", "completion_ts": 1409082441.935, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.14-1.fc22", "start_time": null, "creation_event_id": 8179847, "start_ts": null, "volume_id": 2, "creation_ts": 1409080358.57716, "name": "gimp", "task_id": 7454815, "volume_name": "fedora_koji_archive01", "release": "1.fc22"}, {"package_name": "gimp", "extra": null, "creation_time": "2014-08-26 19:13:32.979134", "completion_time": "2014-08-26 19:59:26.341530", "package_id": 407, "build_id": 570846, "state": 1, "source": null, "epoch": 2, "version": "2.8.14", "completion_ts": 1409083166.34153, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.14-1.fc21", "start_time": null, "creation_event_id": 8179857, "start_ts": null, "volume_id": 2, "creation_ts": 1409080412.97913, "name": "gimp", "task_id": 7454820, "volume_name": "fedora_koji_archive01", "release": "1.fc21"}, {"package_name": "gimp", "extra": null, "creation_time": "2014-08-26 19:14:39.870714", "completion_time": "2014-08-26 19:34:01.095202", "package_id": 407, "build_id": 570848, "state": 1, "source": null, "epoch": 2, "version": "2.8.14", "completion_ts": 1409081641.0952, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.14-1.fc19", "start_time": null, "creation_event_id": 8179874, "start_ts": null, "volume_id": 1, "creation_ts": 1409080479.87071, "name": "gimp", "task_id": 7454827, "volume_name": "fedora_koji_archive00", "release": "1.fc19"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-01-30 04:46:26.836856", "completion_time": "2008-01-30 05:19:09.403541", "package_id": 407, "build_id": 33521, "state": 1, "source": null, "epoch": 2, "version": "2.4.4", "completion_ts": 1201670349.40354, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.4-1.fc7", "start_time": null, "creation_event_id": 482183, "start_ts": null, "volume_id": 1, "creation_ts": 1201668386.83686, "name": "gimp", "task_id": 383787, "volume_name": "fedora_koji_archive00", "release": "1.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-06-27 08:11:31.147428", "completion_time": "2007-06-27 08:47:15.218123", "package_id": 407, "build_id": 9875, "state": 1, "source": null, "epoch": 2, "version": "2.2.15", "completion_ts": 1182934035.21812, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.2.15-3.fc7", "start_time": null, "creation_event_id": 65086, "start_ts": null, "volume_id": 1, "creation_ts": 1182931891.14743, "name": "gimp", "task_id": 50201, "volume_name": "fedora_koji_archive00", "release": "3.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2014-08-16 19:32:32.033796", "completion_time": "2014-08-16 20:35:48.318993", "package_id": 407, "build_id": 557570, "state": 1, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1408221348.31899, "owner_id": 672, "owner_name": "pbrobinson", "nvr": "gimp-2.8.10-6.fc21.2", "start_time": null, "creation_event_id": 8032151, "start_ts": null, "volume_id": 2, "creation_ts": 1408217552.0338, "name": "gimp", "task_id": 7338331, "volume_name": "fedora_koji_archive01", "release": "6.fc21.2"}, {"package_name": "gimp", "extra": null, "creation_time": "2014-08-16 19:32:53.041317", "completion_time": "2014-08-16 20:32:29.495884", "package_id": 407, "build_id": 557572, "state": 1, "source": null, "epoch": 2, "version": "2.8.10", "completion_ts": 1408221149.49588, "owner_id": 672, "owner_name": "pbrobinson", "nvr": "gimp-2.8.10-6.fc22.2", "start_time": null, "creation_event_id": 8032171, "start_ts": null, "volume_id": 2, "creation_ts": 1408217573.04132, "name": "gimp", "task_id": 7338330, "volume_name": "fedora_koji_archive01", "release": "6.fc22.2"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-04-05 13:25:50.381662", "completion_time": "2007-04-05 13:25:50.381662", "package_id": 407, "build_id": 407, "state": 1, "source": null, "epoch": 2, "version": "2.2.13", "completion_ts": 1175779550.38166, "owner_id": 2, "owner_name": "jkeating", "nvr": "gimp-2.2.13-1.fc6", "start_time": null, "creation_event_id": 1261, "start_ts": null, "volume_id": 1, "creation_ts": 1175779550.38166, "name": "gimp", "task_id": null, "volume_name": "fedora_koji_archive00", "release": "1.fc6"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-04-26 14:16:38.160686", "completion_time": "2007-04-26 14:16:38.160686", "package_id": 407, "build_id": 2938, "state": 2, "source": null, "epoch": 2, "version": "2.2.14", "completion_ts": 1177596998.16069, "owner_id": 2, "owner_name": "jkeating", "nvr": "gimp-2.2.14-1.fc7", "start_time": null, "creation_event_id": 10040, "start_ts": null, "volume_id": 0, "creation_ts": 1177596998.16069, "name": "gimp", "task_id": null, "volume_name": "DEFAULT", "release": "1.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-12-01 12:27:27.208483", "completion_time": "2008-12-01 12:55:30.980109", "package_id": 407, "build_id": 72457, "state": 2, "source": null, "epoch": 2, "version": "2.6.3", "completion_ts": 1228136130.98011, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.3-2.fc11", "start_time": null, "creation_event_id": 1095121, "start_ts": null, "volume_id": 0, "creation_ts": 1228134447.20848, "name": "gimp", "task_id": 965914, "volume_name": "DEFAULT", "release": "2.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-06-01 02:33:09.989931", "completion_time": "2007-06-01 02:57:02.224849", "package_id": 407, "build_id": 7708, "state": 2, "source": null, "epoch": 2, "version": "2.2.15", "completion_ts": 1180666622.22485, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.2.15-1.fc7", "start_time": null, "creation_event_id": 38972, "start_ts": null, "volume_id": 0, "creation_ts": 1180665189.98993, "name": "gimp", "task_id": 22682, "volume_name": "DEFAULT", "release": "1.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-04-30 10:37:20.836185", "completion_time": "2007-04-30 10:37:20.836185", "package_id": 407, "build_id": 3061, "state": 2, "source": null, "epoch": 2, "version": "2.2.14", "completion_ts": 1177929440.83618, "owner_id": 2, "owner_name": "jkeating", "nvr": "gimp-2.2.14-3.fc7", "start_time": null, "creation_event_id": 10401, "start_ts": null, "volume_id": 0, "creation_ts": 1177929440.83618, "name": "gimp", "task_id": null, "volume_name": "DEFAULT", "release": "3.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-06-27 08:10:45.498770", "completion_time": "2007-06-27 08:47:02.407791", "package_id": 407, "build_id": 9874, "state": 1, "source": null, "epoch": 2, "version": "2.2.15", "completion_ts": 1182934022.40779, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.2.15-3.fc8", "start_time": null, "creation_event_id": 65080, "start_ts": null, "volume_id": 1, "creation_ts": 1182931845.49877, "name": "gimp", "task_id": 50199, "volume_name": "fedora_koji_archive00", "release": "3.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-07-11 08:17:07.750780", "completion_time": "2007-07-11 08:47:38.064324", "package_id": 407, "build_id": 10919, "state": 2, "source": null, "epoch": 2, "version": "2.2.16", "completion_ts": 1184143658.06432, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.2.16-2.fc8", "start_time": null, "creation_event_id": 77232, "start_ts": null, "volume_id": 0, "creation_ts": 1184141827.75078, "name": "gimp", "task_id": 63652, "volume_name": "DEFAULT", "release": "2.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-07-11 23:51:54.647349", "completion_time": "2007-07-12 00:13:30.168614", "package_id": 407, "build_id": 10980, "state": 1, "source": null, "epoch": 2, "version": "2.2.16", "completion_ts": 1184199210.16861, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.2.16-2.fc7", "start_time": null, "creation_event_id": 77957, "start_ts": null, "volume_id": 1, "creation_ts": 1184197914.64735, "name": "gimp", "task_id": 64483, "volume_name": "fedora_koji_archive00", "release": "2.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-07-13 05:51:55.749636", "completion_time": "2007-07-13 06:30:55.595004", "package_id": 407, "build_id": 11097, "state": 1, "source": null, "epoch": 2, "version": "2.2.17", "completion_ts": 1184308255.595, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.2.17-1.fc7", "start_time": null, "creation_event_id": 79413, "start_ts": null, "volume_id": 1, "creation_ts": 1184305915.74964, "name": "gimp", "task_id": 65916, "volume_name": "fedora_koji_archive00", "release": "1.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-07-13 05:50:47.475568", "completion_time": "2007-07-13 06:33:52.318926", "package_id": 407, "build_id": 11096, "state": 1, "source": null, "epoch": 2, "version": "2.2.17", "completion_ts": 1184308432.31893, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.2.17-1.fc8", "start_time": null, "creation_event_id": 79408, "start_ts": null, "volume_id": 1, "creation_ts": 1184305847.47557, "name": "gimp", "task_id": 65914, "volume_name": "fedora_koji_archive00", "release": "1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-12-18 02:05:54.017361", "completion_time": "2007-12-18 02:27:30.723056", "package_id": 407, "build_id": 28294, "state": 1, "source": null, "epoch": 2, "version": "2.4.3", "completion_ts": 1197944850.72306, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.3-1.fc8", "start_time": null, "creation_event_id": 387934, "start_ts": null, "volume_id": 1, "creation_ts": 1197943554.01736, "name": "gimp", "task_id": 298354, "volume_name": "fedora_koji_archive00", "release": "1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-12-17 02:50:41.267585", "completion_time": "2007-12-17 03:51:15.894905", "package_id": 407, "build_id": 28295, "state": 1, "source": null, "epoch": 2, "version": "2.4.3", "completion_ts": 1197863475.89491, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.3-1.fc7", "start_time": null, "creation_event_id": 386186, "start_ts": null, "volume_id": 1, "creation_ts": 1197859841.26759, "name": "gimp", "task_id": 296478, "volume_name": "fedora_koji_archive00", "release": "1.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-09-27 06:28:19.400647", "completion_time": "2007-09-27 06:52:16.049941", "package_id": 407, "build_id": 19715, "state": 1, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1190875936.04994, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-0.rc3.1.fc8", "start_time": null, "creation_event_id": 227018, "start_ts": null, "volume_id": 1, "creation_ts": 1190874499.40065, "name": "gimp", "task_id": 176579, "volume_name": "fedora_koji_archive00", "release": "0.rc3.1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-07-09 08:42:45.662382", "completion_time": "2007-07-09 09:42:32.093398", "package_id": 407, "build_id": 10717, "state": 2, "source": null, "epoch": 2, "version": "2.2.16", "completion_ts": 1183974152.0934, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.2.16-1.fc7", "start_time": null, "creation_event_id": 74424, "start_ts": null, "volume_id": 0, "creation_ts": 1183970565.66238, "name": "gimp", "task_id": 60683, "volume_name": "DEFAULT", "release": "1.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-24 06:22:52.285059", "completion_time": "2007-10-24 07:04:13.782117", "package_id": 407, "build_id": 22187, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1193209453.78212, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-1.fc7", "start_time": null, "creation_event_id": 273103, "start_ts": null, "volume_id": 0, "creation_ts": 1193206972.28506, "name": "gimp", "task_id": 211740, "volume_name": "DEFAULT", "release": "1.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-24 02:02:00.507607", "completion_time": "2007-10-24 03:57:26.409216", "package_id": 407, "build_id": 22150, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1193198246.40922, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-1.fc8", "start_time": null, "creation_event_id": 272707, "start_ts": null, "volume_id": 0, "creation_ts": 1193191320.50761, "name": "gimp", "task_id": 211353, "volume_name": "DEFAULT", "release": "1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-24 01:54:50.770767", "completion_time": "2007-10-24 03:53:42.150443", "package_id": 407, "build_id": 22147, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1193198022.15044, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-1.fc9", "start_time": null, "creation_event_id": 272691, "start_ts": null, "volume_id": 0, "creation_ts": 1193190890.77077, "name": "gimp", "task_id": 211341, "volume_name": "DEFAULT", "release": "1.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-25 03:24:17.165390", "completion_time": "2007-10-25 04:16:10.563024", "package_id": 407, "build_id": 22327, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1193285770.56302, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-2.fc7", "start_time": null, "creation_event_id": 274730, "start_ts": null, "volume_id": 0, "creation_ts": 1193282657.16539, "name": "gimp", "task_id": 213513, "volume_name": "DEFAULT", "release": "2.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-25 03:24:19.234616", "completion_time": "2007-10-25 04:20:05.874619", "package_id": 407, "build_id": 22328, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1193286005.87462, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-2.fc8", "start_time": null, "creation_event_id": 274732, "start_ts": null, "volume_id": 0, "creation_ts": 1193282659.23462, "name": "gimp", "task_id": 213512, "volume_name": "DEFAULT", "release": "2.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-25 03:23:55.970538", "completion_time": "2007-10-25 04:18:30.913233", "package_id": 407, "build_id": 22326, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1193285910.91323, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-2.fc9", "start_time": null, "creation_event_id": 274728, "start_ts": null, "volume_id": 0, "creation_ts": 1193282635.97054, "name": "gimp", "task_id": 213510, "volume_name": "DEFAULT", "release": "2.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-25 05:09:22.739892", "completion_time": "2007-10-25 05:49:03.928734", "package_id": 407, "build_id": 22342, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1193291343.92873, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-3.fc7", "start_time": null, "creation_event_id": 274924, "start_ts": null, "volume_id": 0, "creation_ts": 1193288962.73989, "name": "gimp", "task_id": 213705, "volume_name": "DEFAULT", "release": "3.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-11-28 02:14:13.240387", "completion_time": "2007-11-28 03:58:31.305792", "package_id": 407, "build_id": 25901, "state": 2, "source": null, "epoch": 2, "version": "2.4.2", "completion_ts": 1196222311.30579, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.2-2.fc7", "start_time": null, "creation_event_id": 334944, "start_ts": null, "volume_id": 0, "creation_ts": 1196216053.24039, "name": "gimp", "task_id": 262965, "volume_name": "DEFAULT", "release": "2.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-11-28 02:13:18.136606", "completion_time": "2007-11-28 04:01:54.713888", "package_id": 407, "build_id": 25900, "state": 2, "source": null, "epoch": 2, "version": "2.4.2", "completion_ts": 1196222514.71389, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.2-2.fc8", "start_time": null, "creation_event_id": 334938, "start_ts": null, "volume_id": 0, "creation_ts": 1196215998.13661, "name": "gimp", "task_id": 262963, "volume_name": "DEFAULT", "release": "2.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-11-22 02:05:16.915349", "completion_time": "2007-11-22 02:42:09.653287", "package_id": 407, "build_id": 25187, "state": 2, "source": null, "epoch": 2, "version": "2.4.2", "completion_ts": 1195699329.65329, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.2-1.fc9", "start_time": null, "creation_event_id": 326441, "start_ts": null, "volume_id": 0, "creation_ts": 1195697116.91535, "name": "gimp", "task_id": 254146, "volume_name": "DEFAULT", "release": "1.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-08-16 07:30:06.736324", "completion_time": "2007-08-16 09:08:19.935031", "package_id": 407, "build_id": 13916, "state": 1, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1187255299.93503, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-0.rc1.1.fc8", "start_time": null, "creation_event_id": 128360, "start_ts": null, "volume_id": 1, "creation_ts": 1187249406.73632, "name": "gimp", "task_id": 105014, "volume_name": "fedora_koji_archive00", "release": "0.rc1.1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-04-30 15:39:09.618462", "completion_time": "2007-04-30 15:39:09.618462", "package_id": 407, "build_id": 3076, "state": 2, "source": null, "epoch": 2, "version": "2.2.14", "completion_ts": 1177947549.61846, "owner_id": 2, "owner_name": "jkeating", "nvr": "gimp-2.2.14-4.fc7", "start_time": null, "creation_event_id": 10440, "start_ts": null, "volume_id": 0, "creation_ts": 1177947549.61846, "name": "gimp", "task_id": null, "volume_name": "DEFAULT", "release": "4.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-31 03:25:11.795160", "completion_time": "2007-10-31 03:59:05.788990", "package_id": 407, "build_id": 23024, "state": 2, "source": null, "epoch": 2, "version": "2.4.1", "completion_ts": 1193803145.78899, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.1-1.fc7", "start_time": null, "creation_event_id": 286550, "start_ts": null, "volume_id": 0, "creation_ts": 1193801111.79516, "name": "gimp", "task_id": 222097, "volume_name": "DEFAULT", "release": "1.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-31 03:23:15.978815", "completion_time": "2007-10-31 04:00:18.354219", "package_id": 407, "build_id": 23022, "state": 2, "source": null, "epoch": 2, "version": "2.4.1", "completion_ts": 1193803218.35422, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.1-1.fc9", "start_time": null, "creation_event_id": 286540, "start_ts": null, "volume_id": 0, "creation_ts": 1193800995.97882, "name": "gimp", "task_id": 222087, "volume_name": "DEFAULT", "release": "1.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-31 03:24:21.788692", "completion_time": "2007-10-31 04:01:11.475526", "package_id": 407, "build_id": 23023, "state": 1, "source": null, "epoch": 2, "version": "2.4.1", "completion_ts": 1193803271.47553, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.1-1.fc8", "start_time": null, "creation_event_id": 286545, "start_ts": null, "volume_id": 1, "creation_ts": 1193801061.78869, "name": "gimp", "task_id": 222091, "volume_name": "fedora_koji_archive00", "release": "1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-29 07:20:28.685286", "completion_time": "2007-10-29 08:19:06.352585", "package_id": 407, "build_id": 22707, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1193645946.35259, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-4.fc7", "start_time": null, "creation_event_id": 282927, "start_ts": null, "volume_id": 0, "creation_ts": 1193642428.68529, "name": "gimp", "task_id": 218350, "volume_name": "DEFAULT", "release": "4.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-29 07:19:29.898398", "completion_time": "2007-10-29 08:19:54.966820", "package_id": 407, "build_id": 22706, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1193645994.96682, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-4.fc8", "start_time": null, "creation_event_id": 282921, "start_ts": null, "volume_id": 0, "creation_ts": 1193642369.8984, "name": "gimp", "task_id": 218344, "volume_name": "DEFAULT", "release": "4.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-07-09 08:41:56.577661", "completion_time": "2007-07-09 09:24:17.945268", "package_id": 407, "build_id": 10716, "state": 2, "source": null, "epoch": 2, "version": "2.2.16", "completion_ts": 1183973057.94527, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.2.16-1.fc8", "start_time": null, "creation_event_id": 74414, "start_ts": null, "volume_id": 0, "creation_ts": 1183970516.57766, "name": "gimp", "task_id": 60677, "volume_name": "DEFAULT", "release": "1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-05-31 04:01:20.998983", "completion_time": "2007-05-31 04:26:12.981237", "package_id": 407, "build_id": 7600, "state": 2, "source": null, "epoch": 2, "version": "2.2.15", "completion_ts": 1180585572.98124, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.2.15-1.fc8", "start_time": null, "creation_event_id": 37751, "start_ts": null, "volume_id": 0, "creation_ts": 1180584080.99898, "name": "gimp", "task_id": 21408, "volume_name": "DEFAULT", "release": "1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-25 05:08:34.760425", "completion_time": "2007-10-25 05:48:36.721741", "package_id": 407, "build_id": 22340, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1193291316.72174, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-3.fc9", "start_time": null, "creation_event_id": 274917, "start_ts": null, "volume_id": 0, "creation_ts": 1193288914.76043, "name": "gimp", "task_id": 213703, "volume_name": "DEFAULT", "release": "3.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-25 05:09:16.077528", "completion_time": "2007-10-25 05:49:37.987858", "package_id": 407, "build_id": 22341, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1193291377.98786, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-3.fc8", "start_time": null, "creation_event_id": 274922, "start_ts": null, "volume_id": 0, "creation_ts": 1193288956.07753, "name": "gimp", "task_id": 213706, "volume_name": "DEFAULT", "release": "3.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-09-07 05:45:11.630476", "completion_time": "2007-09-07 06:18:41.922129", "package_id": 407, "build_id": 18048, "state": 1, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1189145921.92213, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-0.rc2.2.fc8", "start_time": null, "creation_event_id": 194482, "start_ts": null, "volume_id": 1, "creation_ts": 1189143911.63048, "name": "gimp", "task_id": 151150, "volume_name": "fedora_koji_archive00", "release": "0.rc2.2.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-09-04 01:52:50.861709", "completion_time": "2007-09-04 02:25:50.869972", "package_id": 407, "build_id": 17706, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1188872750.86997, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-0.rc2.1.fc8", "start_time": null, "creation_event_id": 190366, "start_ts": null, "volume_id": 0, "creation_ts": 1188870770.86171, "name": "gimp", "task_id": 146745, "volume_name": "DEFAULT", "release": "0.rc2.1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-02-18 08:16:44.144366", "completion_time": "2008-02-18 08:41:01.797659", "package_id": 407, "build_id": 36780, "state": 1, "source": null, "epoch": 2, "version": "2.4.4", "completion_ts": 1203324061.79766, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.4-2.fc9", "start_time": null, "creation_event_id": 528373, "start_ts": null, "volume_id": 1, "creation_ts": 1203322604.14437, "name": "gimp", "task_id": 435279, "volume_name": "fedora_koji_archive00", "release": "2.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-05-30 14:01:53.945578", "completion_time": "2008-05-30 15:34:16.117082", "package_id": 407, "build_id": 51015, "state": 2, "source": null, "epoch": 2, "version": "2.4.6", "completion_ts": 1212161656.11708, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.6-1.fc9", "start_time": null, "creation_event_id": 745660, "start_ts": null, "volume_id": 0, "creation_ts": 1212156113.94558, "name": "gimp", "task_id": 636352, "volume_name": "DEFAULT", "release": "1.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-05-30 14:02:31.560027", "completion_time": "2008-05-30 15:33:58.602198", "package_id": 407, "build_id": 51016, "state": 1, "source": null, "epoch": 2, "version": "2.4.6", "completion_ts": 1212161638.6022, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.6-1.fc8", "start_time": null, "creation_event_id": 745665, "start_ts": null, "volume_id": 1, "creation_ts": 1212156151.56003, "name": "gimp", "task_id": 636353, "volume_name": "fedora_koji_archive00", "release": "1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-05-30 14:02:37.049705", "completion_time": "2008-05-30 14:50:16.809050", "package_id": 407, "build_id": 51017, "state": 1, "source": null, "epoch": 2, "version": "2.4.6", "completion_ts": 1212159016.80905, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.6-1.fc7", "start_time": null, "creation_event_id": 745666, "start_ts": null, "volume_id": 1, "creation_ts": 1212156157.04971, "name": "gimp", "task_id": 636356, "volume_name": "fedora_koji_archive00", "release": "1.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-01-28 04:23:06.064010", "completion_time": "2008-01-28 04:45:34.373064", "package_id": 407, "build_id": 33191, "state": 2, "source": null, "epoch": 2, "version": "2.4.3", "completion_ts": 1201495534.37306, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.3-2.fc9", "start_time": null, "creation_event_id": 477140, "start_ts": null, "volume_id": 0, "creation_ts": 1201494186.06401, "name": "gimp", "task_id": 377657, "volume_name": "DEFAULT", "release": "2.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-10-29 07:18:04.415373", "completion_time": "2007-10-29 08:20:30.478437", "package_id": 407, "build_id": 22705, "state": 2, "source": null, "epoch": 2, "version": "2.4.0", "completion_ts": 1193646030.47844, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.0-4.fc9", "start_time": null, "creation_event_id": 282916, "start_ts": null, "volume_id": 0, "creation_ts": 1193642284.41537, "name": "gimp", "task_id": 218342, "volume_name": "DEFAULT", "release": "4.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-03-03 09:52:27.997175", "completion_time": "2008-03-03 10:19:02.266054", "package_id": 407, "build_id": 40904, "state": 2, "source": null, "epoch": 2, "version": "2.4.5", "completion_ts": 1204539542.26605, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.5-1.fc8", "start_time": null, "creation_event_id": 579426, "start_ts": null, "volume_id": 0, "creation_ts": 1204537947.99717, "name": "gimp", "task_id": 486410, "volume_name": "DEFAULT", "release": "1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-08-22 17:20:36.843716", "completion_time": "2008-08-22 17:51:37.186891", "package_id": 407, "build_id": 59714, "state": 2, "source": null, "epoch": 2, "version": "2.4.7", "completion_ts": 1219427497.18689, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.7-1.fc9", "start_time": null, "creation_event_id": 886173, "start_ts": null, "volume_id": 0, "creation_ts": 1219425636.84372, "name": "gimp", "task_id": 778517, "volume_name": "DEFAULT", "release": "1.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-09-17 08:41:18.102088", "completion_time": "2008-09-17 09:05:10.382130", "package_id": 407, "build_id": 63369, "state": 2, "source": null, "epoch": 2, "version": "2.4.7", "completion_ts": 1221642310.38213, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.7-2.fc9", "start_time": null, "creation_event_id": 947991, "start_ts": null, "volume_id": 0, "creation_ts": 1221640878.10209, "name": "gimp", "task_id": 829789, "volume_name": "DEFAULT", "release": "2.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-09-17 08:41:57.645404", "completion_time": "2008-09-17 09:05:32.930744", "package_id": 407, "build_id": 63370, "state": 2, "source": null, "epoch": 2, "version": "2.4.7", "completion_ts": 1221642332.93074, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.7-2.fc8", "start_time": null, "creation_event_id": 947996, "start_ts": null, "volume_id": 0, "creation_ts": 1221640917.6454, "name": "gimp", "task_id": 829791, "volume_name": "DEFAULT", "release": "2.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-09-17 13:43:21.143315", "completion_time": "2008-09-17 14:01:32.917833", "package_id": 407, "build_id": 63390, "state": 2, "source": null, "epoch": 2, "version": "2.4.7", "completion_ts": 1221660092.91783, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.7-3.fc9", "start_time": null, "creation_event_id": 948367, "start_ts": null, "volume_id": 0, "creation_ts": 1221659001.14332, "name": "gimp", "task_id": 830138, "volume_name": "DEFAULT", "release": "3.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-10-28 10:21:59.084740", "completion_time": "2008-10-28 10:42:44.349275", "package_id": 407, "build_id": 67890, "state": 2, "source": null, "epoch": 2, "version": "2.6.1", "completion_ts": 1225190564.34928, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.1-2.fc10", "start_time": null, "creation_event_id": 1031933, "start_ts": null, "volume_id": 0, "creation_ts": 1225189319.08474, "name": "gimp", "task_id": 908892, "volume_name": "DEFAULT", "release": "2.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-09-17 08:38:41.352069", "completion_time": "2008-09-17 08:58:42.205712", "package_id": 407, "build_id": 63368, "state": 2, "source": null, "epoch": 2, "version": "2.4.7", "completion_ts": 1221641922.20571, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.7-2.fc10", "start_time": null, "creation_event_id": 947986, "start_ts": null, "volume_id": 0, "creation_ts": 1221640721.35207, "name": "gimp", "task_id": 829783, "volume_name": "DEFAULT", "release": "2.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-10-08 17:01:33.346072", "completion_time": "2008-10-08 17:21:05.605032", "package_id": 407, "build_id": 65726, "state": 2, "source": null, "epoch": 2, "version": "2.6.0", "completion_ts": 1223486465.60503, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.0-3.fc10", "start_time": null, "creation_event_id": 980520, "start_ts": null, "volume_id": 0, "creation_ts": 1223485293.34607, "name": "gimp", "task_id": 868799, "volume_name": "DEFAULT", "release": "3.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-11-13 13:23:57.748630", "completion_time": "2008-11-13 13:50:06.211970", "package_id": 407, "build_id": 69183, "state": 2, "source": null, "epoch": 2, "version": "2.6.2", "completion_ts": 1226584206.21197, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.2-2.fc11", "start_time": null, "creation_event_id": 1055122, "start_ts": null, "volume_id": 0, "creation_ts": 1226582637.74863, "name": "gimp", "task_id": 931163, "volume_name": "DEFAULT", "release": "2.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-09-17 13:42:39.630530", "completion_time": "2008-09-17 14:12:31.045250", "package_id": 407, "build_id": 63389, "state": 2, "source": null, "epoch": 2, "version": "2.4.7", "completion_ts": 1221660751.04525, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.7-3.fc10", "start_time": null, "creation_event_id": 948362, "start_ts": null, "volume_id": 0, "creation_ts": 1221658959.63053, "name": "gimp", "task_id": 830136, "volume_name": "DEFAULT", "release": "3.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-09-22 08:10:58.631557", "completion_time": "2008-09-22 08:30:27.310341", "package_id": 407, "build_id": 63750, "state": 2, "source": null, "epoch": 2, "version": "2.4.7", "completion_ts": 1222072227.31034, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.7-4.fc10", "start_time": null, "creation_event_id": 953175, "start_ts": null, "volume_id": 0, "creation_ts": 1222071058.63156, "name": "gimp", "task_id": 835715, "volume_name": "DEFAULT", "release": "4.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-11-14 13:49:20.187642", "completion_time": "2008-11-14 14:51:52.300093", "package_id": 407, "build_id": 69735, "state": 2, "source": null, "epoch": 2, "version": "2.6.2", "completion_ts": 1226674312.30009, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.2-3.fc10", "start_time": null, "creation_event_id": 1057379, "start_ts": null, "volume_id": 0, "creation_ts": 1226670560.18764, "name": "gimp", "task_id": 933434, "volume_name": "DEFAULT", "release": "3.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-11-14 13:49:27.189733", "completion_time": "2008-11-14 14:40:32.491432", "package_id": 407, "build_id": 69736, "state": 2, "source": null, "epoch": 2, "version": "2.6.2", "completion_ts": 1226673632.49143, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.2-3.fc9", "start_time": null, "creation_event_id": 1057384, "start_ts": null, "volume_id": 0, "creation_ts": 1226670567.18973, "name": "gimp", "task_id": 933432, "volume_name": "DEFAULT", "release": "3.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-11-11 13:08:19.465409", "completion_time": "2008-11-11 13:30:25.781933", "package_id": 407, "build_id": 69194, "state": 2, "source": null, "epoch": 2, "version": "2.6.2", "completion_ts": 1226410225.78193, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.2-2.fc10", "start_time": null, "creation_event_id": 1049871, "start_ts": null, "volume_id": 0, "creation_ts": 1226408899.46541, "name": "gimp", "task_id": 926239, "volume_name": "DEFAULT", "release": "2.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-11-11 13:12:53.901947", "completion_time": "2008-11-11 13:40:04.590468", "package_id": 407, "build_id": 69195, "state": 2, "source": null, "epoch": 2, "version": "2.6.2", "completion_ts": 1226410804.59047, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.2-2.fc9", "start_time": null, "creation_event_id": 1049886, "start_ts": null, "volume_id": 0, "creation_ts": 1226409173.90195, "name": "gimp", "task_id": 926256, "volume_name": "DEFAULT", "release": "2.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-10-06 15:56:16.787241", "completion_time": "2008-10-06 16:19:27.320497", "package_id": 407, "build_id": 65457, "state": 2, "source": null, "epoch": 2, "version": "2.6.0", "completion_ts": 1223309967.3205, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.0-1.fc10", "start_time": null, "creation_event_id": 976511, "start_ts": null, "volume_id": 0, "creation_ts": 1223308576.78724, "name": "gimp", "task_id": 864041, "volume_name": "DEFAULT", "release": "1.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-10-31 15:38:37.294752", "completion_time": "2008-10-31 15:59:13.336821", "package_id": 407, "build_id": 68180, "state": 1, "source": null, "epoch": 2, "version": "2.6.2", "completion_ts": 1225468753.33682, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.2-1.fc10", "start_time": null, "creation_event_id": 1036538, "start_ts": null, "volume_id": 1, "creation_ts": 1225467517.29475, "name": "gimp", "task_id": 913571, "volume_name": "fedora_koji_archive00", "release": "1.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-11-22 02:07:05.755202", "completion_time": "2007-11-22 02:44:30.817014", "package_id": 407, "build_id": 25189, "state": 2, "source": null, "epoch": 2, "version": "2.4.2", "completion_ts": 1195699470.81701, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.2-1.fc7", "start_time": null, "creation_event_id": 326448, "start_ts": null, "volume_id": 0, "creation_ts": 1195697225.7552, "name": "gimp", "task_id": 254148, "volume_name": "DEFAULT", "release": "1.fc7"}, {"package_name": "gimp", "extra": null, "creation_time": "2007-11-22 02:07:03.330391", "completion_time": "2007-11-22 02:45:12.438435", "package_id": 407, "build_id": 25188, "state": 2, "source": null, "epoch": 2, "version": "2.4.2", "completion_ts": 1195699512.43844, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.4.2-1.fc8", "start_time": null, "creation_event_id": 326447, "start_ts": null, "volume_id": 0, "creation_ts": 1195697223.33039, "name": "gimp", "task_id": 254149, "volume_name": "DEFAULT", "release": "1.fc8"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-02-16 08:18:46.991428", "completion_time": "2009-02-16 08:42:25.016373", "package_id": 407, "build_id": 82846, "state": 2, "source": null, "epoch": 2, "version": "2.6.5", "completion_ts": 1234773745.01637, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.5-1.fc9", "start_time": null, "creation_event_id": 1278702, "start_ts": null, "volume_id": 0, "creation_ts": 1234772326.99143, "name": "gimp", "task_id": 1129552, "volume_name": "DEFAULT", "release": "1.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-02-16 08:18:58.344375", "completion_time": "2009-02-16 08:40:28.519976", "package_id": 407, "build_id": 82847, "state": 2, "source": null, "epoch": 2, "version": "2.6.5", "completion_ts": 1234773628.51998, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.5-1.fc10", "start_time": null, "creation_event_id": 1278705, "start_ts": null, "volume_id": 0, "creation_ts": 1234772338.34437, "name": "gimp", "task_id": 1129551, "volume_name": "DEFAULT", "release": "1.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-11-24 08:15:29.425670", "completion_time": "2008-11-24 08:54:06.309950", "package_id": 407, "build_id": 70831, "state": 2, "source": null, "epoch": 2, "version": "2.6.3", "completion_ts": 1227516846.30995, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.3-1.fc10", "start_time": null, "creation_event_id": 1077099, "start_ts": null, "volume_id": 0, "creation_ts": 1227514529.42567, "name": "gimp", "task_id": 947409, "volume_name": "DEFAULT", "release": "1.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-11-24 08:13:19.455876", "completion_time": "2008-11-24 08:42:38.914433", "package_id": 407, "build_id": 70828, "state": 2, "source": null, "epoch": 2, "version": "2.6.3", "completion_ts": 1227516158.91443, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.3-1.fc11", "start_time": null, "creation_event_id": 1077087, "start_ts": null, "volume_id": 0, "creation_ts": 1227514399.45588, "name": "gimp", "task_id": 947400, "volume_name": "DEFAULT", "release": "1.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-01-04 12:20:05.033156", "completion_time": "2009-01-04 12:40:38.794658", "package_id": 407, "build_id": 77067, "state": 2, "source": null, "epoch": 2, "version": "2.6.4", "completion_ts": 1231072838.79466, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.4-2.fc11", "start_time": null, "creation_event_id": 1160889, "start_ts": null, "volume_id": 0, "creation_ts": 1231071605.03316, "name": "gimp", "task_id": 1031207, "volume_name": "DEFAULT", "release": "2.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-01-04 12:20:06.668214", "completion_time": "2009-01-04 12:47:59.636140", "package_id": 407, "build_id": 77068, "state": 2, "source": null, "epoch": 2, "version": "2.6.4", "completion_ts": 1231073279.63614, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.4-2.fc10", "start_time": null, "creation_event_id": 1160890, "start_ts": null, "volume_id": 0, "creation_ts": 1231071606.66821, "name": "gimp", "task_id": 1031208, "volume_name": "DEFAULT", "release": "2.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-01-04 12:20:27.070896", "completion_time": "2009-01-04 12:52:16.043350", "package_id": 407, "build_id": 77069, "state": 2, "source": null, "epoch": 2, "version": "2.6.4", "completion_ts": 1231073536.04335, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.4-2.fc9", "start_time": null, "creation_event_id": 1160899, "start_ts": null, "volume_id": 0, "creation_ts": 1231071627.0709, "name": "gimp", "task_id": 1031209, "volume_name": "DEFAULT", "release": "2.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-01-01 21:40:27.560015", "completion_time": "2009-01-01 22:09:40.027909", "package_id": 407, "build_id": 76892, "state": 2, "source": null, "epoch": 2, "version": "2.6.4", "completion_ts": 1230847780.02791, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.4-1.fc10", "start_time": null, "creation_event_id": 1158546, "start_ts": null, "volume_id": 0, "creation_ts": 1230846027.56001, "name": "gimp", "task_id": 1028839, "volume_name": "DEFAULT", "release": "1.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-01-01 21:40:41.764394", "completion_time": "2009-01-01 22:11:19.590896", "package_id": 407, "build_id": 76893, "state": 2, "source": null, "epoch": 2, "version": "2.6.4", "completion_ts": 1230847879.5909, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.4-1.fc9", "start_time": null, "creation_event_id": 1158550, "start_ts": null, "volume_id": 0, "creation_ts": 1230846041.76439, "name": "gimp", "task_id": 1028841, "volume_name": "DEFAULT", "release": "1.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-01-01 21:38:58.886843", "completion_time": "2009-01-01 22:11:21.893238", "package_id": 407, "build_id": 76891, "state": 2, "source": null, "epoch": 2, "version": "2.6.4", "completion_ts": 1230847881.89324, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.4-1.fc11", "start_time": null, "creation_event_id": 1158541, "start_ts": null, "volume_id": 0, "creation_ts": 1230845938.88684, "name": "gimp", "task_id": 1028833, "volume_name": "DEFAULT", "release": "1.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-06-28 09:06:41.468833", "completion_time": "2009-06-28 09:28:04.382410", "package_id": 407, "build_id": 111985, "state": 2, "source": null, "epoch": 2, "version": "2.6.6", "completion_ts": 1246181284.38241, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.6-5.fc11", "start_time": null, "creation_event_id": 1708710, "start_ts": null, "volume_id": 0, "creation_ts": 1246180001.46883, "name": "gimp", "task_id": 1439525, "volume_name": "DEFAULT", "release": "5.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-03-09 10:48:29.136914", "completion_time": "2009-03-09 11:10:36.721802", "package_id": 407, "build_id": 93388, "state": 2, "source": null, "epoch": 2, "version": "2.6.5", "completion_ts": 1236597036.7218, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.5-3.fc11", "start_time": null, "creation_event_id": 1420785, "start_ts": null, "volume_id": 0, "creation_ts": 1236595709.13691, "name": "gimp", "task_id": 1231173, "volume_name": "DEFAULT", "release": "3.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-06-29 11:41:52.009051", "completion_time": "2009-06-29 12:01:43.177321", "package_id": 407, "build_id": 112081, "state": 1, "source": null, "epoch": 2, "version": "2.6.6", "completion_ts": 1246276903.17732, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.6-6.fc12", "start_time": null, "creation_event_id": 1710351, "start_ts": null, "volume_id": 1, "creation_ts": 1246275712.00905, "name": "gimp", "task_id": 1440987, "volume_name": "fedora_koji_archive00", "release": "6.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-07-16 08:53:39.211277", "completion_time": "2009-07-16 09:16:26.224374", "package_id": 407, "build_id": 114630, "state": 1, "source": null, "epoch": 2, "version": "2.6.6", "completion_ts": 1247735786.22437, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.6-7.fc12", "start_time": null, "creation_event_id": 1753592, "start_ts": null, "volume_id": 1, "creation_ts": 1247734419.21128, "name": "gimp", "task_id": 1478355, "volume_name": "fedora_koji_archive00", "release": "7.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-06-05 08:31:55.477766", "completion_time": "2009-06-05 08:54:23.970873", "package_id": 407, "build_id": 104833, "state": 2, "source": null, "epoch": 2, "version": "2.6.6", "completion_ts": 1244192063.97087, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.6-4.fc12", "start_time": null, "creation_event_id": 1649411, "start_ts": null, "volume_id": 0, "creation_ts": 1244190715.47777, "name": "gimp", "task_id": 1394559, "volume_name": "DEFAULT", "release": "4.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-07-24 14:32:56.619712", "completion_time": "2009-07-24 14:59:04.395147", "package_id": 407, "build_id": 115839, "state": 1, "source": null, "epoch": 2, "version": "2.6.6", "completion_ts": 1248447544.39515, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.6-8.fc12", "start_time": null, "creation_event_id": 1776892, "start_ts": null, "volume_id": 1, "creation_ts": 1248445976.61971, "name": "gimp", "task_id": 1498191, "volume_name": "fedora_koji_archive00", "release": "8.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-03-17 08:28:56.157904", "completion_time": "2009-03-17 08:49:37.994317", "package_id": 407, "build_id": 94440, "state": 2, "source": null, "epoch": 2, "version": "2.6.5", "completion_ts": 1237279777.99432, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.5-5.fc11", "start_time": null, "creation_event_id": 1454468, "start_ts": null, "volume_id": 0, "creation_ts": 1237278536.1579, "name": "gimp", "task_id": 1245680, "volume_name": "DEFAULT", "release": "5.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-03-17 08:34:21.056789", "completion_time": "2009-03-17 08:55:51.094243", "package_id": 407, "build_id": 94443, "state": 2, "source": null, "epoch": 2, "version": "2.6.5", "completion_ts": 1237280151.09424, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.5-5.fc9", "start_time": null, "creation_event_id": 1454491, "start_ts": null, "volume_id": 0, "creation_ts": 1237278861.05679, "name": "gimp", "task_id": 1245692, "volume_name": "DEFAULT", "release": "5.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-08-14 10:17:45.862278", "completion_time": "2009-08-14 10:36:12.266569", "package_id": 407, "build_id": 127273, "state": 2, "source": null, "epoch": 2, "version": "2.6.7", "completion_ts": 1250246172.26657, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.7-1.fc11", "start_time": null, "creation_event_id": 1939510, "start_ts": null, "volume_id": 0, "creation_ts": 1250245065.86228, "name": "gimp", "task_id": 1604890, "volume_name": "DEFAULT", "release": "1.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-06-27 16:00:26.324764", "completion_time": "2009-06-27 16:21:55.104561", "package_id": 407, "build_id": 111942, "state": 2, "source": null, "epoch": 2, "version": "2.6.6", "completion_ts": 1246119715.10456, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.6-5.fc12", "start_time": null, "creation_event_id": 1708058, "start_ts": null, "volume_id": 0, "creation_ts": 1246118426.32476, "name": "gimp", "task_id": 1438838, "volume_name": "DEFAULT", "release": "5.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-01-27 16:51:16.196021", "completion_time": "2010-01-27 17:09:09.005260", "package_id": 407, "build_id": 153325, "state": 1, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1264612149.00526, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-3.fc13", "start_time": null, "creation_event_id": 2491406, "start_ts": null, "volume_id": 1, "creation_ts": 1264611076.19602, "name": "gimp", "task_id": 1948594, "volume_name": "fedora_koji_archive00", "release": "3.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-10-07 14:38:49.829409", "completion_time": "2008-10-07 15:04:11.705665", "package_id": 407, "build_id": 65596, "state": 2, "source": null, "epoch": 2, "version": "2.6.0", "completion_ts": 1223391851.70567, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.0-2.fc10", "start_time": null, "creation_event_id": 978818, "start_ts": null, "volume_id": 0, "creation_ts": 1223390329.82941, "name": "gimp", "task_id": 866641, "volume_name": "DEFAULT", "release": "2.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-11-17 11:26:56.865548", "completion_time": "2009-11-17 11:42:23.186158", "package_id": 407, "build_id": 141600, "state": 2, "source": null, "epoch": 2, "version": "2.6.7", "completion_ts": 1258458143.18616, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.7-3.fc12", "start_time": null, "creation_event_id": 2321331, "start_ts": null, "volume_id": 0, "creation_ts": 1258457216.86555, "name": "gimp", "task_id": 1811265, "volume_name": "DEFAULT", "release": "3.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-11-17 11:28:27.475188", "completion_time": "2009-11-17 11:52:37.966263", "package_id": 407, "build_id": 141601, "state": 2, "source": null, "epoch": 2, "version": "2.6.7", "completion_ts": 1258458757.96626, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.7-3.fc11", "start_time": null, "creation_event_id": 2321343, "start_ts": null, "volume_id": 0, "creation_ts": 1258457307.47519, "name": "gimp", "task_id": 1811270, "volume_name": "DEFAULT", "release": "3.fc11"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-11-17 11:29:32.534497", "completion_time": "2009-11-17 11:45:39.608793", "package_id": 407, "build_id": 141602, "state": 1, "source": null, "epoch": 2, "version": "2.6.7", "completion_ts": 1258458339.60879, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.7-3.fc13", "start_time": null, "creation_event_id": 2321349, "start_ts": null, "volume_id": 1, "creation_ts": 1258457372.5345, "name": "gimp", "task_id": 1811280, "volume_name": "fedora_koji_archive00", "release": "3.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-12-11 09:37:49.616187", "completion_time": "2009-12-11 09:49:11.152519", "package_id": 407, "build_id": 146809, "state": 1, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1260524951.15252, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-1.fc13", "start_time": null, "creation_event_id": 2395901, "start_ts": null, "volume_id": 1, "creation_ts": 1260524269.61619, "name": "gimp", "task_id": 1869219, "volume_name": "fedora_koji_archive00", "release": "1.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-12-11 09:42:05.045894", "completion_time": "2009-12-11 09:58:23.411412", "package_id": 407, "build_id": 146811, "state": 1, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1260525503.41141, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-1.fc12", "start_time": null, "creation_event_id": 2395913, "start_ts": null, "volume_id": 1, "creation_ts": 1260524525.04589, "name": "gimp", "task_id": 1869225, "volume_name": "fedora_koji_archive00", "release": "1.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-01-25 14:23:37.026637", "completion_time": "2010-01-25 14:36:39.751571", "package_id": 407, "build_id": 152880, "state": 1, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1264430199.75157, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-2.fc13", "start_time": null, "creation_event_id": 2484560, "start_ts": null, "volume_id": 1, "creation_ts": 1264429417.02664, "name": "gimp", "task_id": 1942834, "volume_name": "fedora_koji_archive00", "release": "2.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-02-25 17:14:22.436402", "completion_time": "2010-02-25 17:25:47.352097", "package_id": 407, "build_id": 158395, "state": 1, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1267118747.3521, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-4.fc14", "start_time": null, "creation_event_id": 2569138, "start_ts": null, "volume_id": 1, "creation_ts": 1267118062.4364, "name": "gimp", "task_id": 2014168, "volume_name": "fedora_koji_archive00", "release": "4.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-02-26 10:06:42.220708", "completion_time": "2010-02-26 10:20:59.075774", "package_id": 407, "build_id": 158768, "state": 2, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1267179659.07577, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-4.fc13", "start_time": null, "creation_event_id": 2570726, "start_ts": null, "volume_id": 0, "creation_ts": 1267178802.22071, "name": "gimp", "task_id": 2015497, "volume_name": "DEFAULT", "release": "4.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-02-26 19:07:32.129631", "completion_time": "2010-02-26 19:18:15.190403", "package_id": 407, "build_id": 158834, "state": 2, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1267211895.1904, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-5.fc14", "start_time": null, "creation_event_id": 2571970, "start_ts": null, "volume_id": 0, "creation_ts": 1267211252.12963, "name": "gimp", "task_id": 2016659, "volume_name": "DEFAULT", "release": "5.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-02-26 19:08:56.770540", "completion_time": "2010-02-26 19:19:54.279164", "package_id": 407, "build_id": 158835, "state": 1, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1267211994.27916, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-5.fc13", "start_time": null, "creation_event_id": 2571974, "start_ts": null, "volume_id": 1, "creation_ts": 1267211336.77054, "name": "gimp", "task_id": 2016661, "volume_name": "fedora_koji_archive00", "release": "5.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-03-25 10:20:14.051634", "completion_time": "2010-03-25 10:31:32.498424", "package_id": 407, "build_id": 163630, "state": 2, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1269513092.49842, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-6.fc14", "start_time": null, "creation_event_id": 2643208, "start_ts": null, "volume_id": 0, "creation_ts": 1269512414.05163, "name": "gimp", "task_id": 2074662, "volume_name": "DEFAULT", "release": "6.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-23 12:01:42.465549", "completion_time": "2010-06-23 12:13:29.911466", "package_id": 407, "build_id": 179376, "state": 2, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1277295209.91147, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-10.fc14", "start_time": null, "creation_event_id": 2864203, "start_ts": null, "volume_id": 0, "creation_ts": 1277294502.46555, "name": "gimp", "task_id": 2267754, "volume_name": "DEFAULT", "release": "10.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-04-19 16:15:16.323816", "completion_time": "2010-04-19 16:26:21.806524", "package_id": 407, "build_id": 167860, "state": 2, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1271694381.80652, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-7.fc13", "start_time": null, "creation_event_id": 2703147, "start_ts": null, "volume_id": 0, "creation_ts": 1271693716.32382, "name": "gimp", "task_id": 2126291, "volume_name": "DEFAULT", "release": "7.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-24 10:46:34.851439", "completion_time": "2010-06-24 11:02:41.757959", "package_id": 407, "build_id": 179538, "state": 2, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1277377361.75796, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-1.fc12", "start_time": null, "creation_event_id": 2866396, "start_ts": null, "volume_id": 0, "creation_ts": 1277376394.85144, "name": "gimp", "task_id": 2269755, "volume_name": "DEFAULT", "release": "1.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-25 12:02:01.615945", "completion_time": "2010-06-25 12:18:16.466394", "package_id": 407, "build_id": 179696, "state": 2, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1277468296.46639, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-2.fc12", "start_time": null, "creation_event_id": 2868724, "start_ts": null, "volume_id": 0, "creation_ts": 1277467321.61595, "name": "gimp", "task_id": 2271985, "volume_name": "DEFAULT", "release": "2.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2009-03-17 08:33:42.359643", "completion_time": "2009-03-17 08:56:03.122228", "package_id": 407, "build_id": 94442, "state": 2, "source": null, "epoch": 2, "version": "2.6.5", "completion_ts": 1237280163.12223, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.5-5.fc10", "start_time": null, "creation_event_id": 1454484, "start_ts": null, "volume_id": 0, "creation_ts": 1237278822.35964, "name": "gimp", "task_id": 1245690, "volume_name": "DEFAULT", "release": "5.fc10"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-18 14:28:35.022989", "completion_time": "2010-06-18 14:38:37.636389", "package_id": 407, "build_id": 178609, "state": 2, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1276871917.63639, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-8.fc14", "start_time": null, "creation_event_id": 2851521, "start_ts": null, "volume_id": 0, "creation_ts": 1276871315.02299, "name": "gimp", "task_id": 2257272, "volume_name": "DEFAULT", "release": "8.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-18 14:44:37.682045", "completion_time": "2010-06-18 15:03:32.803336", "package_id": 407, "build_id": 178615, "state": 2, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1276873412.80334, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-8.fc12", "start_time": null, "creation_event_id": 2851573, "start_ts": null, "volume_id": 0, "creation_ts": 1276872277.68204, "name": "gimp", "task_id": 2257375, "volume_name": "DEFAULT", "release": "8.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-18 14:28:50.742025", "completion_time": "2010-06-18 14:39:11.263846", "package_id": 407, "build_id": 178610, "state": 2, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1276871951.26385, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.8-8.fc13", "start_time": null, "creation_event_id": 2851526, "start_ts": null, "volume_id": 0, "creation_ts": 1276871330.74202, "name": "gimp", "task_id": 2257276, "volume_name": "DEFAULT", "release": "8.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-28 16:17:01.398573", "completion_time": "2010-06-28 16:33:25.542082", "package_id": 407, "build_id": 180178, "state": 2, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1277742805.54208, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-3.fc12", "start_time": null, "creation_event_id": 2875418, "start_ts": null, "volume_id": 0, "creation_ts": 1277741821.39857, "name": "gimp", "task_id": 2277960, "volume_name": "DEFAULT", "release": "3.fc12"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-07-09 12:25:54.763059", "completion_time": "2010-07-09 12:33:16.910456", "package_id": 407, "build_id": 182758, "state": 1, "source": null, "epoch": 2, "version": "2.6.10", "completion_ts": 1278678796.91046, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.10-1.fc13", "start_time": null, "creation_event_id": 2910620, "start_ts": null, "volume_id": 1, "creation_ts": 1278678354.76306, "name": "gimp", "task_id": 2308829, "volume_name": "fedora_koji_archive00", "release": "1.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-08-24 09:36:57.536081", "completion_time": "2010-08-24 09:47:53.712851", "package_id": 407, "build_id": 191737, "state": 2, "source": null, "epoch": 2, "version": "2.6.10", "completion_ts": 1282643273.71285, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.10-5.fc15", "start_time": null, "creation_event_id": 3031247, "start_ts": null, "volume_id": 0, "creation_ts": 1282642617.53608, "name": "gimp", "task_id": 2421175, "volume_name": "DEFAULT", "release": "5.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-08-19 16:30:39.256385", "completion_time": "2010-08-19 16:39:06.848670", "package_id": 407, "build_id": 191034, "state": 2, "source": null, "epoch": 2, "version": "2.6.10", "completion_ts": 1282235946.84867, "owner_id": 160, "owner_name": "rdieter", "nvr": "gimp-2.6.10-4.fc15", "start_time": null, "creation_event_id": 3021912, "start_ts": null, "volume_id": 0, "creation_ts": 1282235439.25639, "name": "gimp", "task_id": 2412050, "volume_name": "DEFAULT", "release": "4.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-08-11 21:35:15.841456", "completion_time": "2010-08-11 21:52:08.121879", "package_id": 407, "build_id": 189562, "state": 2, "source": null, "epoch": 2, "version": "2.6.10", "completion_ts": 1281563528.12188, "owner_id": 535, "owner_name": "dmalcolm", "nvr": "gimp-2.6.10-3.fc14", "start_time": null, "creation_event_id": 3003693, "start_ts": null, "volume_id": 0, "creation_ts": 1281562515.84146, "name": "gimp", "task_id": 2394727, "volume_name": "DEFAULT", "release": "3.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-07-01 09:07:53.518135", "completion_time": "2010-07-01 09:18:40.068255", "package_id": 407, "build_id": 180376, "state": 2, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1277975920.06825, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-4.fc14", "start_time": null, "creation_event_id": 2883662, "start_ts": null, "volume_id": 0, "creation_ts": 1277975273.51814, "name": "gimp", "task_id": 2285356, "volume_name": "DEFAULT", "release": "4.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-23 17:18:21.273965", "completion_time": "2010-06-23 17:28:10.251450", "package_id": 407, "build_id": 179440, "state": 2, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1277314090.25145, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-1.fc14", "start_time": null, "creation_event_id": 2865123, "start_ts": null, "volume_id": 0, "creation_ts": 1277313501.27396, "name": "gimp", "task_id": 2268529, "volume_name": "DEFAULT", "release": "1.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-22 14:58:46.473528", "completion_time": "2010-06-22 15:08:47.356956", "package_id": 407, "build_id": 179202, "state": 2, "source": null, "epoch": 2, "version": "2.6.8", "completion_ts": 1277219327.35696, "owner_id": 78, "owner_name": "mclasen", "nvr": "gimp-2.6.8-9.fc14", "start_time": null, "creation_event_id": 2861893, "start_ts": null, "volume_id": 0, "creation_ts": 1277218726.47353, "name": "gimp", "task_id": 2265572, "volume_name": "DEFAULT", "release": "9.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-25 12:00:03.996097", "completion_time": "2010-06-25 12:10:43.880139", "package_id": 407, "build_id": 179694, "state": 2, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1277467843.88014, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-2.fc14", "start_time": null, "creation_event_id": 2868714, "start_ts": null, "volume_id": 0, "creation_ts": 1277467203.9961, "name": "gimp", "task_id": 2271981, "volume_name": "DEFAULT", "release": "2.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-10-04 11:22:34.997773", "completion_time": "2010-10-04 11:44:11.016980", "package_id": 407, "build_id": 198727, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1286192651.01698, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-1.fc15", "start_time": null, "creation_event_id": 3123388, "start_ts": null, "volume_id": 0, "creation_ts": 1286191354.99777, "name": "gimp", "task_id": 2510393, "volume_name": "DEFAULT", "release": "1.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-10-04 11:24:01.020918", "completion_time": "2010-10-04 11:34:28.723884", "package_id": 407, "build_id": 198730, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1286192068.72388, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-1.fc13", "start_time": null, "creation_event_id": 3123402, "start_ts": null, "volume_id": 1, "creation_ts": 1286191441.02092, "name": "gimp", "task_id": 2510403, "volume_name": "fedora_koji_archive00", "release": "1.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-11-06 14:50:05.259610", "completion_time": "2010-11-06 15:02:58.989698", "package_id": 407, "build_id": 203708, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1289055778.9897, "owner_id": 160, "owner_name": "rdieter", "nvr": "gimp-2.6.11-2.fc15", "start_time": null, "creation_event_id": 3191298, "start_ts": null, "volume_id": 0, "creation_ts": 1289055005.25961, "name": "gimp", "task_id": 2582203, "volume_name": "DEFAULT", "release": "2.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-08-11 21:36:56.251306", "completion_time": "2010-08-11 21:51:14.645519", "package_id": 407, "build_id": 189566, "state": 2, "source": null, "epoch": 2, "version": "2.6.10", "completion_ts": 1281563474.64552, "owner_id": 535, "owner_name": "dmalcolm", "nvr": "gimp-2.6.10-3.fc15", "start_time": null, "creation_event_id": 3003727, "start_ts": null, "volume_id": 0, "creation_ts": 1281562616.25131, "name": "gimp", "task_id": 2394729, "volume_name": "DEFAULT", "release": "3.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-12-15 20:21:38.153244", "completion_time": "2010-12-15 20:30:26.454789", "package_id": 407, "build_id": 209646, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1292445026.45479, "owner_id": 160, "owner_name": "rdieter", "nvr": "gimp-2.6.11-4.fc15", "start_time": null, "creation_event_id": 3272254, "start_ts": null, "volume_id": 0, "creation_ts": 1292444498.15324, "name": "gimp", "task_id": 2667472, "volume_name": "DEFAULT", "release": "4.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-11-24 08:15:26.764802", "completion_time": "2008-11-24 08:55:57.236450", "package_id": 407, "build_id": 70830, "state": 2, "source": null, "epoch": 2, "version": "2.6.3", "completion_ts": 1227516957.23645, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.3-1.fc9", "start_time": null, "creation_event_id": 1077098, "start_ts": null, "volume_id": 0, "creation_ts": 1227514526.7648, "name": "gimp", "task_id": 947411, "volume_name": "DEFAULT", "release": "1.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2008-12-01 12:27:49.638515", "completion_time": "2008-12-01 12:55:38.561457", "package_id": 407, "build_id": 72459, "state": 2, "source": null, "epoch": 2, "version": "2.6.3", "completion_ts": 1228136138.56146, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.3-2.fc9", "start_time": null, "creation_event_id": 1095124, "start_ts": null, "volume_id": 0, "creation_ts": 1228134469.63851, "name": "gimp", "task_id": 965917, "volume_name": "DEFAULT", "release": "2.fc9"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-03-13 12:22:20.841612", "completion_time": "2011-03-13 12:33:01.191768", "package_id": 407, "build_id": 233544, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1300019581.19177, "owner_id": 603, "owner_name": "mkasik", "nvr": "gimp-2.6.11-8.fc16", "start_time": null, "creation_event_id": 3556702, "start_ts": null, "volume_id": 0, "creation_ts": 1300018940.84161, "name": "gimp", "task_id": 2908369, "volume_name": "DEFAULT", "release": "8.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-24 09:19:39.327345", "completion_time": "2010-06-24 09:30:36.934033", "package_id": 407, "build_id": 179518, "state": 2, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1277371836.93403, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-1.fc13", "start_time": null, "creation_event_id": 2866160, "start_ts": null, "volume_id": 0, "creation_ts": 1277371179.32734, "name": "gimp", "task_id": 2269542, "volume_name": "DEFAULT", "release": "1.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2010-06-25 12:01:26.730879", "completion_time": "2010-06-25 12:12:03.988906", "package_id": 407, "build_id": 179695, "state": 2, "source": null, "epoch": 2, "version": "2.6.9", "completion_ts": 1277467923.98891, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.9-2.fc13", "start_time": null, "creation_event_id": 2868720, "start_ts": null, "volume_id": 0, "creation_ts": 1277467286.73088, "name": "gimp", "task_id": 2271983, "volume_name": "DEFAULT", "release": "2.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-05-06 10:18:58.519859", "completion_time": "2011-05-06 10:27:11.121290", "package_id": 407, "build_id": 242687, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1304677631.12129, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-11.fc16", "start_time": null, "creation_event_id": 3699871, "start_ts": null, "volume_id": 0, "creation_ts": 1304677138.51986, "name": "gimp", "task_id": 3053919, "volume_name": "DEFAULT", "release": "11.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-05-08 01:47:23.498027", "completion_time": "2011-05-08 01:58:37.705976", "package_id": 407, "build_id": 242912, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1304819917.70598, "owner_id": 17, "owner_name": "caillon", "nvr": "gimp-2.6.11-12.fc16", "start_time": null, "creation_event_id": 3703152, "start_ts": null, "volume_id": 0, "creation_ts": 1304819243.49803, "name": "gimp", "task_id": 3057384, "volume_name": "DEFAULT", "release": "12.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-05-23 14:07:07.257889", "completion_time": "2011-05-23 14:15:42.354409", "package_id": 407, "build_id": 244872, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1306160142.35441, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-13.fc16", "start_time": null, "creation_event_id": 3732051, "start_ts": null, "volume_id": 0, "creation_ts": 1306159627.25789, "name": "gimp", "task_id": 3087474, "volume_name": "DEFAULT", "release": "13.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-05-23 14:08:22.148254", "completion_time": "2011-05-23 14:16:03.480565", "package_id": 407, "build_id": 244875, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1306160163.48057, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-13.fc13", "start_time": null, "creation_event_id": 3732066, "start_ts": null, "volume_id": 0, "creation_ts": 1306159702.14825, "name": "gimp", "task_id": 3087482, "volume_name": "DEFAULT", "release": "13.fc13"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-05-23 14:07:52.152888", "completion_time": "2011-05-23 14:18:22.267543", "package_id": 407, "build_id": 244873, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1306160302.26754, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-13.fc14", "start_time": null, "creation_event_id": 3732056, "start_ts": null, "volume_id": 0, "creation_ts": 1306159672.15289, "name": "gimp", "task_id": 3087478, "volume_name": "DEFAULT", "release": "13.fc14"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-05-23 14:08:03.111350", "completion_time": "2011-05-23 14:16:03.540416", "package_id": 407, "build_id": 244874, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1306160163.54042, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-13.fc15", "start_time": null, "creation_event_id": 3732059, "start_ts": null, "volume_id": 0, "creation_ts": 1306159683.11135, "name": "gimp", "task_id": 3087476, "volume_name": "DEFAULT", "release": "13.fc15"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-05-23 15:00:13.750355", "completion_time": "2011-05-23 15:11:38.444596", "package_id": 407, "build_id": 244881, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1306163498.4446, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-14.fc16", "start_time": null, "creation_event_id": 3732160, "start_ts": null, "volume_id": 6, "creation_ts": 1306162813.75036, "name": "gimp", "task_id": 3087576, "volume_name": "fedora_koji_archive05", "release": "14.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-06-07 11:19:11.248856", "completion_time": "2011-06-07 11:33:23.396206", "package_id": 407, "build_id": 246625, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1307446403.39621, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-15.fc16", "start_time": null, "creation_event_id": 3758609, "start_ts": null, "volume_id": 0, "creation_ts": 1307445551.24886, "name": "gimp", "task_id": 3115636, "volume_name": "DEFAULT", "release": "15.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-06-10 19:48:08.553755", "completion_time": "2011-06-10 19:59:37.889129", "package_id": 407, "build_id": 247285, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1307735977.88913, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-16.fc16", "start_time": null, "creation_event_id": 3767268, "start_ts": null, "volume_id": 6, "creation_ts": 1307735288.55376, "name": "gimp", "task_id": 3124588, "volume_name": "fedora_koji_archive05", "release": "16.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-08-12 13:15:14.710451", "completion_time": "2011-08-12 13:28:04.269610", "package_id": 407, "build_id": 258269, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1313155684.26961, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-21.fc17", "start_time": null, "creation_event_id": 3907941, "start_ts": null, "volume_id": 0, "creation_ts": 1313154914.71045, "name": "gimp", "task_id": 3268327, "volume_name": "DEFAULT", "release": "21.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-07-15 16:52:16.123676", "completion_time": "2011-07-15 17:06:07.058592", "package_id": 407, "build_id": 253012, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1310749567.05859, "owner_id": 603, "owner_name": "mkasik", "nvr": "gimp-2.6.11-18.fc16", "start_time": null, "creation_event_id": 3842274, "start_ts": null, "volume_id": 6, "creation_ts": 1310748736.12368, "name": "gimp", "task_id": 3201842, "volume_name": "fedora_koji_archive05", "release": "18.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-06-24 09:12:50.361351", "completion_time": "2011-06-24 09:24:17.631862", "package_id": 407, "build_id": 250124, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1308907457.63186, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-17.fc16", "start_time": null, "creation_event_id": 3800942, "start_ts": null, "volume_id": 6, "creation_ts": 1308906770.36135, "name": "gimp", "task_id": 3157989, "volume_name": "fedora_koji_archive05", "release": "17.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-08-03 12:23:35.552393", "completion_time": "2011-08-03 12:35:45.836033", "package_id": 407, "build_id": 256980, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1312374945.83603, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-19.fc16", "start_time": null, "creation_event_id": 3890082, "start_ts": null, "volume_id": 0, "creation_ts": 1312374215.55239, "name": "gimp", "task_id": 3249430, "volume_name": "DEFAULT", "release": "19.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-08-03 11:38:35.025635", "completion_time": "2011-08-03 11:50:04.542723", "package_id": 407, "build_id": 256973, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1312372204.54272, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-19.fc17", "start_time": null, "creation_event_id": 3889992, "start_ts": null, "volume_id": 0, "creation_ts": 1312371515.02564, "name": "gimp", "task_id": 3249353, "volume_name": "DEFAULT", "release": "19.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-08-04 10:18:36.520131", "completion_time": "2011-08-04 10:30:56.376185", "package_id": 407, "build_id": 257152, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1312453856.37618, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-20.fc17", "start_time": null, "creation_event_id": 3892634, "start_ts": null, "volume_id": 0, "creation_ts": 1312453116.52013, "name": "gimp", "task_id": 3251740, "volume_name": "DEFAULT", "release": "20.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-08-12 13:31:31.836343", "completion_time": "2011-08-12 13:42:53.618111", "package_id": 407, "build_id": 258276, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1313156573.61811, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-21.fc16", "start_time": null, "creation_event_id": 3907999, "start_ts": null, "volume_id": 0, "creation_ts": 1313155891.83634, "name": "gimp", "task_id": 3268384, "volume_name": "DEFAULT", "release": "21.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-10-03 12:40:14.081083", "completion_time": "2011-10-03 12:54:09.488822", "package_id": 407, "build_id": 266554, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1317646449.48882, "owner_id": 603, "owner_name": "mkasik", "nvr": "gimp-2.6.11-23.fc16", "start_time": null, "creation_event_id": 4026038, "start_ts": null, "volume_id": 1, "creation_ts": 1317645614.08108, "name": "gimp", "task_id": 3398977, "volume_name": "fedora_koji_archive00", "release": "23.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-09-19 17:09:03.416283", "completion_time": "2011-09-19 17:21:01.319917", "package_id": 407, "build_id": 264269, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1316452861.31992, "owner_id": 603, "owner_name": "mkasik", "nvr": "gimp-2.6.11-22.fc17", "start_time": null, "creation_event_id": 3992714, "start_ts": null, "volume_id": 0, "creation_ts": 1316452143.41628, "name": "gimp", "task_id": 3361408, "volume_name": "DEFAULT", "release": "22.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-09-21 10:33:04.362998", "completion_time": "2011-09-21 10:42:15.442769", "package_id": 407, "build_id": 264755, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1316601735.44277, "owner_id": 603, "owner_name": "mkasik", "nvr": "gimp-2.6.11-22.fc16", "start_time": null, "creation_event_id": 3998253, "start_ts": null, "volume_id": 0, "creation_ts": 1316601184.363, "name": "gimp", "task_id": 3367224, "volume_name": "DEFAULT", "release": "22.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-10-28 18:13:36.303896", "completion_time": "2011-10-28 18:27:23.127424", "package_id": 407, "build_id": 271273, "state": 1, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1319826443.12742, "owner_id": 160, "owner_name": "rdieter", "nvr": "gimp-2.6.11-24.fc17", "start_time": null, "creation_event_id": 4090347, "start_ts": null, "volume_id": 6, "creation_ts": 1319825616.3039, "name": "gimp", "task_id": 3468926, "volume_name": "fedora_koji_archive05", "release": "24.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2011-08-04 10:38:31.354699", "completion_time": "2011-08-04 10:50:03.776097", "package_id": 407, "build_id": 257154, "state": 2, "source": null, "epoch": 2, "version": "2.6.11", "completion_ts": 1312455003.7761, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.11-20.fc16", "start_time": null, "creation_event_id": 3892662, "start_ts": null, "volume_id": 0, "creation_ts": 1312454311.3547, "name": "gimp", "task_id": 3251762, "volume_name": "DEFAULT", "release": "20.fc16"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-01-10 16:25:54.145193", "completion_time": "2012-01-10 16:36:00.051001", "package_id": 407, "build_id": 282554, "state": 1, "source": null, "epoch": 2, "version": "2.7.4", "completion_ts": 1326213360.051, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.7.4-2.fc17", "start_time": null, "creation_event_id": 4251122, "start_ts": null, "volume_id": 6, "creation_ts": 1326212754.14519, "name": "gimp", "task_id": 3635551, "volume_name": "fedora_koji_archive05", "release": "2.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-04-11 19:53:06.072341", "completion_time": "2012-04-11 20:06:27.231445", "package_id": 407, "build_id": 312679, "state": 1, "source": null, "epoch": 2, "version": "2.8.0", "completion_ts": 1334174787.23145, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.0-0.2.RC1.gitff6c280.fc18", "start_time": null, "creation_event_id": 4594310, "start_ts": null, "volume_id": 6, "creation_ts": 1334173986.07234, "name": "gimp", "task_id": 3980341, "volume_name": "fedora_koji_archive05", "release": "0.2.RC1.gitff6c280.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-04-11 21:42:43.378103", "completion_time": "2012-04-11 21:56:53.402268", "package_id": 407, "build_id": 312686, "state": 1, "source": null, "epoch": 2, "version": "2.8.0", "completion_ts": 1334181413.40227, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.0-0.2.RC1.gitff6c280.fc17", "start_time": null, "creation_event_id": 4594635, "start_ts": null, "volume_id": 1, "creation_ts": 1334180563.3781, "name": "gimp", "task_id": 3980773, "volume_name": "fedora_koji_archive00", "release": "0.2.RC1.gitff6c280.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-03-27 11:04:11.694711", "completion_time": "2012-03-27 11:14:08.536379", "package_id": 407, "build_id": 309868, "state": 2, "source": null, "epoch": 2, "version": "2.7.5", "completion_ts": 1332846848.53638, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.7.5-2.fc17", "start_time": null, "creation_event_id": 4554872, "start_ts": null, "volume_id": 0, "creation_ts": 1332846251.69471, "name": "gimp", "task_id": 3936039, "volume_name": "DEFAULT", "release": "2.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-05-10 08:41:32.042587", "completion_time": "2012-05-10 08:55:23.099732", "package_id": 407, "build_id": 318237, "state": 2, "source": null, "epoch": 2, "version": "2.8.0", "completion_ts": 1336640123.09973, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.0-1.fc18", "start_time": null, "creation_event_id": 4674047, "start_ts": null, "volume_id": 0, "creation_ts": 1336639292.04259, "name": "gimp", "task_id": 4067288, "volume_name": "DEFAULT", "release": "1.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-05-10 09:01:13.257382", "completion_time": "2012-05-10 09:14:48.469682", "package_id": 407, "build_id": 318238, "state": 1, "source": null, "epoch": 2, "version": "2.8.0", "completion_ts": 1336641288.46968, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.0-1.fc17", "start_time": null, "creation_event_id": 4674083, "start_ts": null, "volume_id": 1, "creation_ts": 1336640473.25738, "name": "gimp", "task_id": 4067306, "volume_name": "fedora_koji_archive00", "release": "1.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-04-03 14:44:35.468495", "completion_time": "2012-04-03 14:59:42.131407", "package_id": 407, "build_id": 311470, "state": 1, "source": null, "epoch": 2, "version": "2.8.0", "completion_ts": 1333465182.13141, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.0-0.1.RC1.fc18", "start_time": null, "creation_event_id": 4576319, "start_ts": null, "volume_id": 6, "creation_ts": 1333464275.46849, "name": "gimp", "task_id": 3960041, "volume_name": "fedora_koji_archive05", "release": "0.1.RC1.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-04-03 14:50:36.527212", "completion_time": "2012-04-03 15:05:31.450661", "package_id": 407, "build_id": 311471, "state": 1, "source": null, "epoch": 2, "version": "2.8.0", "completion_ts": 1333465531.45066, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.8.0-0.1.RC1.fc17", "start_time": null, "creation_event_id": 4576341, "start_ts": null, "volume_id": 6, "creation_ts": 1333464636.52721, "name": "gimp", "task_id": 3960070, "volume_name": "fedora_koji_archive05", "release": "0.1.RC1.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-03-13 10:38:16.790644", "completion_time": "2012-03-13 10:51:57.324474", "package_id": 407, "build_id": 306885, "state": 2, "source": null, "epoch": 2, "version": "2.7.5", "completion_ts": 1331635917.32447, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.7.5-1.fc18", "start_time": null, "creation_event_id": 4512539, "start_ts": null, "volume_id": 0, "creation_ts": 1331635096.79064, "name": "gimp", "task_id": 3888548, "volume_name": "DEFAULT", "release": "1.fc18"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-03-13 10:38:24.398335", "completion_time": "2012-03-13 10:49:18.039384", "package_id": 407, "build_id": 306886, "state": 2, "source": null, "epoch": 2, "version": "2.7.5", "completion_ts": 1331635758.03938, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.7.5-1.fc17", "start_time": null, "creation_event_id": 4512543, "start_ts": null, "volume_id": 0, "creation_ts": 1331635104.39833, "name": "gimp", "task_id": 3888556, "volume_name": "DEFAULT", "release": "1.fc17"}, {"package_name": "gimp", "extra": null, "creation_time": "2012-02-01 10:22:30.017395", "completion_time": "2012-02-01 10:33:44.395738", "package_id": 407, "build_id": 296695, "state": 1, "source": null, "epoch": 2, "version": "2.6.12", "completion_ts": 1328092424.39574, "owner_id": 11, "owner_name": "nphilipp", "nvr": "gimp-2.6.12-1.fc16", "start_time": null, "creation_event_id": 4381291, "start_ts": null, "volume_id": 1, "creation_ts": 1328091750.0174, "name": "gimp", "task_id": 3751441, "volume_name": "fedora_koji_archive00", "release": "1.fc16"}] 

\ No newline at end of file

@@ -0,0 +1,71 @@ 

+ import json

+ import os.path

+ from unittest import mock

+ 

+ import pytest

+ 

+ import next_build

+ 

+ 

+ __here__ = os.path.dirname(__file__)

+ 

+ test_data = [

+     {

+         "package": "gimp",

+         "expected_results": [

+             # 5 existing builds -> 6

+             {

+                 "dist": "fc32",

+                 "last": "gimp-2.10.14-4.fc32.1",

+                 "next": "gimp-2.10.14-6.fc32",

+             },

+             {

+                 "dist": "fc31",

+                 "last": "gimp-2.10.14-3.fc31",

+                 "next": "gimp-2.10.14-4.fc31",

+             },

+         ],

+     },

+ ]

+ 

+ 

+ def data_as_test_parameters(test_data):

+     parameters = []

+ 

+     for datum in test_data:

+         blueprint = datum.copy()

+         expected_results = blueprint.pop("expected_results")

+         for expected in expected_results:

+             parameters.append({**blueprint, **expected})

+ 

+     return parameters

+ 

+ 

+ class TestNextBuild:

+     @pytest.mark.parametrize("test_data", data_as_test_parameters(test_data))

+     def test_main(self, test_data, capsys):

+         with open(

+             os.path.join(

+                 __here__, "koji-output", "list-builds", test_data["package"] + ".json"

+             ),

+             "rb",

+         ) as f:

+             koji_list_builds_output = json.load(f)

+ 

+         with mock.patch("next_build.koji") as mock_koji:

+             mock_client = mock.MagicMock()

+             mock_koji.ClientSession.return_value = mock_client

+             mock_client.getPackageID.return_value = 1234

+             mock_client.listBuilds.return_value = koji_list_builds_output

+ 

+             next_build.main((test_data["package"], test_data["dist"]))

+ 

+         mock_client.getPackageID.assert_called_once()

+         mock_client.listBuilds.assert_called_once()

+ 

+         expected_output = (

+             f"Last build: {test_data['last']}\n" f"Next build: {test_data['next']}\n"

+         )

+         captured_output = capsys.readouterr()

+ 

+         assert captured_output.out == expected_output

  • for some reason, black still wasn't happy here, reran it
  • basic flake8 config: line length, application-import-names, etc.
  • don't just ignore not wholly numerical releases
  • pass along arguments, to make them mockable in tests
  • use the koji module directly to get forgo a lot of parsing effort (and have access to the epoch of packages)
  • test next_build.py (needs pytest)

Nice commits, thanks!

:thumbsup: for me

Pull-Request has been merged by nphilipp

4 years ago