wine 32
by ToddAndMargo
Hi Kevin and EPEL,
Is there any sign of EPEL 7 support for Wine 32 yet? The
lack of Wine 32 is keeping me on SL 6.6 and it is starting
to drive me nuts!
EPEL: think of the guilt you would feel if I get
stuck in an insane asylums over the lack of wine 32
support! Seriously, the guilt would haunt you to the end
of your days. Okay, maybe not, but still ...
Many thanks,
-T
Hey, I had to try. If guilt doesn't work,
I am really good at insincere compliments too.
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Computers are like air conditioners.
They malfunction when you open windows
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5 years, 10 months
Current update policy?
by Dave Johansen
What is the current update policy for EPEL? The stated one seems to be
along the lines of "no major changes" (
http://fedoraproject.org/wiki/Updates_Policy ) but it seems more like
"whatever the packager is willing to maintain" is the actual policy.
I ask because a bugzilla was just opened against a package I maintain (
https://bugzilla.redhat.com/show_bug.cgi?id=1201808 ) and I wanted to know
how I should handle it.
Does it need to be closed as wontfix? Or should a "notice of upcoming major
update" policy be put in place to handle things like this?
Thanks,
Dave
8 years
EPEL [Extra Packages for Enterprise Linux] #10: Unretire xerces-c
by EPEL
#10: Unretire xerces-c
-----------------------------+----------------------------
Reporter: smooge | Owner: epel-wranglers
Type: task | Status: new
Priority: critical | Milestone:
Component: Package request | Version:
Keywords: |
-----------------------------+----------------------------
This package was accidently retired, and needs a full review to get back
in. Need a bugzilla ticket for getting it reviewed, and we will have an
epel-wrangler do as fast a re-review as possible to get it back in.
Further policy changes to deal with this in the future are in ticket #4
--
Ticket URL: <https://fedorahosted.org/epel/ticket/10>
Extra Packages for Enterprise Linux <https://fedoraproject.org/wiki/EPEL>
Extra Packages for Enterprise Linux
8 years, 1 month
python34 packages for EPEL
by Orion Poplawski
Sorry for the cross posting - let's follow up on the EPEL list
We now have python34 in EPEL (yay - thanks Matej and others!). Starting to
look at packaging some modules. We have
https://fedoraproject.org/wiki/User:Bkabrda/EPEL7_Python3 as a starting point
which looks pretty good. One wrinkle though is that we have a bunch of
python2 packages provided by RHEL that we'll want to provide python3X versions
for in EPEL, but not ship python2 versions. So a question becomes, where do
they get maintained? Either:
- epel7 branch of the python-blah package in Fedora?
- a new python3X-blah package?
And if in an epel7 branch of an existing package, is it conceivable to
maintain a common spec across EPEL and Fedora?
I think this is somewhat representative of the changes needed in a more
complicated package (setuptools) which isn't actually too terrrible:
diff --git a/python-setuptools.spec b/python-setuptools.spec
index 7f37e90..cb96b9f 100644
--- a/python-setuptools.spec
+++ b/python-setuptools.spec
@@ -1,9 +1,9 @@
-%if 0%{?fedora}
+%if 0%{?fedora} || 0%{?rhel} >= 7
%global with_python3 1
# This controls whether setuptools is build as a wheel or not,
# simplifying Python 3.4 bootstraping process
-%global build_wheel 1
+%global build_wheel 0
%else
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from
distutils.sysconfig import get_python_lib; print (get_python_lib())")}
%endif
@@ -44,10 +44,10 @@ BuildRequires: python-pip
BuildRequires: python-wheel
%endif
%if 0%{?with_python3}
-BuildRequires: python3-devel
+BuildRequires: python%{python3_pkgversion}-devel
%if 0%{?build_wheel}
-BuildRequires: python3-pip
-BuildRequires: python3-wheel
+BuildRequires: python%{python3_pkgversion}-pip
+BuildRequires: python%{python3_pkgversion}-wheel
%endif
%endif # if with_python3
# For unittests
@@ -68,7 +68,7 @@ This package also contains the runtime components of
setuptools, necessary to
execute the software that requires pkg_resources.py.
%if 0%{?with_python3}
-%package -n python3-setuptools
+%package -n python%{python3_pkgversion}-setuptools
Summary: Easily build and distribute Python 3 packages
Group: Applications/System
@@ -76,7 +76,7 @@ Group: Applications/System
# has been present since python3-3.2. We do not ship python3-3.0 or
# python3-3.1 anywhere
-%description -n python3-setuptools
+%description -n python%{python3_pkgversion}-setuptools
Setuptools is a collection of enhancements to the Python 3 distutils that allow
you to more easily build and distribute Python 3 packages, especially ones that
have dependencies on other packages.
@@ -156,6 +156,9 @@ chmod +x
%{buildroot}%{python3_sitelib}/setuptools/command/easy_install.py
popd
%endif # with_python3
+%if 0%{?epel}
+rm %{buildroot}/%{_bindir}/easy_install
+%else
%if 0%{?build_wheel}
pip2 install -I dist/%{python2_wheelname} --root %{buildroot}
--strip-file-prefix %{buildroot}
%else
@@ -167,9 +170,11 @@ rm -rf %{buildroot}%{python_sitelib}/setuptools/tests
sed -i '/^setuptools\/tests\//d' %{buildroot}%{python2_record}
%endif
-install -p -m 0644 %{SOURCE1} %{SOURCE2} .
find %{buildroot}%{python_sitelib} -name '*.exe' | xargs rm -f
chmod +x %{buildroot}%{python_sitelib}/setuptools/command/easy_install.py
+%endif # 0%{?epel}
+
+install -p -m 0644 %{SOURCE1} %{SOURCE2} .
%check
%{__python} setup.py test
@@ -184,15 +189,17 @@ popd
rm -rf %{buildroot}
+%if !0%{?epel}
%files
%defattr(-,root,root,-)
%doc *.txt docs
%{python_sitelib}/*
%{_bindir}/easy_install
%{_bindir}/easy_install-2.*
+%endif
%if 0%{?with_python3}
-%files -n python3-setuptools
+%files -n python%{python3_pkgversion}-setuptools
%defattr(-,root,root,-)
%doc psfl.txt zpl.txt docs
%{python3_sitelib}/*
One note - according to
https://fedoraproject.org/wiki/User:Bkabrda/EPEL7_Python3#Specfiles.2C_Ma...
%{python3_pkgversion} is supposed to be defined in Fedora, but I don't see it
(at least not in F22). In the review
(https://bugzilla.redhat.com/show_bug.cgi?id=1219411#c8) there seems to be
some uncertainty as to where it will land?
Comments?
--
Orion Poplawski
Technical Manager 303-415-9701 x222
NWRA, Boulder/CoRA Office FAX: 303-415-9702
3380 Mitchell Lane orion(a)nwra.com
Boulder, CO 80301 http://www.nwra.com
8 years, 3 months
Fedora EPEL 6 updates-testing report
by updates@fedoraproject.org
The following Fedora EPEL 6 Security updates need testing:
Age URL
260 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-4008/cross-binut...
51 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-1501/strongswan-...
40 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6828/chicken-4.9...
23 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7031/python-virt...
18 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7116/nx-libs-3.5...
17 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7168/rubygem-cra...
14 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7236/xrdp-0.6.1-...
10 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7261/drupal7-pat...
7 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7304/uwsgi-2.0.1...
3 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7362/drupal6-cck...
3 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7347/lighttpd-1....
3 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7353/wordpress-4...
The following builds have been pushed to Fedora EPEL 6 updates-testing
dx-4.4.4-11.el6.4
elastic-curator-2.1.2-2.el6
golang-github-abbot-go-http-auth-0-0.3.gitc0ef453.el6
golang-github-appc-spec-0.5.1-4.git37bef67.el6
golang-github-armon-circbuf-0-0.2.gitf092b4f.el6
golang-github-armon-go-metrics-0-0.2.gita54701e.el6
golang-github-armon-gomdb-0-0.3.git151f2e0.el6
golang-github-beorn7-perks-0-0.3.gitb965b61.el6
golang-github-bmizerany-assert-0-0.3.gite17e998.el6
golang-github-bmizerany-pat-0-0.3.gitb8a3500.el6
golang-github-bmizerany-perks-0-0.3.gitd9a9656.el6
golang-github-boltdb-bolt-1.0-0.2.git980670a.el6
golang-github-codegangsta-cli-1.2.0-4.el6
golang-github-coreos-go-log-0-0.9.git840af6b.el6
golang-github-coreos-go-semver-0-0.5.git568e959.el6
golang-github-coreos-go-systemd-2-8.el6
golang-github-davecgh-go-spew-0-0.5.git3e6e67c.el6
golang-github-dgnorton-goback-0-0.3.gita49ca3c.el6
golang-github-digitalocean-godo-0-0.2.git8dc1f54.el6
golang-github-docker-libtrust-0-0.4.git6b78349.el6
golang-github-docker-spdystream-0-0.7.gitb2c3287.el6
golang-github-elazarl-go-bindata-assetfs-0-0.5.git3dcc965.el6
golang-github-emicklei-go-restful-1.1.3-0.6.gitbdfb7d4.el6
golang-github-evanphx-json-patch-0-0.3.gita1ba76c.el6
golang-github-fsouza-go-dockerclient-0.2.1-9.gitf95d189.el6
golang-github-garyburd-redigo-0-0.3.git3e4727f.el6
golang-github-ghodss-yaml-0-0.6.git588cb43.el6
golang-github-glacjay-goini-0-0.3.git5261baf.el6
golang-github-go-tomb-tomb-0-0.2.git14b3d72.el6
golang-github-godbus-dbus-2-0.3.git939230d.el6
golang-github-golang-appengine-0-0.3.git1c3fdc5.el6
golang-github-golang-glog-0-0.6.git44145f0.el6
golang-github-golang-groupcache-0-0.3.git604ed57.el6
golang-github-google-go-querystring-0-0.2.git547ef5a.el6
golang-github-google-gofuzz-0-0.8.gitbbcb9da.el6
nodejs-builtins-1.0.2-1.el6
perl-File-Find-Rule-Age-0.302-3.el6
xine-lib-1.1.21-11.el6
zbackup-1.4.2-1.el6
Details about builds:
================================================================================
dx-4.4.4-11.el6.4 (FEDORA-EPEL-2015-7447)
Open source version of IBM's Visualization Data Explorer
--------------------------------------------------------------------------------
Update Information:
Fixes broken dependencies with ImageMagick libraries in RHEL 6.7.
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 Dominik Mierzejewski <rpm(a)greysector.net> 4.4.4-11.4
- rebuild for ImageMagick ABI bump (rhbz#1247332)
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1247332 - rebuild needed for RHEL 6.7
https://bugzilla.redhat.com/show_bug.cgi?id=1247332
--------------------------------------------------------------------------------
================================================================================
elastic-curator-2.1.2-2.el6 (FEDORA-EPEL-2015-7455)
Tools for managing Elasticsearch indices
--------------------------------------------------------------------------------
Update Information:
Add "Requires: python-argparse"
--------------------------------------------------------------------------------
================================================================================
golang-github-abbot-go-http-auth-0-0.3.gitc0ef453.el6 (FEDORA-EPEL-2015-7434)
Basic and Digest HTTP Authentication for golang http
--------------------------------------------------------------------------------
Update Information:
Move test.htpasswd and test.htdigest to test unit
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 Fridolin Pokorny <fpokorny(a)redhat.com> - 0-0.3.gitc0ef453
- Move test.htpasswd and test.htdigest to test unit
related: #1248477
* Thu Jul 30 2015 Fridolin Pokorny <fpokorny(a)redhat.com> - 0-0.2.gitc0ef453
- Update of spec file to spec-2.0
resolves: #1248477
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.2.gitc0ef453
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248477 - Tracker for golang-github-abbot-go-http-auth
https://bugzilla.redhat.com/show_bug.cgi?id=1248477
--------------------------------------------------------------------------------
================================================================================
golang-github-appc-spec-0.5.1-4.git37bef67.el6 (FEDORA-EPEL-2015-7451)
Schema defs and tools for app container specification
--------------------------------------------------------------------------------
Update Information:
Update of spec file to spec-2.0
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248491 - Tracker for golang-github-appc-spec
https://bugzilla.redhat.com/show_bug.cgi?id=1248491
--------------------------------------------------------------------------------
================================================================================
golang-github-armon-circbuf-0-0.2.gitf092b4f.el6 (FEDORA-EPEL-2015-7446)
Golang circular (ring) buffer
--------------------------------------------------------------------------------
Update Information:
Update of spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 Fridolin Pokorny <fpokorny(a)redhat.com> - 0-0.2.gitf092b4f
- Update of spec file to spec-2.0
resolves: #1248497
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248497 - Tracker for golang-github-armon-circbuf
https://bugzilla.redhat.com/show_bug.cgi?id=1248497
--------------------------------------------------------------------------------
================================================================================
golang-github-armon-go-metrics-0-0.2.gita54701e.el6 (FEDORA-EPEL-2015-7462)
Exporting performance and runtime metrics to external metrics systems
--------------------------------------------------------------------------------
Update Information:
Update of spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 Fridolin Pokorny <fpokorny(a)redhat.com> - 0-0.2.gita54701e
- Update of spec file to spec-2.0
resolves: #1248645
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248645 - Tracker for golang-github-armon-go-metrics
https://bugzilla.redhat.com/show_bug.cgi?id=1248645
--------------------------------------------------------------------------------
================================================================================
golang-github-armon-gomdb-0-0.3.git151f2e0.el6 (FEDORA-EPEL-2015-7444)
Go wrapper for LMDB - OpenLDAP Lightning Memory-Mapped Database
--------------------------------------------------------------------------------
Update Information:
Update of spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 Fridolin Pokorny <fpokorny(a)redhat.com> - 0-0.3.git151f2e0
- Update of spec file to spec-2.0
resolves: #1248536
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248536 - Tracker for golang-github-armon-gomdb
https://bugzilla.redhat.com/show_bug.cgi?id=1248536
--------------------------------------------------------------------------------
================================================================================
golang-github-beorn7-perks-0-0.3.gitb965b61.el6 (FEDORA-EPEL-2015-7433)
Effective Computation of Things
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.3.gitb965b61
- Update spec file to spec-2.0
resolves: #1248633
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.2.gitb965b61
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248633 - Tracker for golang-github-beorn7-perks
https://bugzilla.redhat.com/show_bug.cgi?id=1248633
--------------------------------------------------------------------------------
================================================================================
golang-github-bmizerany-assert-0-0.3.gite17e998.el6 (FEDORA-EPEL-2015-7461)
Assertions for Go tests
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.3.gite17e998
- Update spec file to spec-2.0
resolves: #1248646
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.2.gite17e998
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248646 - Tracker for golang-github-bmizerany-assert
https://bugzilla.redhat.com/show_bug.cgi?id=1248646
--------------------------------------------------------------------------------
================================================================================
golang-github-bmizerany-pat-0-0.3.gitb8a3500.el6 (FEDORA-EPEL-2015-7466)
A Sinatra style pattern muxer for Go's net/http library
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.3.gitb8a3500
- Update spec file to spec-2.0
resolves: #1248652
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.2.gitb8a3500
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248652 - Tracker for golang-github-bmizerany-pat
https://bugzilla.redhat.com/show_bug.cgi?id=1248652
--------------------------------------------------------------------------------
================================================================================
golang-github-bmizerany-perks-0-0.3.gitd9a9656.el6 (FEDORA-EPEL-2015-7458)
Effective Computation of Things
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.3.gitd9a9656
- Update spec file to spec-2.0
resolves: #1248668
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.2.gitd9a9656
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248668 - Tracker for golang-github-bmizerany-perks
https://bugzilla.redhat.com/show_bug.cgi?id=1248668
--------------------------------------------------------------------------------
================================================================================
golang-github-boltdb-bolt-1.0-0.2.git980670a.el6 (FEDORA-EPEL-2015-7454)
A low-level key/value database for Go
--------------------------------------------------------------------------------
Update Information:
Update of spec file to spec-2.0
Bump to upstream 980670afcebfd86727505b3061d8667195234816
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 Fridolin Pokorny <fpokorny(a)redhat.com> - 1.0-0.2.git980670a
- Update of spec file to spec-2.0
resolves: #1246207
* Thu Jul 23 2015 jchaloup <jchaloup(a)redhat.com> - 1.0-0.1.git980670a
- Bump to upstream 980670afcebfd86727505b3061d8667195234816
resolves: #1246207
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1246207 - Tracker for golang-github-boltdb-bolt
https://bugzilla.redhat.com/show_bug.cgi?id=1246207
--------------------------------------------------------------------------------
================================================================================
golang-github-codegangsta-cli-1.2.0-4.el6 (FEDORA-EPEL-2015-7452)
Package for building command line apps in Go
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 jchaloup <jchaloup(a)redhat.com> - 1.2.0-4
- Update spec file to spec-2.0
resolves: #1248680
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.2.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248680 - Tracker for golang-github-codegangsta-cli
https://bugzilla.redhat.com/show_bug.cgi?id=1248680
--------------------------------------------------------------------------------
================================================================================
golang-github-coreos-go-log-0-0.9.git840af6b.el6 (FEDORA-EPEL-2015-7460)
A golang library for logging to systemd
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.9.git840af6b
- Update spec file to spec-2.0
resolves: #1248717
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.8.git840af6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248717 - Tracker for golang-github-coreos-go-log
https://bugzilla.redhat.com/show_bug.cgi?id=1248717
--------------------------------------------------------------------------------
================================================================================
golang-github-coreos-go-semver-0-0.5.git568e959.el6 (FEDORA-EPEL-2015-7463)
Go semantic versioning library
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248718 - Tracker for golang-github-coreos-go-semver
https://bugzilla.redhat.com/show_bug.cgi?id=1248718
--------------------------------------------------------------------------------
================================================================================
golang-github-coreos-go-systemd-2-8.el6 (FEDORA-EPEL-2015-7469)
Go bindings to systemd socket activation, journal and D-BUS APIs
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 jchaloup <jchaloup(a)redhat.com> - 2-8
- Update spec file to spec-2.0
resolves: #1248722
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248722 - Tracker for golang-github-coreos-go-systemd
https://bugzilla.redhat.com/show_bug.cgi?id=1248722
--------------------------------------------------------------------------------
================================================================================
golang-github-davecgh-go-spew-0-0.5.git3e6e67c.el6 (FEDORA-EPEL-2015-7467)
Deep pretty printer for Go data structures to aid in debug
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.5.git3e6e67c
- Update spec file to spec-2.0
resolves: #1248791
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.4.git3e6e67c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248791 - Tracker for golang-github-davecgh-go-spew
https://bugzilla.redhat.com/show_bug.cgi?id=1248791
--------------------------------------------------------------------------------
================================================================================
golang-github-dgnorton-goback-0-0.3.gita49ca3c.el6 (FEDORA-EPEL-2015-7476)
A simple non-database related transaction library
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.3.gita49ca3c
- Update spec file to spec-2.0
resolves: #1248793
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.2.gita49ca3c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248793 - Tracker for golang-github-dgnorton-goback
https://bugzilla.redhat.com/show_bug.cgi?id=1248793
--------------------------------------------------------------------------------
================================================================================
golang-github-digitalocean-godo-0-0.2.git8dc1f54.el6 (FEDORA-EPEL-2015-7456)
DigitalOcean Go API client
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.2.git8dc1f54
- Update spec file to spec-2.0
resolves: #1248794
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248794 - Tracker for golang-github-digitalocean-godo
https://bugzilla.redhat.com/show_bug.cgi?id=1248794
--------------------------------------------------------------------------------
================================================================================
golang-github-docker-libtrust-0-0.4.git6b78349.el6 (FEDORA-EPEL-2015-7443)
Library for managing authentication and authorization
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.4.git6b78349
- Update spec file to spec-2.0
resolves: #1248803
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.3.git6b78349
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248803 - Tracker for golang-github-docker-libtrust
https://bugzilla.redhat.com/show_bug.cgi?id=1248803
--------------------------------------------------------------------------------
================================================================================
golang-github-docker-spdystream-0-0.7.gitb2c3287.el6 (FEDORA-EPEL-2015-7465)
A multiplexed stream library using spdy
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
Bump to upstream b2c3287865f3ad6aa22821ddb7b4692b896ac207
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.7.gitb2c3287
- Update spec file to spec-2.0
related: #1214600
* Sat Jul 25 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.6.gitb2c3287
- Bump to upstream b2c3287865f3ad6aa22821ddb7b4692b896ac207
resolves: #1246760
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.5.git83ae67e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1214600 - Tracker for golang-github-docker-spdystream updates
https://bugzilla.redhat.com/show_bug.cgi?id=1214600
[ 2 ] Bug #1246760 - Tracker for golang-github-docker-spdystream
https://bugzilla.redhat.com/show_bug.cgi?id=1246760
--------------------------------------------------------------------------------
================================================================================
golang-github-elazarl-go-bindata-assetfs-0-0.5.git3dcc965.el6 (FEDORA-EPEL-2015-7440)
Serve embedded files from jteeuwen/go-bindata
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
Choose the correct architecture
Bump to upstream 3dcc96556217539f50599357fb481ac0dc7439b9
new golang package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1247018 - Tracker for golang-github-elazarl-go-bindata-assetfs
https://bugzilla.redhat.com/show_bug.cgi?id=1247018
[ 2 ] Bug #1244246 - rebase to golang-1.4.99-2.1.5beta1.fc2[3|4] breaks kubernetes builds due to bytes.Reader defining a Size method which results in ambiguity about the Size method
https://bugzilla.redhat.com/show_bug.cgi?id=1244246
[ 3 ] Bug #1151778 - Review Request: golang-github-elazarl-go-bindata-assetfs - Serve embedded files from jteeuwen/go-bindata
https://bugzilla.redhat.com/show_bug.cgi?id=1151778
--------------------------------------------------------------------------------
================================================================================
golang-github-emicklei-go-restful-1.1.3-0.6.gitbdfb7d4.el6 (FEDORA-EPEL-2015-7439)
Package for building REST-style Web Services using Google Go
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 1.1.3-0.6.gitbdfb7d4
- Update spec file to spec-2.0
related: #1215626
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.1.3-0.5.gitbdfb7d4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1215626 - Tracker for golang-github-emicklei-go-restful
https://bugzilla.redhat.com/show_bug.cgi?id=1215626
--------------------------------------------------------------------------------
================================================================================
golang-github-evanphx-json-patch-0-0.3.gita1ba76c.el6 (FEDORA-EPEL-2015-7475)
A Go library to apply RFC6902 patches to JSON documents
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.3.gita1ba76c
- Update spec file to spec-2.0
resolves: #1248988
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.2.gita1ba76c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248988 - Tracker for golang-github-evanphx-json-patch
https://bugzilla.redhat.com/show_bug.cgi?id=1248988
--------------------------------------------------------------------------------
================================================================================
golang-github-fsouza-go-dockerclient-0.2.1-9.gitf95d189.el6 (FEDORA-EPEL-2015-7438)
Client for the Docker remote API
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 0.2.1-9.gitf95d189
- Update spec file to spec-2.0
related: #1215656
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0.2.1-8.gitf95d189
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1215656 - Tracker for golang-github-fsouza-go-dockerclient
https://bugzilla.redhat.com/show_bug.cgi?id=1215656
--------------------------------------------------------------------------------
================================================================================
golang-github-garyburd-redigo-0-0.3.git3e4727f.el6 (FEDORA-EPEL-2015-7449)
Go client for Redis
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.3.git3e4727f
- Update spec file to spec-2.0
resolves: #1248994
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.2.git3e4727f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1248994 - Tracker for golang-github-garyburd-redigo
https://bugzilla.redhat.com/show_bug.cgi?id=1248994
--------------------------------------------------------------------------------
================================================================================
golang-github-ghodss-yaml-0-0.6.git588cb43.el6 (FEDORA-EPEL-2015-7435)
A better way to marshal and unmarshal YAML in Golang
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.6.git588cb43
- Update spec file to spec-2.0
resolves: #1249030
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.5.git588cb43
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1249030 - Tracker for golang-github-ghodss-yaml
https://bugzilla.redhat.com/show_bug.cgi?id=1249030
--------------------------------------------------------------------------------
================================================================================
golang-github-glacjay-goini-0-0.3.git5261baf.el6 (FEDORA-EPEL-2015-7431)
INI file parser in go
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.3.git5261baf
- Update spec file to spec-2.0
resolves: #1249032
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.2.git5261baf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1249032 - Tracker for golang-github-glacjay-goini
https://bugzilla.redhat.com/show_bug.cgi?id=1249032
--------------------------------------------------------------------------------
================================================================================
golang-github-go-tomb-tomb-0-0.2.git14b3d72.el6 (FEDORA-EPEL-2015-7430)
Helps with clean goroutine termination in the Go language
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.2.git14b3d72
- Update spec file to spec-2.0
resolves: #1249041
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1249041 - Tracker for golang-github-go-tomb-tomb
https://bugzilla.redhat.com/show_bug.cgi?id=1249041
--------------------------------------------------------------------------------
================================================================================
golang-github-godbus-dbus-2-0.3.git939230d.el6 (FEDORA-EPEL-2015-7470)
Go client bindings for D-Bus
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
Bump to upstream 939230d2086a4f1870e04c52e0a376c25bae0ec4
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 2-0.3.git939230d
- Update spec file to spec-2.0
resolves: #1249043
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2-0.2.git939230d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Tue Mar 31 2015 jchaloup <jchaloup(a)redhat.com> - 2-0.1.git939230d
- Bump to upstream 939230d2086a4f1870e04c52e0a376c25bae0ec4
- Spec file polishing
related: #1082734
* Sat Jun 7 2014 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.2.gitcb98efb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1249043 - Tracker for golang-github-godbus-dbus
https://bugzilla.redhat.com/show_bug.cgi?id=1249043
[ 2 ] Bug #1082734 - Review Request: golang-github-godbus-dbus - Go client bindings for D-Bus
https://bugzilla.redhat.com/show_bug.cgi?id=1082734
--------------------------------------------------------------------------------
================================================================================
golang-github-golang-appengine-0-0.3.git1c3fdc5.el6 (FEDORA-EPEL-2015-7473)
Go App Engine for Managed VMs
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.3.git1c3fdc5
- Update spec file to spec-2.0
resolves: #1249049
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.2.git1c3fdc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1249049 - Tracker for golang-github-golang-appengine
https://bugzilla.redhat.com/show_bug.cgi?id=1249049
--------------------------------------------------------------------------------
================================================================================
golang-github-golang-glog-0-0.6.git44145f0.el6 (FEDORA-EPEL-2015-7472)
Leveled execution logs for Go
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.6.git44145f0
- Update spec file to spec-2.0
resolves: #1249052
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.5.git44145f0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1249052 - Tracker for golang-github-golang-glog
https://bugzilla.redhat.com/show_bug.cgi?id=1249052
--------------------------------------------------------------------------------
================================================================================
golang-github-golang-groupcache-0-0.3.git604ed57.el6 (FEDORA-EPEL-2015-7471)
Caching and cache-filling library as a replacement for memcached in many cases
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.3.git604ed57
- Update spec file to spec-2.0
resolves: #1249058
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.2.git604ed57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1249058 - Tracker for golang-github-golang-groupcache
https://bugzilla.redhat.com/show_bug.cgi?id=1249058
--------------------------------------------------------------------------------
================================================================================
golang-github-google-go-querystring-0-0.2.git547ef5a.el6 (FEDORA-EPEL-2015-7445)
Go library for encoding structs into URL query parameters
--------------------------------------------------------------------------------
Update Information:
Update spec file to spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.2.git547ef5a
- Update spec file to spec-2.0
resolves: #1249072
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1249072 - Tracker for golang-github-google-go-querystring
https://bugzilla.redhat.com/show_bug.cgi?id=1249072
--------------------------------------------------------------------------------
================================================================================
golang-github-google-gofuzz-0-0.8.gitbbcb9da.el6 (FEDORA-EPEL-2015-7437)
Library for populating go objects with random values
--------------------------------------------------------------------------------
Update Information:
Update spec file spec-2.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 jchaloup <jchaloup(a)redhat.com> - 0-0.8.gitbbcb9da
- Update spec file spec-2.0
resolves: #1249075
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0-0.7.gitbbcb9da
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1249075 - Tracker for golang-github-google-gofuzz
https://bugzilla.redhat.com/show_bug.cgi?id=1249075
--------------------------------------------------------------------------------
================================================================================
nodejs-builtins-1.0.2-1.el6 (FEDORA-EPEL-2015-7453)
List of node.js builtin modules
--------------------------------------------------------------------------------
Update Information:
Initial build
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1236565 - Review Request: nodejs-builtins - List of node.js builtin modules
https://bugzilla.redhat.com/show_bug.cgi?id=1236565
--------------------------------------------------------------------------------
================================================================================
perl-File-Find-Rule-Age-0.302-3.el6 (FEDORA-EPEL-2015-7464)
Rule to match on file age
--------------------------------------------------------------------------------
Update Information:
Initial import (#1242724)
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1242724 - Review Request: perl-File-Find-Rule-Age - Rule to match on file age
https://bugzilla.redhat.com/show_bug.cgi?id=1242724
--------------------------------------------------------------------------------
================================================================================
xine-lib-1.1.21-11.el6 (FEDORA-EPEL-2015-7429)
A multimedia engine
--------------------------------------------------------------------------------
Update Information:
Rebuild for newer ImageMagick.
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 Rex Dieter <rdieter(a)fedoraproject.org> 1.1.21-11
- rebuild (ImageMagick)
--------------------------------------------------------------------------------
================================================================================
zbackup-1.4.2-1.el6 (FEDORA-EPEL-2015-7474)
A versatile deduplicating backup tool
--------------------------------------------------------------------------------
Update Information:
Version bumped to 1.4.2
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 Vladimir Stackov <amigo.elite at gmail dot com> - 1.4.2-1
- Version bumped to 1.4.2
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.4.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Thu Apr 23 2015 Mikolaj Izdebski <mizdebsk(a)redhat.com> - 1.4.1-2
- Rebuild for protobuf soname bump
--------------------------------------------------------------------------------
8 years, 4 months
Fedora EPEL 7 updates-testing report
by updates@fedoraproject.org
The following Fedora EPEL 7 Security updates need testing:
Age URL
260 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-3989/cross-binut...
144 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-1087/dokuwiki-0-...
127 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-1421/quassel-0.1...
65 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6262/cabal-insta...
51 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-1545/strongswan-...
40 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-6813/chicken-4.9...
18 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7143/nx-libs-3.5...
14 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7232/zabbix22-2....
10 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7249/python-djan...
7 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7297/uwsgi-2.0.1...
3 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7334/lighttpd-1....
3 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2015-7366/wordpress-4...
The following builds have been pushed to Fedora EPEL 7 updates-testing
darktable-1.6.7-4.el7
edg-mkgridmap-4.0.3-1.el7
lensfun-0.3.1-3.el7
mate-notification-daemon-1.10.2-0.2.git20150724.f9aedaf.el7
opencl-headers-1.2-7.el7
perl-File-Find-Rule-Age-0.302-3.el7
php-nrk-Predis-1.0.2-1.el7
piglit-1-0.25.20150206GITi9c8b329.el7
x2goclient-4.0.5.0-1.el7
zbackup-1.4.2-1.el7
Details about builds:
================================================================================
darktable-1.6.7-4.el7 (FEDORA-EPEL-2015-7436)
Utility to organize and develop raw images
--------------------------------------------------------------------------------
Update Information:
build for epel7
--------------------------------------------------------------------------------
================================================================================
edg-mkgridmap-4.0.3-1.el7 (FEDORA-EPEL-2015-7450)
A tool to build the grid map-file from VO servers
--------------------------------------------------------------------------------
Update Information:
Fixed for CentOS7
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 Alejandro Alvarez Ayllon <aalvarez(a)cern.ch> - 4.0.3-1
- Mainly adaptations to changes in underlying libraries on CentOS/EL7
--------------------------------------------------------------------------------
================================================================================
lensfun-0.3.1-3.el7 (FEDORA-EPEL-2015-7442)
Library to rectify defects introduced by photographic lenses
--------------------------------------------------------------------------------
Update Information:
build for epel
--------------------------------------------------------------------------------
================================================================================
mate-notification-daemon-1.10.2-0.2.git20150724.f9aedaf.el7 (FEDORA-EPEL-2015-7315)
Notification daemon for MATE Desktop
--------------------------------------------------------------------------------
Update Information:
- update to git snapshot from 2015-07-24
- fix rhbz (#1233293)
- fix rhythmbox, rhbz (#1224782)
- fix crash if clicking on close button in standard theme
- fix rhbz (#1243859)
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.10.2-0.2.git20150724.f9aedaf
- fix crash if clicking on close button in standard theme
* Fri Jul 24 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.10.2-0.1.git20150724.f9aedaf
- update to git snapshot from 2015-07-24
- fix rhbz (#1233293)
* Wed Jul 22 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.10.1-1
- update to 1.10.1 release
- fix rhythmbox, rhbz (#1224782)
* Wed Jul 22 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.10.1-0.1.git20150719.4b8e9d5
- update to git snapshot from 2015-07-22
- fix rhythmbox, rhbz (#1224782)
* Sat Jul 18 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.10.0-1
- update to 1.10.0 release
--------------------------------------------------------------------------------
================================================================================
opencl-headers-1.2-7.el7 (FEDORA-EPEL-2015-7459)
Khronos OpenCL development headers
--------------------------------------------------------------------------------
Update Information:
build for epel7
--------------------------------------------------------------------------------
================================================================================
perl-File-Find-Rule-Age-0.302-3.el7 (FEDORA-EPEL-2015-7468)
Rule to match on file age
--------------------------------------------------------------------------------
Update Information:
Initial import (#1242724)
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1242724 - Review Request: perl-File-Find-Rule-Age - Rule to match on file age
https://bugzilla.redhat.com/show_bug.cgi?id=1242724
--------------------------------------------------------------------------------
================================================================================
php-nrk-Predis-1.0.2-1.el7 (FEDORA-EPEL-2015-7441)
PHP client library for Redis
--------------------------------------------------------------------------------
Update Information:
**Version 1.0.2** (2015-07-30)
* IPv6 is now fully supported.
* Added `redis` as an accepted scheme for connection parameters. When using this scheme, the rules used to parse URI strings match the provisional registration [published by IANA](http://www.iana.org/assignments/uri-schemes/prov/redis).
* Added new or missing commands: `HSTRLEN` (>= 3.2), `ZREVRANGEBYLEX` (>= 2.8) and `MIGRATE` (>= 2.6).
* Implemented support for the `ZADD` modifiers `NX|XX`, `CH`, `INCR` (Redis >= 3.0.2) using the simplified signature where scores and members are passed as a named array.
* __FIX__: `Predis\Configuration\Options` must not trigger the autoloader when option values are strings (ISSUE #257).
* __FIX__: `BITPOS` was not defined in the key-prefix processor (ISSUE #265) and in the replication strategy.
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 Remi Collet <remi(a)fedoraproject.org> - 1.0.2-1
- Update to 1.0.2
--------------------------------------------------------------------------------
================================================================================
piglit-1-0.25.20150206GITi9c8b329.el7 (FEDORA-EPEL-2015-7432)
Collection of automated tests for OpenGL implementations
--------------------------------------------------------------------------------
Update Information:
Add python-mako Requires (RHBZ# 1247936)
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 Matej Cepl <mcepl(a)redhat.com> - 1-0.25.20150206GITi9c8b329
- Add python-mako Requires (RHBZ# 1247936)
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1-0.24.20150206GITi9c8b329
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Sat May 2 2015 Kalev Lember <kalevlember(a)gmail.com> - 1-0.23.20150206GITi9c8b329
- Rebuilt for GCC 5 C++11 ABI change
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1247936 - [RPM spec] Missing python-mako dependency
https://bugzilla.redhat.com/show_bug.cgi?id=1247936
--------------------------------------------------------------------------------
================================================================================
x2goclient-4.0.5.0-1.el7 (FEDORA-EPEL-2015-7448)
X2Go Client application (Qt4)
--------------------------------------------------------------------------------
Update Information:
Update to 4.0.5.0:
- All sh invocations now use bash.
- Kerberos/GSSAPI fixes, most prominently for OS
- Packaging changes to make parallel installations of X2Go Client and TheQVD client possible.
- lrelease calls simplified for better cross-compiling support.
- [INCOMPATIBLE] Windows that are maximized on left-hand-side, secondary displays do not lose window decorations anymore. Thanks to Jon Turney for his help in debugging and fixing this issue.
- [INCOMPATIBLE] Changing a display's resolution does not make window decorations disappear anymore. Thanks to Jon Turney for his help in debugging and fixing this issue.
Update to 4.0.4.0:
o Xinerama working again thanks to Fernando Pedemonte
o URL (obviously nice) fix by René Genz
o better parsing of .desktop files by Jason Alavaliant (PubApps)
o x2goplugin now supports SSH proxies thanks to Nicolas Husson
o misc. spelling and syntax fixes by Stefan Baur (English-only)
o some error messages are now non-modal
o new help generation system and output (--help flag)
o speling and grammar fixes against error and debug messages (English-only)
o misc. bug fixes
Update to 4.0.4.0:
o Xinerama working again thanks to Fernando Pedemonte
o URL (obviously nice) fix by René Genz
o better parsing of .desktop files by Jason Alavaliant (PubApps)
o x2goplugin now supports SSH proxies thanks to Nicolas Husson
o misc. spelling and syntax fixes by Stefan Baur (English-only)
o some error messages are now non-modal
o new help generation system and output (--help flag)
o speling and grammar fixes against error and debug messages (English-only)
o misc. bug fixes
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jul 30 2015 Orion Poplawski <orion(a)cora.nwra.com> - 4.0.5.0-1
- Update to 4.0.5.0
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 4.0.4.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Wed May 27 2015 Orion Poplawski <orion(a)cora.nwra.com> - 4.0.4.0-1
- Update to 4.0.4.0
* Sat May 2 2015 Kalev Lember <kalevlember(a)gmail.com> - 4.0.3.2-2
- Rebuilt for GCC 5 C++11 ABI change
* Thu Feb 19 2015 Orion Poplawski <orion(a)cora.nwra.com> - 4.0.3.2-1
- Update to 4.0.3.2
--------------------------------------------------------------------------------
================================================================================
zbackup-1.4.2-1.el7 (FEDORA-EPEL-2015-7457)
A versatile deduplicating backup tool
--------------------------------------------------------------------------------
Update Information:
Version bumped to 1.4.2
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jul 31 2015 Vladimir Stackov <amigo.elite at gmail dot com> - 1.4.2-1
- Version bumped to 1.4.2
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.4.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Thu Apr 23 2015 Mikolaj Izdebski <mizdebsk(a)redhat.com> - 1.4.1-2
- Rebuild for protobuf soname bump
--------------------------------------------------------------------------------
8 years, 4 months
Self Introduction Axel Delahaye
by Delahaye Axel
Hello everyone,
I'm a computer science enginner from France.
I'm in fond of computer science since my childhood.
I discover Linux and Opensource in 2008 when I join the University Institute of Technology of Lille.
Since this day, I try a large number of Linux distributions and I very like the opensource philosophy.
I now use Fedora as personal use distribution.
Anyway, today I work in Software engineering company and we use RedHat and CentOS.
For our needs, we also use the epel repository and we think about contribute to this repo.
First we would like to use the rubygem-bundler package from epel6 but at this time it is in testing because of the rubygem-thor dependency error
I test rebuild rubygem-thor from fedora21 with epel-6-x86_64 mock profile and it works.
I'm in touch with Mo Morsi who is maintainer of rubygem-thor and the builder of rubygem-bundler in epel-testing 6.
So I'll send request for commit rights to the http://pkgs.fedoraproject.org/cgit/rubygem-thor.git/ and push to the el6 branch.
I hope you now know more about me and I hope I can help you to purpose more and maintained packages
Axel Delahaye
________________________________
Ce message et les pi?ces jointes sont confidentiels et r?serv?s ? l'usage exclusif de ses destinataires. Il peut ?galement ?tre prot?g? par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir imm?diatement l'exp?diteur et de le d?truire. L'int?grit? du message ne pouvant ?tre assur?e sur Internet, la responsabilit? de Worldline ne pourra ?tre recherch?e quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'exp?diteur ne donne aucune garantie ? cet ?gard et sa responsabilit? ne saurait ?tre recherch?e pour tout dommage r?sultant d'un virus transmis.
This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Worldline liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.
8 years, 4 months
Orphaned Packages in epel7 (2015-07-30)
by Till Maas
The following packages are orphaned and will be retired when they
are orphaned for six weeks, unless someone adopts them. If you know for sure
that the package should be retired, please do so now with a proper reason:
https://fedoraproject.org/wiki/How_to_remove_a_package_at_end_of_life
Note: If you received this mail directly you (co)maintain one of the affected
packages or a package that depends on one. Please adopt the affected package or
retire your depending package to avoid broken dependencies, otherwise your
package will be retired when the affected package gets retired.
Package (co)maintainers Status Change
===========================================================================
hawtbuf orphan 6 weeks ago
hawtdispatch orphan 6 weeks ago
jline orphan 6 weeks ago
libgnomecups orphan, ajax, alexl, caillon, caolanm, 6 weeks ago
group::gnome-sig, hadess, johnp, mbarnes,
rhughes, rstrode, ssp, vicodan, xiphmont
maven-doxia orphan 6 weeks ago
mockito orphan 6 weeks ago
objectweb-asm3 orphan 6 weeks ago
parboiled orphan 6 weeks ago
pegdown orphan 6 weeks ago
python-sysv_ipc orphan 4 weeks ago
qupzilla orphan 10 weeks ago
terminology orphan, cicku, spot, vicodan 6 weeks ago
tintwizard orphan 2 weeks ago
The following packages require above mentioned packages:
Depending on: libgnomecups (2), status change: 2015-06-17 (6 weeks ago)
libgnomeprint22 (maintained by: mkasik, alexl, caillon, caolanm, group::gnome-sig, hadess, johnp, mbarnes, rhughes, rnorwood, rstrode, ssp, xiphmont)
libgnomeprint22-2.18.8-8.el7.src requires libgnomecups-devel = 0.2.3-15.el7
libgnomeprint22-2.18.8-8.el7.x86_64 requires libgnomecups-1.0.so.1()(64bit)
libgnomeprintui22 (maintained by: mkasik, alexl, caillon, caolanm, group::gnome-sig, hadess, johnp, mbarnes, rhughes, rnorwood, rstrode, ssp, xiphmont)
libgnomeprintui22-2.18.6-8.el7.1.x86_64 requires libgnomeprint-2-2.so.0()(64bit)
Depending on: mockito (2), status change: 2015-06-12 (6 weeks ago)
voms-api-java (maintained by: ellert)
voms-api-java-3.0.5-3.el7.src requires mvn(org.mockito:mockito-core) = 1.9.0
voms-clients-java (maintained by: ellert)
voms-clients-java-3.0.6-3.el7.noarch requires mvn(org.italiangrid:voms-api-java) = 3.0.5
voms-clients-java-3.0.6-3.el7.src requires mvn(org.italiangrid:voms-api-java) = 3.0.5
Depending on: tintwizard (1), status change: 2015-07-14 (2 weeks ago)
tint2 (maintained by: leigh123linux)
tint2-0.11-11.el7.x86_64 requires tintwizard = 0.3.4-7.el7
Affected (co)maintainers
ajax: libgnomecups
alexl: libgnomecups
caillon: libgnomecups
caolanm: libgnomecups
cicku: terminology
ellert: mockito
group::gnome-sig: libgnomecups
hadess: libgnomecups
johnp: libgnomecups
leigh123linux: tintwizard
mbarnes: libgnomecups
mkasik: libgnomecups
rhughes: libgnomecups
rnorwood: libgnomecups
rstrode: libgnomecups
spot: terminology
ssp: libgnomecups
vicodan: libgnomecups, terminology
xiphmont: libgnomecups
Orphans (13): hawtbuf hawtdispatch jline libgnomecups maven-doxia
mockito objectweb-asm3 parboiled pegdown python-sysv_ipc qupzilla
terminology tintwizard
Orphans (dependend on) (3): libgnomecups mockito tintwizard
Orphans (epel7) for at least 6 weeks (dependend on) (2): libgnomecups
mockito
Orphans (epel7)(not depended on) (10): hawtbuf hawtdispatch jline
maven-doxia objectweb-asm3 parboiled pegdown python-sysv_ipc
qupzilla terminology
Orphans (epel7) for at least 6 weeks (not dependend on) (9): hawtbuf
hawtdispatch jline maven-doxia objectweb-asm3 parboiled pegdown
qupzilla terminology
Depending packages (epel7) (5): libgnomeprint22 libgnomeprintui22
tint2 voms-api-java voms-clients-java
Packages depending on packages orphaned (epel7) for more than 6 weeks
(4): libgnomeprint22 libgnomeprintui22 voms-api-java
voms-clients-java
Not found in repo (epel7) (8): hawtdispatch jline maven-doxia
objectweb-asm3 parboiled pegdown qupzilla terminology
--
The script creating this output is run and developed by Fedora
Release Engineering. Please report issues at its trac instance:
https://fedorahosted.org/rel-eng/
The sources of this script can be found at:
https://git.fedorahosted.org/cgit/releng/tree/scripts/find_unblocked_orph...
8 years, 4 months
Orphaned Packages in epel6 (2015-07-30)
by Till Maas
The following packages are orphaned and will be retired when they
are orphaned for six weeks, unless someone adopts them. If you know for sure
that the package should be retired, please do so now with a proper reason:
https://fedoraproject.org/wiki/How_to_remove_a_package_at_end_of_life
Note: If you received this mail directly you (co)maintain one of the affected
packages or a package that depends on one. Please adopt the affected package or
retire your depending package to avoid broken dependencies, otherwise your
package will be retired when the affected package gets retired.
Package (co)maintainers Status Change
==================================================================
ScientificPython orphan 26 weeks ago
fpc orphan 22 weeks ago
jericho-html orphan, gil 5 weeks ago
jtnef orphan 3 weeks ago
python-sgutils orphan, grover 3 weeks ago
rubygem-bacon orphan, bkabrda, stevetraylen 4 weeks ago
rubygem-fastthread orphan, kanarip 63 weeks ago
rubygem-mongrel orphan, kanarip 63 weeks ago
tetex-IEEEtran orphan 63 weeks ago
The following packages require above mentioned packages:
Depending on: ScientificPython (1), status change: 2015-01-25 (26 weeks ago)
scitools (maintained by: sergiopr)
scitools-0.9.0-2.el6.noarch requires ScientificPython = 2.8-15.el6
Depending on: fpc (1), status change: 2015-02-26 (22 weeks ago)
tuxcmd (maintained by: jcapik)
tuxcmd-0.6.70-2.el6.src requires fpc = 2.4.0-2.el6
Depending on: rubygem-bacon (1), status change: 2015-07-02 (4 weeks ago)
rubygem-facon (maintained by: stahnma)
rubygem-facon-0.4.1-2.el6.noarch requires rubygem(bacon) = 1.1.0
rubygem-facon-0.4.1-2.el6.src requires rubygem(bacon) = 1.1.0
Depending on: rubygem-fastthread (1), status change: 2014-05-14 (63 weeks ago)
rubygem-passenger (maintained by: wakko666, kanarip, tdawson)
rubygem-passenger-3.0.21-11.el6.src requires rubygem(fastthread) = 1.0.7
rubygem-passenger-3.0.21-11.el6.x86_64 requires rubygem(fastthread) = 1.0.7
Depending on: rubygem-mongrel (1), status change: 2014-05-14 (63 weeks ago)
rubygem-mongrel_cluster (maintained by: robert)
rubygem-mongrel_cluster-1.0.5-5.el6.noarch requires rubygem(mongrel) = 1.1.5
Depending on: tetex-IEEEtran (1), status change: 2014-05-14 (63 weeks ago)
nested (maintained by: aeperezt, potty)
nested-1.2.2-8.el6.noarch requires tetex-IEEEtran = 1.7.1-5.el6
Affected (co)maintainers
aeperezt: tetex-IEEEtran
bkabrda: rubygem-bacon
gil: jericho-html
grover: python-sgutils
jcapik: fpc
kanarip: rubygem-fastthread, rubygem-mongrel
potty: tetex-IEEEtran
robert: rubygem-mongrel
sergiopr: ScientificPython
stahnma: rubygem-bacon
stevetraylen: rubygem-bacon
tdawson: rubygem-fastthread
wakko666: rubygem-fastthread
Orphans (9): ScientificPython fpc jericho-html jtnef python-sgutils
rubygem-bacon rubygem-fastthread rubygem-mongrel tetex-IEEEtran
Orphans (dependend on) (6): ScientificPython fpc rubygem-bacon
rubygem-fastthread rubygem-mongrel tetex-IEEEtran
Orphans (epel6) for at least 6 weeks (dependend on) (5):
ScientificPython fpc rubygem-fastthread rubygem-mongrel
tetex-IEEEtran
Orphans (epel6)(not depended on) (3): jericho-html jtnef
python-sgutils
Orphans (epel6) for at least 6 weeks (not dependend on) (0):
Depending packages (epel6) (6): nested rubygem-facon
rubygem-mongrel_cluster rubygem-passenger scitools tuxcmd
Packages depending on packages orphaned (epel6) for more than 6 weeks
(5): nested rubygem-mongrel_cluster rubygem-passenger scitools
tuxcmd
Not found in repo (epel6) (1): jtnef
--
The script creating this output is run and developed by Fedora
Release Engineering. Please report issues at its trac instance:
https://fedorahosted.org/rel-eng/
The sources of this script can be found at:
https://git.fedorahosted.org/cgit/releng/tree/scripts/find_unblocked_orph...
8 years, 4 months