hanging thunderbird builds

2014-07-23 Thread Reindl Harald
https://koji.fedoraproject.org/koji/buildinfo?buildID=546585

State:   building
Started: Tue, 22 Jul 2014 15:13:36 UTC
Est. Completion: Tue, 22 Jul 2014 17:07:03 UTC

i would say that's not explainable with timezones :-)



signature.asc
Description: OpenPGP digital signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: hanging thunderbird builds

2014-07-23 Thread drago01
On Wed, Jul 23, 2014 at 9:56 AM, Reindl Harald  wrote:
> https://koji.fedoraproject.org/koji/buildinfo?buildID=546585
>
> State:   building
> Started: Tue, 22 Jul 2014 15:13:36 UTC
> Est. Completion: Tue, 22 Jul 2014 17:07:03 UTC

The "Est. Completion" in koji is mostly useless.

That seems to be just the usual "arm is slow" thing ...
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: hanging thunderbird builds

2014-07-23 Thread Reindl Harald

Am 23.07.2014 10:04, schrieb drago01:
> On Wed, Jul 23, 2014 at 9:56 AM, Reindl Harald  wrote:
>> https://koji.fedoraproject.org/koji/buildinfo?buildID=546585
>>
>> State:   building
>> Started: Tue, 22 Jul 2014 15:13:36 UTC
>> Est. Completion: Tue, 22 Jul 2014 17:07:03 UTC
> 
> The "Est. Completion" in koji is mostly useless.
> 
> That seems to be just the usual "arm is slow" thing ...

agreed but that duration and difference is even for kernel builds unusual



signature.asc
Description: OpenPGP digital signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: ANNOUNCE: Taking over ownership of retired package lazygal

2014-07-23 Thread Dominik 'Rathann' Mierzejewski
On Sunday, 20 July 2014 at 22:47, Björn Persson wrote:
> Dominik 'Rathann' Mierzejewski wrote:
> >I intend to unretire lazygal, a static web gallery generator, which was
> >retired as of F15.
> 
> Thank you for working on this. I was planning to unretire Lazygal myself
> two years ago, but I decided to wait and see how Fedora's policy for
> Javascript would turn out.
> 
> I see that Lazygal now bundles Javascript source instead of minified
> files, which is an improvement, but it's still bundled Javascript which
> is now forbidden in Fedora as far as I understand. How are you planning
> to handle this?

Unbundle, of course! Thanks for reminding me.

Regards,
Dominik
-- 
Fedora http://fedoraproject.org/wiki/User:Rathann
RPMFusion http://rpmfusion.org | MPlayer http://mplayerhq.hu
"Faith manages."
-- Delenn to Lennier in Babylon 5:"Confessions and Lamentations"
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Brokenness in newly created dist-git repositories

2014-07-23 Thread Richard W.M. Jones
On Tue, Jul 22, 2014 at 04:01:40PM -0700, Toshio Kuratomi wrote:
> On Tue, Jul 22, 2014 at 08:31:50PM +0100, Richard W.M. Jones wrote:
> > 
> > OK I see in the final comment there is a hang reported.  I would still
> > be interested in whether anyone else can reproduce the bug on the
> > specific two repos: ocaml-camlp4 & ocaml-labltk.
> > 
> Yep, I can reproduce on those two.  I notice that one of the comments on the
> bug seems to indicate that this is happening on git repos that only have the
> master branch so that might be a clue as to why these two new repositories
> are the only ones you're seeing with the issue.

That makes sense, thanks.

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-p2v converts physical machines to virtual machines.  Boot with a
live CD or over the network (PXE) and turn machines into KVM guests.
http://libguestfs.org/virt-v2v
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

RE: Advice needed for packaging local SELinux policy

2014-07-23 Thread John Florian
From: devel-boun...@lists.fedoraproject.org 
[mailto:devel-boun...@lists.fedoraproject.org] On Behalf Of Daniel J Walsh
Sent: Tuesday, July 22, 2014 14:12
To: Development discussions related to Fedora
Subject: Re: Advice needed for packaging local SELinux policy


On 07/22/2014 01:42 PM, John Florian wrote:
I have a locally maintained package for private use that among other things 
constrains proliferation of files in the following directory:

# ls -lZd /var/lib/puppet/reports/
drwxr-x---. puppet puppet system_u:object_r:puppet_var_lib_t:s0 
/var/lib/puppet/reports/

My rpm contains a script that uses the tmpwatch tool to do some of the work and 
is called by cron and ran as the puppet user.  Using the standard 
selinux-policy-targeted, I get this AVC (and perhaps others):

type=AVC msg=audit(1405588621.722:37432): avc:  denied  { read } for  pid=15113 
comm="tmpwatch" name="puppet" dev="vda3" ino=260273 
scontext=system_u:system_r:tmpreaper_t:s0-s0:c0.c1023 
tcontext=system_u:object_r:puppet_var_lib_t:s0 tclass=dir

I could change the job to run as root and am familiar with using audit2allow to 
make a local policy exception.  However, I’d like to resolve the issue via my 
rpm directly.  I’ve not been successful in finding any guidelines in how to 
best approach that task.  Do I package a bit of SEL policy or is there a way to 
have my script run with the puppet_var_lib_t context?
--
John Florian



Then you should add a custom policy to allow tmpreaper_t to manage 
puppet_var_lib_t.



Okay, that makes sense and is much as I suspected.  Can you (or anyone else) 
point me to a trivial example spec file that compiles the te to pp, installs 
(presumably in %post) and uninstalls (in %preun) so that I might avoid common 
pitfalls and leverage any macros or aids to do this easily and correctly?  Many 
thanks in advance!

--
John Florian


-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Advice needed for packaging local SELinux policy

2014-07-23 Thread Christopher Meng
http://pkgs.fedoraproject.org/cgit/pipelight-selinux.git/tree/pipelight-selinux.spec
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Elections Results for Summer 2014 FESCo Special Election

2014-07-23 Thread Jaroslav Reznik
Greetings, all!

The elections for the Fedora Engineering Steering Committee (FESCo)
Summer 2014 Special Election have concluded, and the results are
shown below.

FESCo is electing 3 seats this time. A total of 195 ballots were
cast, meaning a candidate could accumulate up to 975 votes (195 *
5). The results for the FESCo elections are as follows:

# votes |  name  
- +--
629 | Josh Boyer (FAS: jwboyer, IRC: jwb)
548 | Kalev Lember (FAS: kalev, IRC: kalev)
541 | Tomas Hozza (FAS: thozza, IRC: thozza)
---
463 | Lukáš Nykrýn (FAS: lnykryn, IRC: lnykryn)
362 | David King (FAS: amigadave, IRC: amigadave)

As these elections will fill the seats for the remainder of 
the term, Josh Boyer and Kalev Lember are each elected to FESCo 
until next spring. Tomas Hozza until after the F21 release this
fall.

Congratulations to the winning candidates, and thank you all
candidates for running this elections!

Jaroslav
___
devel-announce mailing list
devel-annou...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel-announce
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

RE: Advice needed for packaging local SELinux policy

2014-07-23 Thread John Florian
Perfect!  Thanks Christopher.

--
John Florian


-Original Message-
From: devel-boun...@lists.fedoraproject.org 
[mailto:devel-boun...@lists.fedoraproject.org] On Behalf Of Christopher Meng
Sent: Wednesday, July 23, 2014 09:12
To: Development discussions related to Fedora
Subject: Re: Advice needed for packaging local SELinux policy

http://pkgs.fedoraproject.org/cgit/pipelight-selinux.git/tree/pipelight-selinux.spec
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: PkgDB, pending ACL requests

2014-07-23 Thread Pierre-Yves Chibon
On Thu, Jul 17, 2014 at 03:28:56PM +0200, Pierre-Yves Chibon wrote:
> On Wed, Jul 09, 2014 at 10:05:25AM +0200, Pierre-Yves Chibon wrote:
> > Good Morning everyone!
> > 
> > In the version 1.13 of pkgdb2 a new API endpoint has been added that just
> > provide the list of pending ACL requests:
> > https://admin.fedoraproject.org/pkgdb/api/pendingacls
> > 
> > I just wanted to share with you the first line of its output:
> >   
> >   # Number of requests pending: 5492
> 
> Today we are at: 
> 
># Number of requests pending: 5410
> 
> So there is some improvements :)

Today's number is:

# Number of requests pending: 5151

We got 341 requests that have been either accepted, rejected of withdrawn over
the last two weeks, but we still have some pending :)

So don't forget to visit:
https://admin.fedoraproject.org/pkgdb/acl/pending/


Pierre
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Elections Results for Summer 2014 FESCo Special Election

2014-07-23 Thread Jaroslav Reznik
One correction - while updating Wiki with the newly elected FESCo
members I found out the initial announcement was incorrect and only
one seat is available for the full F21/F22 term.

Josh Boyer is elected for full F21/F22 term as replacement for
Toshio Kurotami (who was elected on February 2014) [1].

Kalev Lember and Tomas Hozza until after the F21 release this fall
(F20/F21 term) as replacement for Peter Jones and Bill Nottingham
(elected on June 2013) [2].

Sorry for mistake...

Jaroslav

[1] https://admin.fedoraproject.org/voting/results/fescof21
[2] https://admin.fedoraproject.org/voting/results/fesco-f20

- Original Message -
> Greetings, all!
> 
> The elections for the Fedora Engineering Steering Committee (FESCo)
> Summer 2014 Special Election have concluded, and the results are
> shown below.
> 
> FESCo is electing 3 seats this time. A total of 195 ballots were
> cast, meaning a candidate could accumulate up to 975 votes (195 *
> 5). The results for the FESCo elections are as follows:
> 
> # votes |  name
> - +--
> 629 | Josh Boyer (FAS: jwboyer, IRC: jwb)
> 548 | Kalev Lember (FAS: kalev, IRC: kalev)
> 541 | Tomas Hozza (FAS: thozza, IRC: thozza)
> ---
> 463 | Lukáš Nykrýn (FAS: lnykryn, IRC: lnykryn)
> 362 | David King (FAS: amigadave, IRC: amigadave)
> 
> As these elections will fill the seats for the remainder of
> the term, Josh Boyer and Kalev Lember are each elected to FESCo
> until next spring. Tomas Hozza until after the F21 release this
> fall.
> 
> Congratulations to the winning candidates, and thank you all
> candidates for running this elections!
> 
> Jaroslav
> --
> announce mailing list
> annou...@lists.fedoraproject.org
> https://admin.fedoraproject.org/mailman/listinfo/announce
___
devel-announce mailing list
devel-annou...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel-announce
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Hung koji task?

2014-07-23 Thread Jerry James
Can somebody see what is going on with
http://koji.fedoraproject.org/koji/taskinfo?taskID=7183094?  I started
it yesterday afternoon.  All of the subtasks are done, but somehow the
parent task is still open.  Thanks,
-- 
Jerry James
http://www.jamezone.org/
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Hung koji task?

2014-07-23 Thread Kevin Fenzi
On Wed, 23 Jul 2014 08:58:03 -0600
Jerry James  wrote:

> Can somebody see what is going on with
> http://koji.fedoraproject.org/koji/taskinfo?taskID=7183094?  I started
> it yesterday afternoon.  All of the subtasks are done, but somehow the
> parent task is still open.  Thanks,

There was a short (10min) koji outage last night... I think this is
fallout from that. I've poked it to see if it will finish on another
builder. 

kevin


signature.asc
Description: PGP signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Hung koji task?

2014-07-23 Thread Jerry James
On Wed, Jul 23, 2014 at 9:21 AM, Kevin Fenzi  wrote:
> There was a short (10min) koji outage last night... I think this is
> fallout from that. I've poked it to see if it will finish on another
> builder.

That worked.  Thanks, Kevin!
-- 
Jerry James
http://www.jamezone.org/
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Summary/Minutes from today's FESCo Meeting (2014-07-23)

2014-07-23 Thread Miloslav Trmač
===
#fedora-meeting: FESCO (2014-07-23)
===


Meeting started by mitr at 17:02:15 UTC. The full logs are available at
http://meetbot.fedoraproject.org/fedora-meeting/2014-07-23/fesco.2014-07-23-17.02.log.html
.



Meeting summary
---
* init process  (mitr, 17:02:25)

* Welcoming new FESCO members  (mitr, 17:07:13)
  * Welcome new FESCo members, Josh Boyer, Tomas Hozza, Kalev Lember!
(mitr, 17:07:51)
  * Thanks to the previous members Peter Jones, Toshio Kuratomi, Bill
Nottingham, Kyle McMartin for their service  (mitr, 17:10:17)

* #1178 Fedora 21 scheduling strategy  (mitr, 17:12:59)
  * AGREED: Slip the schedule 3 weeks (+7)  (mitr, 17:39:20)

* #1322 Changes - Progress on Changes Freeze  (mitr, 17:39:41)
  * ACTION: jreznik to update schedule and announce the slip  (mitr,
17:40:16)

* #1325 packagers doing dodgy things in review  (mitr, 17:41:15)
  * LINK: https://bugzilla.redhat.com/show_bug.cgi?id=1119741
(kwizart, 17:49:34)
  * AGREED: new reviewer to make sure that is done in this ticket, and,
gentle reminder to do reviews in a documented transparent way in the
future (+5)  (mitr, 17:57:11)

* Next week’s chair  (mitr, 17:57:55)
  * The next FESCo meeting will happen in the currently scheduled time,
whenisgood results to apply starting the week after.  (mitr,
18:00:34)
  * nirik to chair the next meeting  (mitr, 18:04:29)

* Open Floor  (mitr, 18:04:39)
  * LINK: https://fedorahosted.org/fesco/ticket/1326   (mattdm,
18:11:49)

Meeting ended at 18:14:41 UTC.




Action Items

* jreznik to update schedule and announce the slip




Action Items, by person
---
* jreznik
  * jreznik to update schedule and announce the slip
* **UNASSIGNED**
  * (none)




People Present (lines said)
---
* mitr (66)
* mattdm (48)
* dgilmore (40)
* jreznik (28)
* kalev (27)
* nirik (22)
* t8m (15)
* kwizart (15)
* thozza (15)
* tflink (12)
* zodbot (9)
* abadger1999 (3)
* pjones (3)
* mmaslano (0)
* sgallagh (0)
* kylem (0)
* jwb (0)




Generated by `MeetBot`_ 0.1.4

.. _`MeetBot`: http://wiki.debian.org/MeetBot
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Schedule for Thursday's FPC Meeting (2014-07-24 16:00 UTC)

2014-07-23 Thread James Antill
 Following is the list of topics that will be discussed in the FPC
meeting Thursday at 2014-07-24 16:00 UTC in #fedora-meeting-1 on
irc.freenode.net.

 Local time information (via. rktime):

2014-07-24 09:00 Thu US/Pacific PDT
2014-07-24 12:00 Thu US/Eastern EDT
2014-07-24 16:00 Thu UTC <-
2014-07-24 17:00 Thu Europe/London  BST
2014-07-24 18:00 Thu Europe/Paris  CEST
2014-07-24 18:00 Thu Europe/Berlin CEST
2014-07-24 21:30 Thu Asia/Calcutta  IST
--new day--
2014-07-25 00:00 Fri Asia/Singapore SGT
2014-07-25 00:00 Fri Asia/Hong_Kong HKT
2014-07-25 01:00 Fri Asia/Tokyo JST
2014-07-25 02:00 Fri Australia/Brisbane EST

 Links to all tickets below can be found at: 

https://fedorahosted.org/fpc/report/12

= Followups =


(approval and retirement sections already passed, /opt exception passed,
basename passed)
#topic #339 software collections in Fedora
.fpc 339
https://fedorahosted.org/fpc/ticket/339

#topic #341 How to replace "docker" package with an entirely
different package of the same name?
.fpc 341
https://fedorahosted.org/fpc/ticket/341

#topic #382 Go Packaging Guidelines Draft
.fpc 382
https://fedorahosted.org/fpc/ticket/382

(dots in name, utility of ruby without rails)
#topic #419 ruby193 in SCL
.fpc 419
https://fedorahosted.org/fpc/ticket/419

(waiting on fesco)
#topic #442 Please recommend usage of new sysusers.d/ facility to
register system users
.fpc 442
https://fedorahosted.org/fpc/ticket/442

(more votes needed, or defer to FESCO?)
#topic #444 Officially recommend to releng that SCLs be placed in
separate packages rather than separate branches in git
.fpc 444
https://fedorahosted.org/fpc/ticket/444

= New business =

#topic #NNN Title of ticket
.fpc NNN
https://fedorahosted.org/fpc/ticket/NNN

#topic #NNN Title of ticket
.fpc NNN
https://fedorahosted.org/fpc/ticket/NNN

= Open Floor = 

 For more complete details, please visit each individual ticket.  The
report of the agenda items can be found at:

https://fedorahosted.org/fpc/report/12


 If you would like to add something to this agenda, you can reply to
this e-mail, file a new ticket at https://fedorahosted.org/fpc,
e-mail me directly, or bring it up at the end of the meeting, during
the open floor topic. Note that added topics may be deferred until
the following meeting. 
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Schedule of package signing for F21?

2014-07-23 Thread Dennis Gilmore
On Wed, 23 Jul 2014 08:48:20 +0200
Miroslav Suchý  wrote:

> Looking at
>http://fedorapeople.org/groups/schedule/f-21/f-21-releng-tasks.html
> I could not guess from this document when packages for F21 will be
> signed. When it will happen?
> 
> I'm asking because of
>https://bugzilla.redhat.com/show_bug.cgi?id=1119275#c3
> 

We sign the packages every day, but until bodhi is enabled we can not
guarantee that all packages will get signed.

Dennis
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Review Swap

2014-07-23 Thread Erik Johnson

I have a couple new python packages I'd like to get reviewed, does
anyone have something they need reviewed?

https://bugzilla.redhat.com/show_bug.cgi?id=1113310
https://bugzilla.redhat.com/show_bug.cgi?id=1113328

Note: The above submissions have undergone a few changes, so view the
latest post in each for updated links to the spec and SRPM.

--

Erik Johnson | Engineer

2825 E. Cottonwood Parkway, Suite 360 | Salt Lake City, UT 84121
e...@saltstack.com | http://saltstack.com


pgpZKA8P7nUOy.pgp
Description: PGP signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct