EPEL intend to retire Django on EL5, EL6
by Matthias Runge
Hi,
Django is currently in version 1.3 in EPEL6 and version 1.1 in EPEL5.
Both don't receive any security fixes any more, and I'd like to retire
and remove both.
For EL6, we have Django14, which packages Django-1.4.
For EL5, the situation looks not so good. Django upstream deprecated
Python 2.4 a while ago.
Matthias
--
Matthias Runge <mrunge(a)matthias-runge.de>
8 years, 9 months
EPEL RFC: Strategy for python3 versions
by Toshio Kuratomi
Hi guys,
Orion has submitted a python34 package for EPEL and I'm going to review them
soon if no one beats me to it. In parallel with getting that approved I'd
like to ask about the general strategy we'd like to take with maintaining
python3 in EPEL.
Python3 is an evolving language. New 3.N releases bring new features,
bugfixes, and both backwards compatibility breaking and backwards
compatibility enhancing changes (For instance, 3.3 brought the ability to
mark regular text strings with the "u" prefix to match with python2.x. 3.5
will bring back formatting methods for byte strings.)
Currently, there are a good many python libraries that work with both
python2 and python3 but few libraries and few applications that are
python3-only.
Upstream, python3 releases generally see 18 months of bugfix updates and
5 years of security fixes[1]_.
As Orion has pointed out, it would be hard for us to maintain a python3
release past upstream's EOL date as there's a lot of code in a python3
package (Not to mention the stack of packages that we'll build on top of
it.)
In addition, I am a little worried about the amount of time we may end up
having to devote to keeping multiple python3.N packages (and stacks of
packages for them) alive if we only retire old python3 releases when
upstream ceases to provide support for them (back of the envelope
calculations are that if we don't skip any python3.N releases, we'd be
attempting to maintain 4-5 python3 releases before the first of those EOL's
upstream).
I'd like to propose that we attempt to maintain 2 python3 releases at any
one time. We'll create python3.4 now. When python3.5 comes out in 18
months (less since python3.4 has been out for several months), we'll
package that in addition. When python3.6 comes out (3 years), we'll package
that and retire python3.4.
Pluses:
* This gives users some time to verify that their homegrown applications
continue to work with the newer python3 package that we produce before the
old one goes EOL.
* This means that we're only working on 3 versions of python3 at a time (the
two we expect users to use and the next version that we're tracking as
upstream works on finishing it).
* This gives us a chance to update frameworks, libraries, and other stacks
of software built on top of python3 at the same time as we create the new
interpreter package. So you could get python3.4 with Django-1.6.x and
you could get python3.5 with Django-1.8.x
Negatives:
* Users will have to reverify and port apps written against python3 to the
new interpreter version sometime in the 3 year lifespan of the python3
package they originally wrote it against.
* Package maintainers who are creating packages that run on python3 will
need to submit new packages for python3.4, python3.5, etc.
* Users may have to port to both new versions of python3 and to new versions
of some libraries they depend on (because we took the opportunity to
update those libraries for the new python3 interpreter stack).
Precedents:
* With mediawiki, we now ship versioned packages and retire the old versions
when upstream stops shipping updates. The stacks of packages built on top
of mediawiki have to be produced for each mediawiki version.
Alternatives:
* Never retire the python3 packages. This leaves us trying to support the
release once upstream stops support. Since new python3 releases are in
demand, we'd probably end up trying to maintain all of the python3
releases that came out between when RHEL-N was released and when
RHEL-N+1 releases (because maintainer focus usually shifts to building
packages for RHEL-N+1 then).
* Retire the python3 packages when upstream stops support. This defers the
pain for users (They can use a python3.N version for about 5 years instead
of about 3 years). However, it means that we're maintaining 4-5 versions
of python3 at a time instead of 2-3
What do people think? Is this something we can do within the policies of
EPEL? Does it make sense to go forward with this? Is it better to go with
one of the alternatives?
.. [1]_: Previous versions of python3 have a lifespan defined in their PEP. For
instance, this one for python3.3:
http://legacy.python.org/dev/peps/pep-0398/#lifespan
The lifespan for the previous versions are the same:
* bugfix updates for python3.N approximately every 4-6 months for
approximately 18 months.
* After the release of python3.N+1, a final bugfix of python3.N is released.
* After that, security updates (source only) will be released until 5 years
after the initial release of 3.N.
3.4 doesn't have this lifespan section but that's probably an oversight (I
can ask Larry Hastings to clarify that if need be).
-Toshio
9 years
EPEL Fwd: [pkgdb] python-augeas epel7 cloned from EL-6
by Greg Swift
hey all. So I was talking to Dominic Cleal this week at the Summit and he
pointed out that python-augeas is getting pulled into RHEL 7 proper. Its
not in the beta, but it is built for the RC. My reaction, was kewl, dont
have to worry about the epel package for el7!
I then got a bug report asking for python-augeas in epel7, which i closed
with the above explanation.
Then i got the below e-mail. :(
So, what is the proper way for me to remove that branch? I looked at the
FAQ and only saw this:
which points to an invalid site, so that needs to be fixed.
---------- Forwarded message ----------
From: Fedora PackageDB <pkgdb(a)fedoraproject.org>
Date: Thu, Apr 17, 2014 at 12:37 PM
Subject: [pkgdb] python-augeas epel7 cloned from EL-6
To: gregswift(a)gmail.com
limb cloned python-augeas epel7 from EL-6
To make changes to this package see:
https://admin.fedoraproject.org/pkgdb/acls/name/python-augeas
9 years
EPEL Clang package doesn't work on Amazon Linux
by Tyler Brock
Hey Everyone,
I've been trying to use clang package on Amazon linux via EPEL and have
installed version 3.4-9.el6 yet am unable to compile even the simplest of
programs:
#include <iostream>
int main(){
std::cout << "Hello World" << std::endl;
}
Saving the above into a file named test.cpp and compiling with "clang++
test.cpp" produces the following error:
test.cpp:1:10: fatal error: 'iostream' file not found
#include <iostream>
^
1 error generated.
When attempting the same with gcc (g++) it works as expected so It seems
like the clang compiler cannot find the required C++ headers and library
files.
I have contacted Amazon AWS support and they verified that the issue is
reproducible by them running the latest version of Amazon Linux with
updated packages from EPEL.
I've tried installing devel headers for clang and multiple versions of
libstd++ which seem to be placed in /usr/include/c++/<gcc-version> but
which, when used by gcc, do not require the path to them be specified at
all. It just works.
I have a feeling the clang package is not built to work properly with
Amazon Linux as C++ headers and library files (for either for libc++ or
libstdc++) such as iostream should be found by default. Any help in
resolving the matter would be greatly appreciated.
It may also be worth noting that on CentOS the clang package seems to work
fine.
-Tyler
9 years
EPEL thoughts or views on packages deliberately left out of rhel?
by Jim Perrin
The RC for el7 specifically omits packages that have drawn interest in
the past. A few examples of such packages would be kmail and pidgin.
kmail is ordinarily part of the kde-pim suite, but is stripped from the
final build via some 'rm' handiwork in the spec. Pidgin is omitted from
the build via a check to see if the build host is rhel. The libs are
used and included, but the binary is no longer produced.
I'm curious to know if anyone from the epel side has thought about how
these might be included. This doesn't appear to be a more
straightforward case like thunderbird, but would require some prep-work
to not overwrite core packages.
Thoughts as to how this might be accomplished?
--
Jim Perrin
The CentOS Project | http://www.centos.org
twitter: @BitIntegrity | GPG Key: FA09AD77
9 years, 1 month
EPEL Fedora 6 updates-testing report
by updates@fedoraproject.org
The following Fedora EPEL 6 Security updates need testing:
Age URL
738 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2012-5620/bugzilla-3....
85 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-0440/fwsnort-1.6...
81 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-0483/boinc-clien...
70 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-0590/oath-toolki...
30 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1011/php-ZendFra...
21 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1073/cacti-0.8.8...
14 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1102/wordpress-3...
14 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1137/znc-1.2-3.el6
13 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1160/drupal7-7.2...
11 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1169/ansible-1.5...
8 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1206/Django14-1....
6 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1226/ndjbdns-1.0...
4 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1254/qt5-qtbase-...
4 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1236/prosody-0.8...
1 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1275/mediawiki11...
1 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1282/dmlite-0.6....
The following builds have been pushed to Fedora EPEL 6 updates-testing
mocha-1.18.0-1.el6
ngircd-21.1-2.el6
nodejs-asap-1.0.0-1.el6
nodejs-basic-auth-connect-1.0.0-1.el6
nodejs-batch-0.5.0-2.el6
nodejs-character-parser-1.2.0-1.el6
nodejs-commander-2.1.0-1.el6
nodejs-component-emitter-1.1.2-1.el6
nodejs-compressible-1.0.0-2.el6
nodejs-compression-1.0.1-1.el6
nodejs-connect-2.14.2-2.el6
nodejs-connect-timeout-1.0.0-1.el6
nodejs-constantinople-2.0.0-3.el6
nodejs-cookie-0.1.1-1.el6
nodejs-cookie-parser-1.0.1-4.el6
nodejs-cookie-signature-1.0.3-1.el6
nodejs-cookiejar-1.3.1-1.el6
nodejs-css-1.6.0-1.el6
nodejs-css-stringify-1.4.1-1.el6
nodejs-csurf-1.0.0-1.el6
nodejs-errorhandler-1.0.0-2.el6
nodejs-express-3.5.0-2.el6
nodejs-express-session-1.0.2-1.el6
nodejs-fresh-0.2.2-1.el6
nodejs-jade-1.3.0-2.el6
nodejs-merge-descriptors-0.0.2-1.el6
nodejs-method-override-1.0.0-1.el6
nodejs-methods-0.1.0-1.el6
nodejs-monocle-1.1.51-1.el6
nodejs-morgan-1.0.0-1.el6
nodejs-multiparty-3.2.3-2.el6
nodejs-negotiator-0.4.2-1.el6
nodejs-promise-4.0.0-1.el6
nodejs-qs-0.6.6-1.el6
nodejs-range-parser-1.0.0-1.el6
nodejs-raw-body-1.1.3-1.el6
nodejs-readdirp-0.3.3-1.el6
nodejs-reduce-component-1.0.1-1.el6
nodejs-response-time-1.0.0-1.el6
nodejs-send-0.2.0-1.el6
nodejs-serve-index-1.0.1-2.el6
nodejs-serve-static-1.0.2-1.el6
nodejs-source-map-0.1.33-1.el6
nodejs-static-favicon-1.0.1-1.el6
nodejs-stream-counter-0.2.0-1.el6
nodejs-superagent-0.17.0-4.el6
nodejs-transformers-3.0.0-3.el6
nodejs-uglify-to-browserify-1.0.2-2.el6
nodejs-utils-merge-1.0.0-1.el6
nodejs-vhost-1.0.0-1.el6
nodejs-with-3.0.0-3.el6
openstack-sahara-2014.1.0-4.el6
perl-qpid_proton-0.7-1.el6
qpid-proton-0.7-1.el6
rendercheck-1.4-1.0.2.20140402GIT589bb58.el6
reposurgeon-3.10-1.el6
uglify-js-2.4.13-4.el6
Details about builds:
================================================================================
mocha-1.18.0-1.el6 (FEDORA-EPEL-2014-0738)
A simple, flexible, fun test framework for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Sat Mar 15 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 1.18.0-1
- update to upstream release 1.18.0
* Sun Mar 2 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 1.17.1-1
- update to upstream release 1.17.1
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
ngircd-21.1-2.el6 (FEDORA-EPEL-2014-1284)
Next Generation IRC Daemon
--------------------------------------------------------------------------------
Update Information:
Enable pam support. Fixes bug #1092706
--------------------------------------------------------------------------------
ChangeLog:
* Tue Apr 29 2014 Kevin Fenzi <kevin(a)scrye.com> 21.1-2
- Enable pam support. Fixes bug #1092706
* Wed Mar 26 2014 Kevin Fenzi <kevin(a)scrye.com> 21.1-1
- Update to 21.1
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1092706 - Enabled PAM support
https://bugzilla.redhat.com/show_bug.cgi?id=1092706
--------------------------------------------------------------------------------
================================================================================
nodejs-asap-1.0.0-1.el6 (FEDORA-EPEL-2014-0738)
High-priority task queue for Node.js and browser
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-basic-auth-connect-1.0.0-1.el6 (FEDORA-EPEL-2014-0738)
Basic authentication middleware for Node.js and Connect
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-batch-0.5.0-2.el6 (FEDORA-EPEL-2014-0738)
Asynchronous batch module with concurrency control and progress reporting
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-character-parser-1.2.0-1.el6 (FEDORA-EPEL-2014-0738)
Parse JavaScript one character at a time to look for snippets in templates
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-commander-2.1.0-1.el6 (FEDORA-EPEL-2014-0738)
Node.js command-line interfaces made easy
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Sun Mar 2 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 2.1.0-1
- update to upstream release 2.1.0
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-component-emitter-1.1.2-1.el6 (FEDORA-EPEL-2014-0738)
An event emitter component for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-compressible-1.0.0-2.el6 (FEDORA-EPEL-2014-0738)
Compressible Content-Type/MIME checking for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-compression-1.0.1-1.el6 (FEDORA-EPEL-2014-0738)
Compression middleware for Node.js and Connect
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-connect-2.14.2-2.el6 (FEDORA-EPEL-2014-0738)
High performance middleware framework for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Mon Mar 17 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 2.14.2-2
- fix versioned dependency on npm(compression)
* Sat Mar 15 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 2.14.2-1
- update to upstream release 2.14.2
* Mon Mar 10 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 2.14.1-1
- update to upstream release 2.14.1
* Mon Feb 24 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 2.13.0-1
- update to upstream release 2.13.0
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-connect-timeout-1.0.0-1.el6 (FEDORA-EPEL-2014-0738)
Timeout middleware for Node.js and Connect
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-constantinople-2.0.0-3.el6 (FEDORA-EPEL-2014-0738)
Determine whether a JavaScript expression evaluates to a constant
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-cookie-0.1.1-1.el6 (FEDORA-EPEL-2014-0738)
Cookie parsing and serialization for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Sat Mar 8 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 0.1.1-1
- update to upstream release 0.1.1
* Sat Aug 3 2013 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0.1.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-cookie-parser-1.0.1-4.el6 (FEDORA-EPEL-2014-0738)
A Node.js module for cookie parsing with signatures
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-cookie-signature-1.0.3-1.el6 (FEDORA-EPEL-2014-0738)
Node.js module to sign and unsign cookies
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Sat Mar 8 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 1.0.3-1
- update to upstream release 1.0.3
* Sat Aug 3 2013 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.0.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-cookiejar-1.3.1-1.el6 (FEDORA-EPEL-2014-0738)
A simple, persistent cookie jar system for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-css-1.6.0-1.el6 (FEDORA-EPEL-2014-0738)
A CSS parser/stringifier for Node.js using css-parse and css-stringify
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-css-stringify-1.4.1-1.el6 (FEDORA-EPEL-2014-0738)
A CSS compiler for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-csurf-1.0.0-1.el6 (FEDORA-EPEL-2014-0738)
CSRF token middleware for Node.js and Connect
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-errorhandler-1.0.0-2.el6 (FEDORA-EPEL-2014-0738)
The default error handler page for Connect
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-express-3.5.0-2.el6 (FEDORA-EPEL-2014-0738)
Sinatra inspired web development framework for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Mon Mar 17 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 3.5.0-2
- fix versioned dependency on npm(connect)
* Sat Mar 8 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 3.5.0-1
- update to upstream release 3.5.0
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-express-session-1.0.2-1.el6 (FEDORA-EPEL-2014-0738)
A module to setup a session store with the given options
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-fresh-0.2.2-1.el6 (FEDORA-EPEL-2014-0738)
HTTP response freshness testing for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Sat Mar 8 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 0.2.2-1
- update to upstream release 0.2.2
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-jade-1.3.0-2.el6 (FEDORA-EPEL-2014-0738)
Jade template engine for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-merge-descriptors-0.0.2-1.el6 (FEDORA-EPEL-2014-0738)
A Node.js module to merge objects using descriptors
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-method-override-1.0.0-1.el6 (FEDORA-EPEL-2014-0738)
Provides faux HTTP method support for Connect
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-methods-0.1.0-1.el6 (FEDORA-EPEL-2014-0738)
HTTP methods that node supports
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Mon Feb 24 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 0.1.0-1
- update to upstream release 0.1.0
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-monocle-1.1.51-1.el6 (FEDORA-EPEL-2014-0738)
A tool for watching directories for file changes
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-morgan-1.0.0-1.el6 (FEDORA-EPEL-2014-0738)
Logging middleware for Connect
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-multiparty-3.2.3-2.el6 (FEDORA-EPEL-2014-0738)
A multipart/form-data parser for Node.js which supports streaming
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-negotiator-0.4.2-1.el6 (FEDORA-EPEL-2014-0738)
An HTTP content negotiator for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-promise-4.0.0-1.el6 (FEDORA-EPEL-2014-0738)
Bare bones Promises/A+ implementation for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-qs-0.6.6-1.el6 (FEDORA-EPEL-2014-0738)
Query string parser for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Mon Mar 10 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 0.6.6-1
- update to upstream release 0.6.6
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-range-parser-1.0.0-1.el6 (FEDORA-EPEL-2014-0738)
Range header field string parser for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Sat Mar 8 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 1.0.0-1
- update to usptream release 1.0.0
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-raw-body-1.1.3-1.el6 (FEDORA-EPEL-2014-0738)
Get and validate the raw body of a readable stream
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-readdirp-0.3.3-1.el6 (FEDORA-EPEL-2014-0738)
Recursive version of Node's fs.readdir with a streaming API
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-reduce-component-1.0.1-1.el6 (FEDORA-EPEL-2014-0738)
An array reduce component for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-response-time-1.0.0-1.el6 (FEDORA-EPEL-2014-0738)
X-Response-Time header for Node.js and Connect
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-send-0.2.0-1.el6 (FEDORA-EPEL-2014-0738)
Better streaming static file server with Range and conditional-GET support
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Sat Mar 8 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 0.2.0-1
- update to upstream release 0.2.0
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-serve-index-1.0.1-2.el6 (FEDORA-EPEL-2014-0738)
Middleware for serving directory listings for Node.js and Connect
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-serve-static-1.0.2-1.el6 (FEDORA-EPEL-2014-0738)
Middleware for serving static files for Node.js and Connect
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-source-map-0.1.33-1.el6 (FEDORA-EPEL-2014-0738)
Node.js library that generates and consumes source maps
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Thu Mar 13 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 0.1.33-1
- update to upstream release 0.1.33
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-static-favicon-1.0.1-1.el6 (FEDORA-EPEL-2014-0738)
Favicon serving middleware with caching for Node.js and Connect
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-stream-counter-0.2.0-1.el6 (FEDORA-EPEL-2014-0738)
Keeps track of how many bytes have been written to a stream
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-superagent-0.17.0-4.el6 (FEDORA-EPEL-2014-0738)
A small, progressive client-side HTTP request library
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-transformers-3.0.0-3.el6 (FEDORA-EPEL-2014-0738)
String/Data transformations for Node.js
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-uglify-to-browserify-1.0.2-2.el6 (FEDORA-EPEL-2014-0738)
A transform to make UglifyJS work in browserify
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-utils-merge-1.0.0-1.el6 (FEDORA-EPEL-2014-0738)
Node.js module to merge properties between objects
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-vhost-1.0.0-1.el6 (FEDORA-EPEL-2014-0738)
Virtual domain hosting middleware for Node.js and Connect
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
nodejs-with-3.0.0-3.el6 (FEDORA-EPEL-2014-0738)
Compile time `with` for strict mode JavaScript
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
================================================================================
openstack-sahara-2014.1.0-4.el6 (FEDORA-EPEL-2014-1285)
Apache Hadoop cluster management on OpenStack
--------------------------------------------------------------------------------
Update Information:
Correcting bug with rhel6 init script
--------------------------------------------------------------------------------
================================================================================
perl-qpid_proton-0.7-1.el6 (FEDORA-EPEL-2014-1287)
Perl language bindings for Qpid Proton
--------------------------------------------------------------------------------
Update Information:
Rebased on Proton 0.7.
--------------------------------------------------------------------------------
================================================================================
qpid-proton-0.7-1.el6 (FEDORA-EPEL-2014-1288)
A high performance, lightweight messaging library
--------------------------------------------------------------------------------
Update Information:
Rebased on Proton 0.7
--------------------------------------------------------------------------------
ChangeLog:
* Tue Apr 29 2014 Darryl L. Pierce <dpierce(a)redhat.com> - 0.7-1
- Rebased on Proton 0.7
- Added new CMake modules for Proton to qpid-proton-c-devel.
--------------------------------------------------------------------------------
================================================================================
rendercheck-1.4-1.0.2.20140402GIT589bb58.el6 (FEDORA-EPEL-2014-1286)
Tool to verify correct operation of the XRENDER extension
--------------------------------------------------------------------------------
Update Information:
New package in Fedora repos.
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1083721 - Review Request: rendercheck - Tool to verify correct operation of the XRENDER extension
https://bugzilla.redhat.com/show_bug.cgi?id=1083721
--------------------------------------------------------------------------------
================================================================================
reposurgeon-3.10-1.el6 (FEDORA-EPEL-2014-1283)
SCM Repository Manipulation Tool
--------------------------------------------------------------------------------
Update Information:
- Finer control over filtering with caC flags.
- New setfield command for tweaking object attributes from lift scripts.
- The attribution-parsing code handles odd characters in names better now.
- The filter command can operate on email addresses as well as names.
- New 'stamp' command to report action stamps of commits.
- New 'count' comment reports selection-set counts.
- New branchify_mapping option for renaming Subversion branches on analysis.
- New transcode command for moving metadata to UTF-8.
- New @dsc() function for selecting all descendants of a selection set.
--------------------------------------------------------------------------------
ChangeLog:
* Tue Apr 22 2014 Christopher Meng <rpm(a)cicku.me> - 3.10-1
- Finer control over filtering with caC flags.
- New setfield command for tweaking object attributes from lift scripts.
- The attribution-parsing code handles odd characters in names better now.
- The filter command can operate on email addresses as well as names.
- New 'stamp' command to report action stamps of commits.
- New 'count' comment reports selection-set counts.
- New branchify_mapping option for renaming Subversion branches on analysis.
- New transcode command for moving metadata to UTF-8.
- New @dsc() function for selecting all descendants of a selection set.
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1082317 - reposurgeon-3.10 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1082317
--------------------------------------------------------------------------------
================================================================================
uglify-js-2.4.13-4.el6 (FEDORA-EPEL-2014-0738)
JavaScript parser, mangler/compressor and beautifier toolkit
--------------------------------------------------------------------------------
Update Information:
initial package
--------------------------------------------------------------------------------
ChangeLog:
* Tue Apr 29 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 2.4.13-4
- pretrans script should actually be split in two, so one half should run in
uglify-js and the other half should run in js-uglify (#1092184)
* Tue Apr 1 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 2.4.13-3
- pretrans script should run in js-uglify subpackage (#1082946)
* Sat Mar 15 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 2.4.13-2
- add logic for building on EPEL 6 as web-assets-{devel,filesystem} are not
yet available
* Thu Mar 13 2014 Jamie Nguyen <jamielinux(a)fedoraproject.org> - 2.4.13-1
- update to upstream release 2.4.13
* Mon Jan 20 2014 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 2.2.5-4
- port to new JS guidelines
- provide the nodejs- form
* Sun Jan 19 2014 Tom Hughes <tom(a)compton.nu> - 2.2.5-3
- use new multi-version packaging rules
- update to latest nodejs packaging standards
* Sun Aug 4 2013 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.2.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1003338 - nodejs-connect-2.14.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003338
[ 2 ] Bug #1003346 - nodejs-express-3.5.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1003346
[ 3 ] Bug #1092184 - updating uglify-js from 2.2.5-2.fc20 to 2.4.13-3.fc20 fails with conflict on /usr/lib/node_modules/uglify-js
https://bugzilla.redhat.com/show_bug.cgi?id=1092184
--------------------------------------------------------------------------------
9 years, 1 month
EPEL epel beta report: 20140430 changes
by EPEL Beta Report
Compose started at Wed Apr 30 08:15:03 UTC 2014
New package: debootstrap-1.0.59-1.el7.2
Debian GNU/Linux bootstrapper
New package: dmenu-4.5-5.20140425git.el7
Generic menu for X
New package: linux_logo-5.11-7.el7
Show a logo with some system info on the console
New package: python-mccabe-0.2.1-4.el7
McCabe complexity checker
New package: rendercheck-1.4-1.0.2.20140402GIT589bb58.el7
Tool to verify correct operation of the XRENDER extension
New package: ttf2pt1-3.4.4-16.el7
TrueType to Adobe Type 1 font converter
Updated Packages:
R-3.1.0-4.el7
-------------
* Tue Apr 29 2014 Tom Callaway <spot(a)fedoraproject.org> - 3.1.0-3
- epel fixes
* Fri Apr 25 2014 Tom Callaway <spot(a)fedoraproject.org> - 3.1.0-2
- fix core-devel Requires
* Mon Apr 21 2014 Tom Callaway <spot(a)fedoraproject.org> - 3.1.0-1
- update to 3.1.0
* Mon Mar 24 2014 Brent Baude <baude(a)us.ibm.com> - 3.0.3-2
- add ppc64le support
- rhbz #1077819
* Thu Mar 20 2014 Tom Callaway <spot(a)fedoraproject.org> - 3.0.3-1
- update to 3.0.3
- switch to java-headless
* Fri Feb 14 2014 David Tardon <dtardon(a)redhat.com> - 3.0.2-7
- rebuild for new ICU
* Sat Feb 08 2014 Ville Skyttä <ville.skytta(a)iki.fi> - 3.0.2-6
- Install macros to %{_rpmconfigdir}/macros.d where available.
- Fix rpmlint spaces vs tabs warnings.
* Fri Feb 07 2014 Tom Callaway <spot(a)fedoraproject.org> - 3.0.2-5
- add support for system tre (f21+, rhel 7+)
facter-2.0.1-1.el7
------------------
* Tue Apr 29 2014 Sam Kottler <skottler(a)fedoraproject.org> - 2.0.1-1
- Update to to 2.0.1
gtkwave-3.3.59-1.el7
--------------------
* Tue Apr 29 2014 Paul Howarth <paul(a)city-fan.org> 3.3.59-1
- update to 3.3.59
- use Duff's Device for 8 byte -> 1 byte binary value compression algorithm
in FST writer
- warnings fixes from cppcheck
- moved MinGW for FST to using different windows tempfile generation instead
of tmpfile()
- removed fflush() in FST for MinGW in places that can cause crashes with
read-only files
- updated man page for gtkwave.1 indicating that XID is in hex
- allow decimal conversions on popcnt filtered vectors that are greater than
64 bits (they will never overflow)
libserf-1.3.5-1.el7
-------------------
* Wed Apr 30 2014 Christopher Meng <rpm(a)cicku.me> - 1.3.5-1
- update to 1.3.5
openlmi-scripts-0.3.0-1.el7
---------------------------
* Tue Apr 29 2014 Michal Minar <miminar(a)redhat.com> 0.3.0-1
- Updated to new upstream version 0.3.0.
- Added openlmi-tools source due to meta-command's absence in source tarball.
- Documentation package ships just documentation for meta-command.
- Each script sub-package now contains related documentation.
- Added journald sub-package.
openocd-0.8.0-1.el7
-------------------
* Tue Apr 29 2014 Markus Mayer <lotharlutz(a)gmx.de> - 0.8.0-1
- update to 0.8.0
- enable new targets
- add udev rule
perl-Config-Generator-0.7-1.el7
-------------------------------
* Tue Apr 29 2014 Alexandre Beche <alexandre.beche(a)gmail.com> 0.7-1
- Added an example of a wrapper script in the "eg" directory.
- Config::Generator::Template: added ifdef() and ifndef() macros.
* Thu Mar 27 2014 Alexandre Beche <alexandre.beche(a)gmail.com> 0.5-2
- minor change to specfile: Summary and description changed.
perl-ExtUtils-Depends-0.307-1.el7
---------------------------------
* Tue Apr 29 2014 Paul Howarth <paul(a)city-fan.org> - 0.307-1
- Update to 0.307
- $Data::Dumper::Terse set to 1 broke save_config
- Document API expected by ::load function
- Classify buildreqs by usage
- Make %files list more explicit
- Use DESTDIR rather than PERL_INSTALL_ROOT
- Don't use macros for commands
php-pecl-xdebug-2.2.5-1.el7
---------------------------
* Wed Apr 30 2014 Remi Collet <remi(a)fedoraproject.org> - 2.2.5-1
- Update to 2.2.5 (stable)
* Wed Apr 23 2014 Remi Collet <remi(a)fedoraproject.org> - 2.2.4-2
- add numerical prefix to extension configuration file
- drop uneeded full extension path
php-phpunit-DbUnit-1.3.1-2.el7
------------------------------
* Tue Apr 29 2014 Remi Collet <remi(a)fedoraproject.org> - 1.3.1-2
- sources from github
- run tests during build
php-phpunit-FinderFacade-1.1.0-3.el7
------------------------------------
* Tue Apr 29 2014 Remi Collet <remi(a)fedoraproject.org> - 1.1.0-3
- sources from github
- run tests during build
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.1.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
php-phpunit-PHP-TokenStream-1.2.2-2.el7
---------------------------------------
* Tue Apr 29 2014 Remi Collet <remi(a)fedoraproject.org> - 1.2.2-2
- sources from github
php-phpunit-PHPUnit-Selenium-1.3.3-2.el7
----------------------------------------
* Tue Apr 29 2014 Remi Collet <remi(a)fedoraproject.org> - 1.3.3-2
- sources from github
php-phpunit-PHPUnit-SkeletonGenerator-1.2.1-3.el7
-------------------------------------------------
* Tue Apr 29 2014 Remi Collet <remi(a)fedoraproject.org> - 1.2.1-3
- sources from github
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.2.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
php-phpunit-PHPUnit-Story-1.0.2-3.el7
-------------------------------------
* Tue Apr 29 2014 Remi Collet <remi(a)fedoraproject.org> - 1.0.2-3
- sources from github
- run test suite when build --with tests
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.0.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
php-phpunit-Text-Template-1.2.0-2.el7
-------------------------------------
* Tue Apr 29 2014 Remi Collet <remi(a)fedoraproject.org> - 1.2.0-2
- sources from github
python-django-1.6.3-1.el7
-------------------------
* Tue Apr 22 2014 Matthias Runge <mrunge(a)redhat.com> - 1.6.3-1
- update to 1.6.3 fixing CVE-2014-0473 and CVE-2014-0474
* Thu Mar 27 2014 Matthias Runge <mrunge(a)redhat.com> - 1.6.2-2
- remove simplejson requirement
- make bash-completion a sub-package, both main packages can require
* Thu Feb 13 2014 Matthias Runge <mrunge(a)redhat.com> - 1.6.2-1
- update to 1.6.2 (rhbz#1027766)
- bash completion for python3-django-admin (rhbz#1035987)
qpid-proton-0.7-1.el7
---------------------
* Tue Apr 29 2014 Darryl L. Pierce <dpierce(a)redhat.com> - 0.7-1
- Rebased on Proton 0.7
- Added new CMake modules for Proton to qpid-proton-c-devel.
reposurgeon-3.10-1.el7
----------------------
* Tue Apr 22 2014 Christopher Meng <rpm(a)cicku.me> - 3.10-1
- Finer control over filtering with caC flags.
- New setfield command for tweaking object attributes from lift scripts.
- The attribution-parsing code handles odd characters in names better now.
- The filter command can operate on email addresses as well as names.
- New 'stamp' command to report action stamps of commits.
- New 'count' comment reports selection-set counts.
- New branchify_mapping option for renaming Subversion branches on analysis.
- New transcode command for moving metadata to UTF-8.
- New @dsc() function for selecting all descendants of a selection set.
Summary:
Added Packages: 6
Removed Packages: 0
Modified Packages: 19
9 years, 1 month
EPEL Fedora 6 updates-testing report
by updates@fedoraproject.org
The following Fedora EPEL 6 Security updates need testing:
Age URL
737 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2012-5620/bugzilla-3....
84 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-0440/fwsnort-1.6...
79 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-0483/boinc-clien...
69 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-0590/oath-toolki...
29 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1011/php-ZendFra...
20 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1073/cacti-0.8.8...
13 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1102/wordpress-3...
13 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1132/check-mk-1....
13 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1122/knot-1.4.5-...
13 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1137/znc-1.2-3.el6
13 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1144/strongswan-...
12 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1160/drupal7-7.2...
10 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1169/ansible-1.5...
6 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1206/Django14-1....
5 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1226/ndjbdns-1.0...
3 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1236/prosody-0.8...
2 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1254/qt5-qtbase-...
0 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1275/mediawiki11...
0 https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-1282/dmlite-0.6....
The following builds have been pushed to Fedora EPEL 6 updates-testing
dmlite-0.6.2-2.el6
galera-25.3.5-5.el6
geany-1.24.1-1.el6
golang-github-kdar-factorlog-0-0.1.git814d8f7.el6
libsvm-3.18-3.el6
mariadb-galera-5.5.36-10.el6
mediawiki119-1.19.15-1.el6
perl-Config-Generator-0.7-1.el6
python-bitarray-0.3.5-8.el6
python-tw2-forms-2.1.4.1-7.el6
Details about builds:
================================================================================
dmlite-0.6.2-2.el6 (FEDORA-EPEL-2014-1282)
Common libraries for grid data management and storage
--------------------------------------------------------------------------------
Update Information:
Patched mistyped parenthesis in Security.cpp
dmlite release 0.6.2
dmlite release 0.6.2
dmlite release 0.6.2
dmlite release 0.6.2
--------------------------------------------------------------------------------
ChangeLog:
* Fri Apr 25 2014 Alejandro Alvarez <aalvarez(a)cern.ch> - 0.6.2-2
- Patched mistyped parenthesis in Security.cpp
--------------------------------------------------------------------------------
================================================================================
galera-25.3.5-5.el6 (FEDORA-EPEL-2014-1280)
Synchronous multi-master wsrep provider (replication engine)
--------------------------------------------------------------------------------
Update Information:
Initial build
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1083232 - Review Request: galera - Galera replication engine
https://bugzilla.redhat.com/show_bug.cgi?id=1083232
--------------------------------------------------------------------------------
================================================================================
geany-1.24.1-1.el6 (FEDORA-EPEL-2014-1270)
A fast and lightweight IDE using GTK2
--------------------------------------------------------------------------------
Update Information:
This update brings the new Geany 1.24.1 to you.
Some highlights:
* Fix bulk Search & Replace not to match replacements.
* Update Scintilla to 3.3.6.
* Add experimental GTK3 support.
* Lots of improvements to PHP and Fortran symbols parsing.
* Add filetypes Clojure, CUDA, Batch, Graphviz, PowerShell and Rust.
* Update translations: ca, cs, de, es, eu, fr, gl, he, hu, it, kk, lt, nl, pt, ru, sk, sl, sv, tr, zh_CN, zh_TW.
A comprehensive list of changes can be found in the ReleaseNotes at
http://www.geany.org/Documentation/ReleaseNotes
A complete list of changes can be found in the ChangeLog at
https://github.com/geany/geany/commits/1.24.1
--------------------------------------------------------------------------------
ChangeLog:
* Thu Apr 17 2014 Dominic Hopf <dmaphy(a)fedoraproject.org> - 1.24.1-1
- New upstream release: Geany 1.24.1
* Tue Apr 15 2014 Dominic Hopf <dmaphy(a)fedoraproject.org> - 1.24-1
- New upstream release: Geany 1.24
- update sqlite3.c.tags and add std.css.tags for CSS3
- fix bogus date warnings
* Fri Jul 26 2013 Ville Skyttä <ville.skytta(a)iki.fi> - 1.23.1-2
- Install docs to %{_pkgdocdir} where available.
* Sun May 19 2013 Dominic Hopf <dmaphy(a)fedoraproject.org> - 1.23.1-1
- New upstream release: Geany 1.23.1
* Tue Apr 9 2013 Jon Ciesla <limburgher(a)gmail.com> - 1.23-2
- Drop desktop vendor tag.
* Sun Mar 10 2013 Dominic Hopf <dmaphy(a)fedoraproject.org> - 1.23-1
- New upstream release: Geany 1.23
* Tue Jun 19 2012 Dominic Hopf <dmaphy(a)fedoraproject.org> - 1.22-1
- New upstream release: Geany 1.22
- remove the previous patch to fix DSO linking, this is now included upstream
- update upstream URLs for tags files
* Mon May 21 2012 Peter Robinson <pbrobinson(a)fedoraproject.org> - 0.21-5
- Add patch to fix FTBFS due to DSO linking, spec cleanup
* Sat Dec 24 2011 Dominic Hopf <dmaphy(a)fedoraproject.org> - 0.21-3
- update GTK+ tags to 2.24
* Sun Dec 18 2011 Dominic Hopf <dmaphy(a)fedoraproject.org> - 0.21-2
- update Xfce tags to 4.8
* Tue Nov 15 2011 François Cami <fcami(a)fedoraproject.org> - 0.21-1
- EPEL6 branch.
--------------------------------------------------------------------------------
================================================================================
golang-github-kdar-factorlog-0-0.1.git814d8f7.el6 (FEDORA-EPEL-2014-1281)
Fast logging infrastructure for Go
--------------------------------------------------------------------------------
Update Information:
Bug 1092057 - Initial fedora package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1092057 - Review Request: golang-github-kdar-factorlog - Fast logging infrastructure for Go
https://bugzilla.redhat.com/show_bug.cgi?id=1092057
--------------------------------------------------------------------------------
================================================================================
libsvm-3.18-3.el6 (FEDORA-EPEL-2014-1271)
A Library for Support Vector Machines
--------------------------------------------------------------------------------
Update Information:
Fixed Bug 1090844 - libsvm-java has unresolved dependencies on epel6 testing
Upstream update to 3.18
--------------------------------------------------------------------------------
ChangeLog:
* Mon Apr 28 2014 Ding-Yi Chen <dchen(a)redhat.com> - 3.18-3
- EPEL5 desktop files need vendor.
* Mon Apr 28 2014 Ding-Yi Chen <dchen(a)redhat.com> - 3.18-2
- Fixed Bug 1090844 - libsvm-java has unresolved dependencies on epel6 testing
* Tue Apr 22 2014 Ding-Yi Chen <dchen(a)redhat.com> - 3.18-1
- Upstream update to 3.18
- svm.cpp and svm-scale.c: check return values of fscanf
- matlab interface: Makefile no longer handles octave
because make.m should be used
* Fri Mar 28 2014 Michael Simacek <msimacek(a)redhat.com> - 3.17-4
- Use Requires: java-headless rebuild (#1067528)
* Sat Aug 3 2013 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 3.17-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Thu Apr 25 2013 Jon Ciesla <limburgher(a)gmail.com> - 3.17-2
- Drop desktop vendor tag.
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1090844 - libsvm-java has unresolved dependencies on epel6 testing
https://bugzilla.redhat.com/show_bug.cgi?id=1090844
--------------------------------------------------------------------------------
================================================================================
mariadb-galera-5.5.36-10.el6 (FEDORA-EPEL-2014-1279)
A community developed branch of MySQL
--------------------------------------------------------------------------------
Update Information:
Initial build
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1083234 - Review Request: mariadb-galera - MariaDB with wsrep patches
https://bugzilla.redhat.com/show_bug.cgi?id=1083234
--------------------------------------------------------------------------------
================================================================================
mediawiki119-1.19.15-1.el6 (FEDORA-EPEL-2014-1275)
A wiki engine
--------------------------------------------------------------------------------
Update Information:
== Bugfixes in 1.19.15 ==
* Fixed resetting passwords.
* (bug 58640) Fixed a compatibility issue with PCRE 8.34 that caused pages to appear blank or with missing text.
== Security Fixes in 1.19.14 ==
* (bug 62497) SECURITY: Add CSRF token on Special:ChangePassword.
== Bugfixes ==
* (bug 62467) Set a title for the context during import on the cli.
--------------------------------------------------------------------------------
ChangeLog:
* Sat Apr 26 2014 Patrick Uiterwijk <puiterwijk(a)redhat.com> - 1.19.15-1
- Update to 1.19.15
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1081891 - CVE-2014-2665 mediawiki: missing CSRF protection on Special:ChangePassword
https://bugzilla.redhat.com/show_bug.cgi?id=1081891
[ 2 ] Bug #1071135 - CVE-2014-2242 mediawiki: cross-site scripting flaw when handling SVG images
https://bugzilla.redhat.com/show_bug.cgi?id=1071135
--------------------------------------------------------------------------------
================================================================================
perl-Config-Generator-0.7-1.el6 (FEDORA-EPEL-2014-1277)
Shared variables for the Config::Generator modules
--------------------------------------------------------------------------------
Update Information:
Added an example of a wrapper script in the "eg" directory.
--------------------------------------------------------------------------------
ChangeLog:
* Tue Apr 29 2014 Alexandre Beche <alexandre.beche(a)gmail.com> 0.7-1
- Added an example of a wrapper script in the "eg" directory.
- Config::Generator::Template: added ifdef() and ifndef() macros.
* Thu Mar 27 2014 Alexandre Beche <alexandre.beche(a)gmail.com> 0.5-2
- minor change to specfile: Summary and description changed.
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1092372 - Upgrade to new upstream version
https://bugzilla.redhat.com/show_bug.cgi?id=1092372
--------------------------------------------------------------------------------
================================================================================
python-bitarray-0.3.5-8.el6 (FEDORA-EPEL-2014-1273)
Efficient Array of Booleans --C Extensions
--------------------------------------------------------------------------------
Update Information:
initial build for EPEL6
--------------------------------------------------------------------------------
================================================================================
python-tw2-forms-2.1.4.1-7.el6 (FEDORA-EPEL-2014-1272)
Forms for ToscaWidgets2
--------------------------------------------------------------------------------
Update Information:
Fix buttons.
--------------------------------------------------------------------------------
ChangeLog:
* Mon Apr 28 2014 Ralph Bean <rbean(a)redhat.com> - 2.1.4.1-7
- Try to fix deps busted by releng.
* Mon Apr 28 2014 Ralph Bean <rbean(a)redhat.com> - 2.1.4.1-6
- Backported patch to fix buttons.
* Tue Aug 6 2013 Ralph Bean <rbean(a)redhat.com> - 2.1.4.1-5
- Temporarily disable test suite until the 2.2 release.
* Sun Aug 4 2013 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.1.4.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
- Disable tests for epel7.
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1091632 - tw2: ParameterError: Attr param clashes with user-supplied attr
https://bugzilla.redhat.com/show_bug.cgi?id=1091632
--------------------------------------------------------------------------------
9 years, 1 month