[docker-io] NVR: docker-io-1.5.0-3.git802802b

2015-02-12 Thread Lokesh Mandvekar
commit 3324d518f617e26a7e5df774dbb7415245458b0b
Author: Lokesh Mandvekar l...@fedoraproject.org
Date:   Thu Feb 12 23:32:23 2015 +0100

NVR: docker-io-1.5.0-3.git802802b

Signed-off-by: Lokesh Mandvekar l...@fedoraproject.org

 docker-io.spec |7 +--
 sources|2 +-
 2 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/docker-io.spec b/docker-io.spec
index 6084ae1..3cc2fc9 100644
--- a/docker-io.spec
+++ b/docker-io.spec
@@ -11,14 +11,14 @@
 
 %global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
 
-%global commit 54b59c2b2f440df0a513a37d7709fc5b0c88773f
+%global commit 802802b7812b7c73aefec4e922cad82f8dcddd4c
 %global shortcommit %(c=%{commit}; echo ${c:0:7})
 
 %global tar_import_path code.google.com/p/go/src/pkg/archive/tar
 
 Name:   %{repo}-io
 Version:   1.5.0
-Release:   2.git%{shortcommit}%{?dist}
+Release:   3.git%{shortcommit}%{?dist}
 Summary:Automates deployment of containerized applications
 License:ASL 2.0
 URL:http://www.docker.com
@@ -268,6 +268,9 @@ exit 0
 %{_datadir}/zsh/site-functions/_docker
 
 %changelog
+* Thu Feb 12 2015 Lokesh Mandvekar l...@fedoraproject.org - 
1.5.0-3.git802802b
+- built commit#802802b
+
 * Wed Feb 11 2015 Lokesh Mandvekar l...@fedoraproject.org - 
1.5.0-2.git54b59c2
 - provide golang paths only upto the repo's root dir
 - merge pkg-devel into devel
diff --git a/sources b/sources
index 82282dd..fb3b3de 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-72c51ef2e066e9b6f6eb1ac91c9df961  docker-54b59c2.tar.gz
+4e97b29a981b78d5ec6ad023ba640e09  docker-802802b.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


File docker-802802b.tar.gz uploaded to lookaside cache by lsm5

2015-02-12 Thread Lokesh Mandvekar
A file has been added to the lookaside cache for docker-io:

4e97b29a981b78d5ec6ad023ba640e09  docker-802802b.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[Bug 1191944] New: downloaded testsuite

2015-02-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1191944

Bug ID: 1191944
   Summary: downloaded testsuite
   Product: Fedora
   Version: rawhide
 Component: golang
  Assignee: vba...@redhat.com
  Reporter: jan.kratoch...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: admil...@redhat.com, golang@lists.fedoraproject.org,
lemen...@gmail.com, l...@redhat.com,
ren...@woralelandia.com, s...@shk.io, vba...@redhat.com



Description of problem:
golang testsuite depends on hg (mercurial) and then it would get downloaded
from network during build violating:
https://fedoraproject.org/wiki/Packaging:Guidelines#Build_time_network_access

Version-Release number of selected component (if applicable):
golang-1.4.1-1.fc23

How reproducible:
Always.

Steps to Reproduce:
http_proxy=http://localhost:3128/ https_proxy=http://localhost:3128/
rpmbuildlocal -bb *.spec

Actual results:
# Checking API compatibility.
Error running hg clone on go.tools: exit status 1
** unknown exception encountered, please report by visiting
[...]
failed build.
 - the error is due to unrelated mercurial Bug 1185641 - but the primary
problem is that the build should not depend on any remote network data.

Expected results:
Successful build.

Additional info:
When you check the Koji build
  https://kojipkgs.fedoraproject.org//work/tasks/2317/8642317/build.log
one can see:
  # Checking API compatibility.
  Skipping cmd/api checks; hg not available
While during plain local build it finds hg and it tries to use it.

Bug#1: Koji build process differs from local build process.
(a) Either disable Checking API compatibility to match the Koji build
(b) or BuildRequires: mercurial so that even Koji runs the testsuite.

(1a) is bad, testsuite should be run during build to sanity check the package.
(1b) is bad as it would violate:

https://fedoraproject.org/wiki/Packaging:Guidelines#Build_time_network_access

Therefore IMO the Fedora packaging should bundle a downloaded snapshot of the
testsuite.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[Bug 1192081] New: Modify base image Dockerfile to enable systemd to run smoothly

2015-02-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1192081

Bug ID: 1192081
   Summary: Modify base image Dockerfile to enable systemd to run
smoothly
   Product: Fedora
   Version: rawhide
 Component: docker-io
  Assignee: l...@redhat.com
  Reporter: vpav...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: adima...@gmail.com, admil...@redhat.com,
golang@lists.fedoraproject.org, hushan@gmail.com,
jchal...@redhat.com, jper...@centos.org,
l...@redhat.com, mat...@redhat.com,
mgold...@redhat.com, mimi...@redhat.com, s...@shk.io,
thr...@redhat.com, vba...@redhat.com



Description of problem:
systemd requires container=docker set in env and /run, /tmp to be mountpoints
start successfully. In my opinion, we should add 

ENV container=docker
VOLUME ['/run', '/tmp']

to the base image Dockerfile.

Command

docker run --it --rm -v /sys/fs/cgroup:/sys/fs/cgroup:ro fedora:rawhide
/usr/sbin/init

would then be all an user would need to boot systemd in a container.

I've already made some changes in KS file - remove fstab and machine-id, mask
mount units... which make the boot sequence smooth. 

More changes to boot sequence will probably come later (f.e. switch from
graphical.target to multi-user target)

I'd also like to suggest new Rawhide build to be pushed to registry. This one
works for me quite well: 
http://koji.fedoraproject.org/koji/taskinfo?taskID=8883309

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[Bug 1192081] Modify base image Dockerfile to enable systemd to run smoothly

2015-02-12 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1192081

Lokesh Mandvekar l...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED



--- Comment #1 from Lokesh Mandvekar l...@redhat.com ---
ack, will build and send a new image over to hub

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang