PowerPC, f22 and docker-io
by Jakub Cajka
Hello,
as we have gcc5 with gcc-go in f22, I have tried to build docker-io on both 64bit BE and LE. It does build, even test are failing in same way as on x86 :). Only man pages are missing as golang-github-cpuguy83-go-md2man is missing due to dependency on golang.
I haven't tried to do any actual testing, as there are no fedora-ppc images for docker yet.
Bit rough fedora git patch fellows.(clean solution also depends how gcc-go will be handled in fedora)(should apply cleanly against http://pkgs.fedoraproject.org/cgit/docker-io.git/commit/?id=b12666ec5e307...)
Jakub
-----------
diff --git a/docker-gccgo.patch b/docker-gccgo.patch
new file mode 100644
index 0000000..8ff9b7e
--- /dev/null
+++ b/docker-gccgo.patch
@@ -0,0 +1,12 @@
+diff -up docker-5ebfacda4747fb0b2473841dff9b9b771b3bcb53/hack/make.sh.gccgo docker-5ebfacda4747fb0b2473841dff9b9b771b3bcb53/hack/make.sh
+--- docker-5ebfacda4747fb0b2473841dff9b9b771b3bcb53/hack/make.sh.gccgo 2015-03-20 13:11:07.567000000 +0100
++++ docker-5ebfacda4747fb0b2473841dff9b9b771b3bcb53/hack/make.sh 2015-03-20 13:11:24.111000000 +0100
+@@ -114,7 +114,7 @@ EXTLDFLAGS_STATIC='-static'
+ # with options like -race.
+ ORIG_BUILDFLAGS=( -a -tags "netgo static_build $DOCKER_BUILDTAGS" -installsuffix netgo )
+ # see https://github.com/golang/go/issues/9369#issuecomment-69864440 for why -installsuffix is necessary here
+-BUILDFLAGS=( $BUILDFLAGS "${ORIG_BUILDFLAGS[@]}" )
++BUILDFLAGS=( $BUILDFLAGS "${ORIG_BUILDFLAGS[@]}" -compiler gccgo -gccgoflags "$RPM_OPT_FLAGS" )
+ # Test timeout.
+ : ${TIMEOUT:=30m}
+ TESTFLAGS+=" -test.timeout=${TIMEOUT}"
diff --git a/docker-io.spec b/docker-io.spec
index 334e6a5..b0727bf 100644
--- a/docker-io.spec
+++ b/docker-io.spec
@@ -15,6 +15,7 @@
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global tar_import_path code.google.com/p/go/src/pkg/archive/tar
+%global gopath /usr/share/gocode
Name: %{repo}-io
Version: 1.5.0
@@ -22,7 +23,6 @@ Release: 20.git%{shortcommit}%{?dist}
Summary: Automates deployment of containerized applications
License: ASL 2.0
URL: http://www.docker.com
-ExclusiveArch: x86_64 %{arm}
#Source0: https://%{import_path}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
Source0: https://github.com/lsm5/docker/archive/%{commit}/%{repo}-%{shortcommit}.t...
Source1: %{repo}.service
@@ -31,13 +31,15 @@ Source3: %{repo}-storage.sysconfig
Source4: %{repo}-logrotate.sh
Source5: README.%{repo}-logrotate
Source6: %{repo}-network.sysconfig
+Patch0: docker-gccgo.patch
BuildRequires: glibc-static
-BuildRequires: golang >= 1.3.3
-BuildRequires: go-md2man
+#BuildRequires: golang >= 1.3.3
+#BuildRequires: go-md2man
BuildRequires: device-mapper-devel
BuildRequires: btrfs-progs-devel
BuildRequires: sqlite-devel
BuildRequires: pkgconfig(systemd)
+BuildRequires: gcc-go libgo-static
%if 0%{?fedora} >= 21
# Resolves: rhbz#1165615
Requires: device-mapper-libs >= 1.02.90-1
@@ -70,13 +72,15 @@ and tests on a laptop will run at scale, in production*, on VMs, bare-metal
servers, OpenStack clusters, public instances, or combinations of the above.
%package devel
-BuildRequires: golang >= 1.2.1-3
-Requires: golang >= 1.2.1-3
+#BuildRequires: golang >= 1.2.1-3
+#Requires: golang >= 1.2.1-3
+BuildRequires: gcc-go
+Requires: gcc-go
Provides: %{repo}-devel = %{version}-%{release}
Provides: %{name}-pkg-devel = %{version}-%{release}
Provides: %{repo}-pkg-devel = %{version}-%{release}
Provides: golang(%{import_path}/vendor/src/%{tar_import_path}) = %{version}-%{release}
-Summary: A golang registry for global request variables (source libraries)
+Summary: A golang registry for global request variables (source libraries)
Provides: golang(%{import_path}) = %{version}-%{release}
Provides: golang(%{import_path}/builder) = %{version}-%{release}
Provides: golang(%{import_path}/builder/parser) = %{version}-%{release}
@@ -210,6 +214,7 @@ This package installs %{summary}.
%prep
%setup -q -n %{repo}-%{commit}
+%patch0 -p1 -b .gccgo
cp %{SOURCE5} .
%build
@@ -222,7 +227,7 @@ export DOCKER_BUILDTAGS="selinux btrfs_noversion"
export GOPATH=$(pwd)/_build:$(pwd)/vendor:%{gopath}
DEBUG=1 hack/make.sh dynbinary
-docs/man/md2man-all.sh
+#docs/man/md2man-all.sh
cp contrib/syntax/vim/LICENSE LICENSE-vim-syntax
cp contrib/syntax/vim/README.md README-vim-syntax.md
@@ -239,10 +244,10 @@ for x in bundles/*-dev; do \
done
# install manpages
-install -d %{buildroot}%{_mandir}/man1
-install -p -m 644 docs/man/man1/docker*.1 %{buildroot}%{_mandir}/man1
-install -d %{buildroot}%{_mandir}/man5
-install -p -m 644 docs/man/man5/Dockerfile.5 %{buildroot}%{_mandir}/man5
+#install -d %{buildroot}%{_mandir}/man1
+#install -p -m 644 docs/man/man1/docker*.1 %{buildroot}%{_mandir}/man1
+#install -d %{buildroot}%{_mandir}/man5
+#install -p -m 644 docs/man/man5/Dockerfile.5 %{buildroot}%{_mandir}/man5
# install bash completion
install -dp %{buildroot}%{_datadir}/bash-completion/completions
@@ -287,14 +292,14 @@ install -p -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/sysconfig/docker-storage
# sources
install -d -p %{buildroot}%{gopath}/src/%{import_path}
-rm -rf pkg/symlink/testdata
+#rm -rf pkg/symlink/testdata
# install tar_import_path to devel package
install -d -p %{buildroot}%{gopath}/src/%{import_path}/vendor/src/%{tar_import_path}
cp -rpav vendor/src/%{tar_import_path}/* %{buildroot}%{gopath}/src/%{import_path}/vendor/src/%{tar_import_path}
# remove dirs that won't be installed in devel
-rm -rf vendor docs _build bundles contrib/init hack project
+#rm -rf vendor docs _build bundles contrib/init hack project
# install sources to devel
for dir in */ ; do
@@ -305,15 +310,12 @@ done
install -dp %{buildroot}%{_sysconfdir}/%{repo}
%check
-[ ! -e /run/docker.sock ] || {
- mkdir test_dir
- pushd test_dir
- git clone https://%{import_path}
- pushd docker
- make test
- popd
- popd
-}
+
+export DOCKER_GITCOMMIT="%{shortcommit}/%{version}"
+export DOCKER_BUILDTAGS="selinux btrfs_noversion"
+export GOPATH=$(pwd)/_build:$(pwd)/vendor:%{gopath}
+
+DEBUG=1 hack/make.sh test-unit test-integration test-integration-cli test-docker-py || :
%pre
getent passwd dockerroot > /dev/null || %{_sbindir}/useradd -r -d %{_sharedstatedir}/docker -s /sbin/nologin -c "Docker User" dockerroot
@@ -334,8 +336,8 @@ exit 0
%config(noreplace) %{_sysconfdir}/sysconfig/docker
%config(noreplace) %{_sysconfdir}/sysconfig/docker-network
%config(noreplace) %{_sysconfdir}/sysconfig/docker-storage
-%{_mandir}/man1/docker*.1.gz
-%{_mandir}/man5/Dockerfile.5.gz
+#%{_mandir}/man1/docker*.1.gz
+#%{_mandir}/man5/Dockerfile.5.gz
%{_bindir}/docker
%{_libexecdir}/docker
%{_unitdir}/docker.service
8 years, 7 months
Announcing the release of Fedora 22 Alpha for AARCH64 and POWER64!
by Peter Robinson
Fedora 22 Alpha Release Announcement
====================================
The Fedora 22 Alpha release for the AARCH64 and POWER 64 secondary architectures
has arrived, with a preview of the latest free and open source technology under
development. Take a peek inside!
• Get Fedora 22 Alpha Server
https://getfedora.org/en/server/prerelease/
• https://dl.fedoraproject.org/pub/fedora-secondary/releases/test/22_Alpha/...
What is the Alpha release?
==========================
The Alpha release contains all the exciting features of Fedora 22's
editions in a form that anyone can help test. This testing, guided by
the Fedora QA team, helps us target and identify bugs. When these bugs
are fixed, we make a Beta release available. A Beta release is
code-complete and bears a very strong resemblance to the third and
final release. The final release of Fedora 22 is expected in May.
We need your help to make Fedora 22 the best release yet, so please
take some time to download and try out the Alpha and make sure the
things that are important to you are working well. If you find a bug,
please report it – every bug you uncover is a chance to improve the
experience for millions of Fedora users worldwide.
Together, we can make Fedora 22 another rock-solid release. We have a
culture of coordinating new features and pushing fixes upstream as much
as feasible, and your feedback will help improve not only Fedora but
Linux and free software on the whole.
Fedora 22 Server
================
The Fedora 22 Server Edition brings several changes that will improve
Fedora for use as a server in your environment.
• Database Server Role: Fedora 21 introduced Rolekit, a daemon for
Linux systems that provides a stable D-Bus interface to manage
deployment of server roles. The Fedora 22 release adds onto that
work with a database server role based on PostgreSQL.
• Cockpit Updates: The Cockpit Web-based management application has
been updated to the latest upstream release which adds many new
features as well as a modular design for adding new functionality.
Issues and Details
==================
This is an Alpha release. As such, we expect that you may encounter
bugs or missing features. To report issues encountered during testing,
contact the Fedora QA team via the test mailing list or in #fedora-qa
on freenode.
As testing progresses, common issues are tracked on the Common F22 Bugs
page: https://fedoraproject.org/wiki/Common_F22_bugs
For tips on reporting a bug effectively, read "how to file a bug
report:" https://fedoraproject.org/wiki/How_to_file_a_bug_report
Release Schedule
================
The full release schedule is available on the Fedora wiki:
https://fedoraproject.org/wiki/Releases/22/Schedule
The current schedule calls for a beta release in the middle of April,
and a final release in the second half of May.
These dates are subject to change, pending any major bugs or issues
found during the development process.
8 years, 8 months
[ppc] Default stack size on ppc64
by Richard W.M. Jones
For the OCaml packages on ppc64/ppc64le, we keep having bugs like this
one: https://bugzilla.redhat.com/show_bug.cgi?id=1204876
The OCaml compiler is quite recursive, and so it can easily overflow
the default stack. For reasons that are not entirely clear this
happens only on ppc64/ppc64le (not on x86 or aarch64). Perhaps POWER
stack frames are bigger, or the default stack size is smaller.
One way to "fix" this would be to modify every single ocaml-* spec
file to add:
%ifarch %{power64}
ulimit -s 65536
%endif
However that doesn't fix the problem for people running ocamlopt on
their own programs. The issue was discussed upstream, but upstream
don't want to make the compiler stages less mutually recursive since
(a) it makes the code far more complex and (b) stack memory is just a
special use-case for ordinary memory so why should they?
Could we increase the default stack size on ppc64?
Or are there other alternatives? (I thought briefly about carrying a
downstream compiler patch which does the equivalent of 'ulimit -s 65536'
inside the compiler).
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
Fedora Windows cross-compiler. Compile Windows programs, test, and
build Windows installers. Over 100 libraries supported.
http://fedoraproject.org/wiki/MinGW
8 years, 8 months
ppc F-22 Branched report: 20150318 changes
by Fedora compose checker
Compose started at Wed Mar 18 11:10:03 UTC 2015
New package: Coin3-3.1.3-7.fc22
High-level 3D visualization library
New package: antimicro-2.11.1-1.fc22
Graphical program used to map keyboard buttons and mouse controls to a gamepad
New package: cairo-dock-3.4.0-11.fc22
Light eye-candy fully themable animated dock
New package: cairo-dock-plug-ins-3.4.0-14.fc22
Plug-ins files for Cairo-Dock
New package: clufter-0.10.1-1.fc22
Tool/library for transforming/analyzing cluster configuration formats
New package: coin-or-Couenne-0.5.2-3.fc22
An exact solver for nonconvex MINLPs
New package: coin-or-FlopC++-1.1.7-4.fc22
Algebraic modelling language
New package: compat-gcc-34-3.4.6-36.fc22
Compatibility GNU Compiler Collection
New package: compat-tolua++-1.0.93-2.fc22
lua-5.1 compatible version of tolua++ (C++ Lua integration)
New package: dconf-editor-3.15.91-3.fc22
Configuration editor for dconf
New package: docsis-config-encoder-0.9.8-0.1.20150302git68e622f.fc22
Encode a DOCSIS binary configuration file
New package: ecdsautils-0.3.2-2.fc22
Tiny collection of programs used for ECDSA (keygen, sign, verify)
New package: fastd-17-2.fc22
Fast and secure tunneling daemon
New package: freeipa-4.1.3-2.fc22
The Identity, Policy and Audit system
New package: ghc-Decimal-0.4.2-1.fc22
Decimal numbers with variable precision
New package: ghc-STMonadTrans-0.3.2-1.fc22
A monad transformer version of the ST monad
New package: ghc-boxes-0.1.4-1.fc22
2D text pretty-printing library
New package: ghc-control-monad-free-0.6.1-3.fc22
Free monads and monad transformers
New package: ghc-data-hash-0.2.0.0-1.fc22
Combinators for building fast hashing functions
New package: ghc-equivalence-0.2.5-1.fc22
Maintaining an equivalence relation implemented as union-find using STT
New package: ghc-polyparse-1.11-1.fc22
A variety of alternative parser combinator libraries
New package: ghc-prelude-extras-0.4-2.fc22
Haskell98 higher order versions of Prelude classes
New package: ghc-tabular-0.2.2.7-2.fc22
Two-dimensional data tables with rendering functions
New package: ghc-wizards-1.0.1-1.fc22
High level, generic library for interrogative user interfaces
New package: gnome-calculator-3.15.91-1.fc22
A desktop calculator
New package: gnome-calendar-3.15.91-1.fc22
Simple and beautiful calendar application designed to fit GNOME 3
New package: gnome-contacts-3.15.91-1.fc22
Contacts manager for GNOME
New package: gnome-maps-3.15.91-1.fc22
Map application for GNOME
New package: gnome-music-3.15.91-1.fc22
Music player and management application for GNOME
New package: grubby-8.37-1.fc22
Command line tool for updating bootloader configs
New package: kdocker-4.8-2.fc22
Dock any application in the system tray
New package: konversation-1.6-0.1.beta1.fc22
A user friendly IRC client
New package: nuntius-0.1.0-1.fc22
Get notifications from the phone or tablet
New package: pcp-3.10.3-1.fc22
System-level performance monitoring and performance management
New package: rnetclient-2014.2-1.fc22
Submit the Brazilian Income Tax Report to the Brazilian Tax Authority
New package: stockfish-7-0.1.20150302gitcb2111f.fc22
Powerful open source chess engine
New package: ti-uim-0-0.1.c21061f.fc22
Texas Instruments User Mode Init manager
New package: xfce4-terminal-0.6.3-7.fc22
X Terminal Emulator for the Xfce Desktop environment
Updated Packages:
BibTool-2.58-1.fc22
-------------------
* Sat Feb 28 2015 Michael J Gruber <mjg(a)fedoraproject.org> - 2.58-1
- rebase to BibTool 2.58
- drop obsolete patch
Size change: -42636 bytes
Mayavi-4.4.0-1.fc22
-------------------
* Tue Mar 03 2015 Orion Poplawski <orion(a)cora.nwra.com> - 4.4.0-1
- Update to 4.4.0
Size change: 319 bytes
ModemManager-1.4.4-2.fc22
-------------------------
* Mon Mar 02 2015 Dan Williams <dcbw(a)redhat.com> - 1.4.4-2
- Don't print location information in logs (rh #1194492)
Size change: 1681 bytes
NetworkManager-1.0.0-7.fc22
---------------------------
* Thu Mar 05 2015 Dan Williams <dcbw(a)redhat.com> - 1:1.0.0-7
- dns: revert resolv.conf symlink stuff (should only be in F23+, not F22)
* Thu Mar 05 2015 Dan Williams <dcbw(a)redhat.com> - 1:1.0.0-6
- connectivity: fix checking when no valid DNS servers are present (rh #1199098)
* Wed Mar 04 2015 Dan Williams <dcbw(a)redhat.com> - 1:1.0.0-5
- core: flush IPv6LL address when deconfiguring managed devices (rh #1193127) (rh #1184997)
Size change: 3906 bytes
R-qtl-1.36.6-1.fc22
-------------------
* Fri Mar 06 2015 Mattias Ellert <mattias.ellert(a)fysast.uu.se> - 1.36.6-1
- Update to 1.36.6
Size change: -27114 bytes
SIMVoleon-2.0.1-20.fc22
-----------------------
* Fri Feb 27 2015 Ralf Corsépius <corsepiu(a)fedoraproject.org> - 2.0.1-20
- Add Provides: Coin3-SIMVoleon, Coin3-SIMVoleon.
* Thu Feb 26 2015 Ralf Corsépius <corsepiu(a)fedoraproject.org> - 2.0.1-19
- Rebuild against Coin3.
- Modernise spec.
- Remove %optflags and %__global_ld_flags from *.cfg.
Size change: -784 bytes
SoQt-1.5.0-14.fc22
------------------
* Fri Feb 27 2015 Ralf Corsépius <corsepiu(a)fedoraproject.org> - 1.5.0-14
- Fix bogus %changelog entry.
- Let SoQt-devel require SoQt%{?_isa}.
* Thu Feb 26 2015 Ralf Corsépius <corsepiu(a)fedoraproject.org> - 1.5.0-13
- Rebuild against Coin3.
- Modernise spec.
- Remove %optflags and %__global_ld_flags from *.cfg.
Size change: -775 bytes
abc-1.01-4.hg20150306.fc22
--------------------------
* Sat Mar 07 2015 Jerry James <loganjerry(a)gmail.com> - 1.01-4.hg20150306
- Update to latest mercurial snapshot
Size change: 72569 bytes
abduco-0.3-1.fc22
-----------------
* Thu Feb 26 2015 Denis Fateyev <denis(a)fateyev.com> - 0.3-1
- Update to 0.3 release
Size change: -544 bytes
alsa-lib-1.0.29-1.fc22
----------------------
* Thu Feb 26 2015 Jaroslav Kysela <perex(a)perex.cz> - 1.0.29-1
- Updated to 1.0.29
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 1.0.28-4
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 2185 bytes
alsa-plugins-1.0.29-1.fc22
--------------------------
* Thu Feb 26 2015 Jaroslav Kysela <perex(a)perex.cz> - 1.0.29-1
- Updated to 1.0.29
Size change: -941 bytes
alsa-tools-1.0.29-1.fc22
------------------------
* Thu Feb 26 2015 Jaroslav Kysela <perex(a)perex.cz> - 1.0.29-1
- updated to 1.0.29
* Thu Feb 19 2015 Rex Dieter <rdieter(a)fedoraproject.org> 1.0.28-4
- rebuild (fltk)
Size change: 39579 bytes
alsa-utils-1.0.29-1.fc22
------------------------
* Thu Feb 26 2015 Jaroslav Kysela <perex(a)perex.cz> - 1.0.29-1
* Updated to 1.0.29
Size change: -2038 bytes
amanda-3.3.6-10.fc22
--------------------
* Fri Feb 27 2015 Petr Hracek <phracek(a)redhat.com> - 3.3.6-10
- Fix for Swig-3.0.5 (#1195297)
Size change: -237 bytes
apitrace-6.1-3.fc22
-------------------
* Mon Mar 02 2015 Sandro Mani <manisandro(a)gmail.com> - 6.1-3
- Remove dlsym hack, use %define __filter_GLIBC_PRIVATE 1
Size change: -6852 bytes
armadillo-4.650.2-1.fc22
------------------------
* Fri Feb 27 2015 José Matos <jamatos(a)fedoraproject.org> - 4.650.2-1
- update to 4.650.2
Size change: 3017 bytes
atk-2.15.91-1.fc22
------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 2.15.91-1
- Update to 2.15.91
- Use the %license macro for the COPYING file
Size change: -3152 bytes
authconfig-6.2.10-3.fc22
------------------------
* Wed Mar 04 2015 Tomáš Mráz <tmraz(a)redhat.com> - 6.2.10-3
- add newly needed requires python-sssdconfig
* Mon Feb 23 2015 Tomáš Mráz <tmraz(a)redhat.com> - 6.2.10-2
- revert the python3 change of the command line UI as the
feature is postponed to Fedora 23
* Fri Feb 20 2015 Tomáš Mráz <tmraz(a)redhat.com> - 6.2.10-1
- allow multiple LDAP URIs in the setting again
- winbind modules are now in samba-winbind package
- add support for keeping myhostname in nsswitch.conf hosts entry
- do not misinterpret comment for realm in krb5.conf
- warn about unsupported locale, do not bail out with exception
- python 3 compatibility for authconfig command line
Size change: 4466 bytes
bacula-7.0.5-4.fc22
-------------------
* Mon Mar 02 2015 Simone Caronni <negativo17(a)gmail.com> - 7.0.5-4
- Fix tray-monitor packaging (again).
* Tue Feb 24 2015 Simone Caronni <negativo17(a)gmail.com> - 7.0.5-3
- Add license macro.
Size change: -864 bytes
bijiben-3.15.91-1.fc22
----------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
Size change: -50 bytes
bliss-0.72-11.fc22
------------------
* Fri Mar 06 2015 Jerry James <loganjerry(a)gmail.com> - 0.72-11
- Link with RPM_LD_FLAGS
Size change: -1010 bytes
bluez-5.28-1.fc22
-----------------
* Wed Mar 11 2015 Bastien Nocera <bnocera(a)redhat.com> 5.28-1
- Update to 5.28
Size change: 73802 bytes
boswars-2.7-6.fc22
------------------
* Mon Feb 23 2015 Hans de Goede <hdegoede(a)redhat.com> - 2.7-6
- Build against compat-tolua++-5.1 as boswars is not compatible with lua 5.2
Size change: -941 bytes
cairo-1.14.2-1.fc22
-------------------
* Wed Mar 11 2015 Kalev Lember <kalevlember(a)gmail.com> - 1.14.2-1
- Update to 1.14.2
Size change: -1210601 bytes
caja-1.9.90-1.fc22
------------------
* Wed Feb 25 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90.1
- update to 1.9.90 release
Size change: 15055 bytes
calligra-l10n-2.9.0-1.fc22
--------------------------
* Sat Feb 28 2015 Rex Dieter <rdieter(a)fedoraproject.org> 2.9.0-1
- 2.9.0 (-eu,-nds)
Size change: -168171 bytes
cclive-0.9.3-6.fc22
-------------------
* Mon Mar 09 2015 Ralf Corsépius <corsepiu(a)fedoraproject.org> - 0.9.3-6
- Update boost.m4. Regenerate configure (Add cclive-0.9.3-autotools.diff).
- Build verbose (Append --disable-silent-rules to %configure).
- GCC-5.0 compatibility fixes (Add cclive-0.9.3-gcc50.diff).
- Rebuild for boost 1.57.0/gcc-5.0.
* Tue Jan 27 2015 Petr Machata <pmachata(a)redhat.com> - 0.9.3-5
- Rebuild for boost 1.57.0
Size change: 13647 bytes
chrpath-0.16-1.fc22
-------------------
* Wed Feb 25 2015 David King <amigadave(a)amigadave.com> - 0.16-1
- Update to 0.16 (#1144863)
- Remove clean section and BuildRoot tag
- Update URL and Sourc0
- Use license macro for COPYING
- Use parallel make flags
- Preserve timestamps during install
Size change: 5914 bytes
clutter-1.21.6-2.fc22
---------------------
* Tue Mar 10 2015 Peter Hutterer <peter.hutterer(a)redhat.com> - 1.21.6-2
- Rebuild for libinput soname bump
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 1.21.6-1
- Update to 1.21.6
Size change: 15790 bytes
cockpit-0.41-1.fc22
-------------------
* Wed Mar 04 2015 Stef Walter <stefw(a)redhat.com> - 0.41-1
- Update to 0.41 release
* Thu Feb 26 2015 Stef Walter <stefw(a)redhat.com> - 0.40-1
- Update to 0.40 release
Size change: -239897 bytes
coin-or-Bonmin-1.8.1-3.fc22
---------------------------
* Sun Feb 22 2015 pcpa <paulo.cesar.pereira.de.andrade(a)gmail.com> - 1.8.1-1
- Update to latest upstream release.
- Add asl solver and openmpi build conditionals.
Size change: -3045 bytes
coin-or-Cbc-2.9.2-5.fc22
------------------------
* Sun Mar 01 2015 pcpa <paulo.cesar.pereira.de.andrade(a)gmail.com> - 2.9.2-5
- Install CbcParam.hpp not CbcParam.cpp.
* Sat Feb 28 2015 pcpa <paulo.cesar.pereira.de.andrade(a)gmail.com> - 2.9.2-4
- Install header required by coin-or-Dip.
* Sat Feb 21 2015 pcpa <paulo.cesar.pereira.de.andrade(a)gmail.com> - 2.9.2-3
- Intermediate build disabling %check for arm only.
* Sat Feb 21 2015 pcpa <paulo.cesar.pereira.de.andrade(a)gmail.com> - 2.9.2-2
- Rebuild to ensure using latest C++ abi changes.
Size change: -528 bytes
coin-or-Ipopt-3.12.1-4.fc22
---------------------------
* Sun Feb 22 2015 pcpa <paulo.cesar.pereira.de.andrade(a)gmail.com> - 3.12.1-4
- Add conditional to enable the asl solver
* Sun Feb 22 2015 Antonio Trande <sagitterATfedoraproject.org> - 3.12.1-3
- Rebuild again (broken dependencies)
* Sat Feb 21 2015 Antonio Trande <sagitterATfedoraproject.org> - 3.12.1-2
- Rebuild after MUMPS update
* Tue Feb 17 2015 Antonio Trande <sagitterATfedoraproject.org> - 3.12.1-1
- Update to 3.12.1
Size change: 1692 bytes
coin-or-SYMPHONY-5.6.8-1.fc22
-----------------------------
* Sun Feb 22 2015 pcpa <paulo.cesar.pereira.de.andrade(a)gmail.com> - 5.6.8-1
- Update to latest upstream release.
Size change: 55041 bytes
compat-libuv010-0.10.34-1.fc22
------------------------------
* Tue Feb 24 2015 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 1:0.10.34-1
- new upstream release 0.10.34
https://github.com/joyent/libuv/blob/v0.10.34/ChangeLog
- resolves incorrect revocation while reliquishing privileges security
vulnerability (CVE-2015-0278, RHBZ#1194651)
* Sat Feb 21 2015 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 1:0.10.33-4
- add compat symlinks in seperate directory
Size change: 173 bytes
control-center-3.15.91-1.fc22
-----------------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 1:3.15.91-1
- Update to 3.15.91
- Use the %license macro for the COPYING file
Size change: 55553 bytes
crrcsim-0.9.12-13.fc22
----------------------
* Fri Mar 06 2015 Damian Wrobel <dwrobel(a)ertelnet.rybnik.pl> - 0.9.12-13
- Rebuild for libCGAL.so.11.
Size change: -998 bytes
csync2-1.34-15.fc22
-------------------
* Sun Mar 01 2015 Robert Scheck <robert(a)fedoraproject.org> 1.34-15
- Rebuild for librsync 1.0.0 (#1126712)
Size change: -199 bytes
cups-filters-1.0.66-1.fc22
--------------------------
* Mon Mar 02 2015 Jiri Popelka <jpopelka(a)redhat.com> - 1.0.66-1
- 1.0.66
Size change: 1346 bytes
darkhttpd-1.11-1.fc22
---------------------
* Sat Jan 17 2015 Christopher Meng <rpm(a)cicku.me> - 1.11-1
- Update to 1.11
Size change: -260 bytes
datovka-4.1.2-1.fc22
--------------------
* Wed Feb 25 2015 Jan Vcelak <jvcelak(a)fedoraproject.org> 4.1.2-1
- New upstream release
Size change: 219 bytes
dbmail-3.2.3-1.fc22
-------------------
* Fri Feb 27 2015 Bernard Johnson <bjohnson(a)symetrix.com> - 3.2.3-1
- v 3.2.3
- Introduce new systemd-rpm macros in dbmail spec file (bz #850081)
Size change: 17432 bytes
dbus-c++-0.9.0-6.fc22
---------------------
* Thu Mar 05 2015 Sandro Mani <manisandro(a)gmail.com> - 0.9.0-6
- Add patch to fix macro macro collision (#1187045)
* Fri Feb 27 2015 Adel Gadllah <adel.gadllah(a)gmail.com> - 0.9.0-5
- Rebuilt with gcc5
Size change: -365 bytes
dconf-0.23.1-1.fc22
-------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 0.23.1-1
- Update to 0.23.1
- This drops the -editor subpackage which now lives in a separate
dconf-editor SRPM.
- Use the %license macro for the COPYING file
Size change: -175386 bytes
devhelp-3.15.91-1.fc22
----------------------
* Wed Mar 04 2015 Kalev Lember <kalevlember(a)gmail.com> - 1:3.15.91-1
- Update to 3.15.91
Size change: -312 bytes
duplicity-0.6.25-3.fc22
-----------------------
* Mon Mar 02 2015 Jon Ciesla <limburgher(a)gmail.com> - 0.6.25-3
- Patch out deprecation warning to fix deja-dup, BZ 1197627.
* Sun Mar 01 2015 Robert Scheck <robert(a)fedoraproject.org> 0.6.25-2
- Rebuild for librsync 1.0.0 (#1126712)
* Thu Feb 26 2015 Jon Ciesla <limburgher(a)gmail.com> - 0.6.25-1
- 0.6.25.
Size change: 2831 bytes
dwgrep-0.2-1.fc22
-----------------
* Sat Feb 28 2015 Petr Machata <pmachata(a)redhat.com> - 0.2-1
- Rebase to 0.2
- Drop dwgrep-0.1-mpz_class-ctor.patch
Size change: 24194 bytes
eclipse-webtools-3.6.3-2.fc22
-----------------------------
* Mon Mar 02 2015 Gerard Ryan <gerard(a)ryan.lt> - 3.6.3-2
- Update to latest upstream release tag R3_6_3
Size change: 12791 bytes
ekiga-4.0.1-17.fc22
-------------------
* Tue Feb 17 2015 Milan Crha <mcrha(a)redhat.com> - 4.0.1-17
- Rebuild against newer evolution-data-server
Size change: -1005 bytes
elfutils-0.161-6.fc22
---------------------
* Mon Mar 09 2015 Mark Wielaard <mjw(a)redhat.com> - 0.161-6
- Add elfutils-0.161-copyreloc.patch.
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 0.161-5
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 1028 bytes
environment-modules-3.2.10-14.fc22
----------------------------------
* Mon Mar 02 2015 Orion Poplwski <orion(a)cora.nwra.com> - 3.2.10-14
- Fix createmodule.sh to handle exported functions (bug #1197321)
- Handle more prefix/suffix cases in createmodule.{sh,py} (bug #1079341)
Size change: -302 bytes
epiphany-3.15.90-4.fc22
-----------------------
* Wed Mar 04 2015 Michael Catanzaro <mcatanzaro(a)gnome.org> - 1:3.15.90-4
- Rejigger set of patches.
* Fri Feb 27 2015 Michael Catanzaro <mcatanzaro(a)gnome.org> - 1:3.15.90-3
- Add patch for rbz#1196847
* Thu Feb 26 2015 Michael Catanzaro <mcatanzaro(a)gnome.org> - 1:3.15.90-2
- Add several patches that haven't made it upstream yet
* Wed Feb 25 2015 Richard Hughes <rhughes(a)redhat.com> - 1:3.15.90-1
- Update to 3.15.90
Size change: 53121 bytes
evolution-3.15.91-1.fc22
------------------------
* Mon Mar 02 2015 Milan Crha <mcrha(a)redhat.com> - 3.15.91-1
- Update to 3.15.91
Size change: 8628 bytes
evolution-data-server-3.15.91-1.fc22
------------------------------------
* Mon Mar 02 2015 Milan Crha <mcrha(a)redhat.com> - 3.15.91-1
- Update to 3.15.91
- Add patch to fix libdb configure.ac check
Size change: 4164 bytes
evolution-ews-3.15.91-1.fc22
----------------------------
* Mon Mar 02 2015 Milan Crha <mcrha(a)redhat.com> - 3.15.91-1
- Update to 3.15.91
Size change: -1114 bytes
evolution-mapi-3.15.91-1.fc22
-----------------------------
* Mon Mar 02 2015 Milan Crha <mcrha(a)redhat.com> - 3.15.91-1
- Update to 3.15.91
Size change: -1098 bytes
fakechroot-2.17.2-1.fc22
------------------------
* Mon Mar 02 2015 Christopher Meng <rpm(a)cicku.me> - 2.17.2-1
- Update to 2.17.2
Size change: -31002 bytes
farstream-0.1.2-10.fc22
-----------------------
* Fri Mar 06 2015 Michael Cronenworth <mike(a)cchtml.com> - 0.1.2-10
- Fix Pidgin crashing in SIPE calls (RHBZ#1032295)
Size change: -337 bytes
farstream02-0.2.7-1.fc22
------------------------
* Mon Mar 02 2015 David Woodhouse <dwmw2(a)infradead.org> - 0.2.7-1
- Update to 0.2.7.
Size change: 34147 bytes
fence-agents-4.0.16-1.fc22
--------------------------
* Thu Mar 05 2015 Marek Grac <mgrac(a)redhat.com> - 4.0.16-1
- new upstream release
Size change: 955 bytes
figlet-2.2.5-7.fc22
-------------------
* Wed Feb 25 2015 Simone Caronni <negativo17(a)gmail.com> - 2.2.5-7
- Add license macro.
- Add upstream patches.
Size change: 2309 bytes
file-roller-3.15.91-1.fc22
--------------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
Size change: 3070 bytes
five-or-more-3.15.91-1.fc22
---------------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
- Use the %license macro for the COPYING file
Size change: -1050 bytes
fldigi-3.22.05-1.fc22
---------------------
* Tue Jan 13 2015 Richard Shaw <hobbes1069(a)gmail.com> - 3.22.05-1
- Update to latest upstream release.
Size change: -1289 bytes
florence-0.6.3-1.fc22
---------------------
* Wed Mar 04 2015 Christopher Meng <rpm(a)cicku.me> - 0.6.3-1
- Update to 0.6.3
- Temporarily disable at-spi support since it's broken here.
Size change: -149480 bytes
fontconfig-2.11.93-1.fc22
-------------------------
* Mon Mar 09 2015 Akira TAGOH <tagoh(a)redhat.com> - 2.11.93-1
- New upstream release.
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 2.11.92-2
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 14345 bytes
foxtrotgps-1.2.0-1.fc22
-----------------------
* Mon Mar 02 2015 Peter Robinson <pbrobinson(a)fedoraproject.org> 1.2.0-1
- Update to 1.2.0 (rhbz 1157448)
- Use %licenese
Size change: 1287087 bytes
freeciv-2.5.0-3.fc22.RC1
------------------------
* Wed Mar 04 2015 Jon Ciesla <limburgher(a)gmail.com> - 2.5.0-3.RC1
- 2.5.0 RC1.
Size change: 206566 bytes
freehdl-0.0.8-10.fc22
---------------------
* Thu Feb 26 2015 Ralf Corsépius <corsepiu(a)fedoraproject.org> - 0.0.8-10
- Remove %{optflags} from freehdl.pc (RHBZ#1196512).
- Modernize spec.
- Remove *.las.
Size change: -898 bytes
freexl-1.0.0i-1.fc22
--------------------
* Fri Mar 06 2015 Volker Fröhlich <volker27(a)gmx.at> 1.0.0i-1
- New release with security fixes
Size change: 5504 bytes
fts-3.2.32-1.fc22
-----------------
* Thu Mar 05 2015 Alejandro Alvarez Ayllon <aalvarez(a)cern.ch> - 3.2.31-1
- Update for new upstream release
Size change: 20402 bytes
fts-mysql-3.2.32-1.fc22
-----------------------
* Fri Mar 06 2015 Alejandro Alvarez Ayllon <aalvarez(a)cern.ch> - 3.2.32-1
- Update for new upstream release
Size change: 19930 bytes
fusioninventory-agent-2.3.16-1.fc22
-----------------------------------
* Sun Mar 01 2015 Marianne Lombard <jehane(a)fedoraprojetc.org> - 2.3.16
- update to 2.3.16
- adding BuildRequires needed by test
* Sun Mar 01 2015 Marianne Lombard <jehane(a)fedoraproject.org> - 2.3.15-4
- arch build (due to dmidecode dependancy in x86_64)
* Fri Feb 20 2015 Marianne Lombard <jehane(a)fedoraproject.org> - 2.3.15-3
- building as noarch
Size change: 24076 bytes
garcon-0.4.0-2.fc22
-------------------
* Sat Feb 28 2015 Mukundan Ragavan <nonamedotc(a)fedoraproject.org> - 0.4.0-2
- Fix permissions for installed libraries
* Sat Feb 28 2015 Mukundan Ragavan <nonamedotc(a)fedoraproject.org> - 0.4.0-1
- Update to version 0.4.0
Size change: 10952 bytes
gcompris-15.02-1.fc22
---------------------
* Thu Feb 26 2015 Hans de Goede <hdegoede(a)redhat.com> - 15.02-1
- New upstream release 15.02 (rhbz#1195700)
Size change: 77177 bytes
gcr-3.15.90-1.fc22
------------------
* Fri Feb 27 2015 David King <amigadave(a)amigadave.com> - 3.15.90-1
- Update to 3.15.90
- Update URL
- Add more documentation and use license macro for COPYING
- Use pkgconfig for BuildRequires
- Preserve timestamps during install
Size change: 17042 bytes
gdal-1.11.2-1.fc22
------------------
* Tue Feb 17 2015 Volker Fröhlich <volker27(a)gmx.at> - 1.11.2-1
- New release
- Remove obsolete sqlite patch
Size change: 39327 bytes
gdk-pixbuf2-2.31.3-1.fc22
-------------------------
* Sat Mar 07 2015 Kalev Lember <kalevlember(a)gmail.com> - 2.31.3-1
- Update to 2.31.3
- Use the %license macro for the COPYING file
Size change: 41961 bytes
gdm-3.15.91.2-1.fc22
--------------------
* Tue Mar 03 2015 Ray Strode <rstrode(a)redhat.com> 3.15.91.2-1
- Update to 3.15.92.1
- fixes "black screen on logout" of wayland sessions
* Mon Mar 02 2015 Ray Strode <rstrode(a)redhat.com> 3.15.91.1-1
- Update to 3.15.91.1
- fixes deadlock on VT switch in some cases
* Fri Feb 27 2015 Ray Strode <rstrode(a)redhat.com> 3.15.91-1
- Update for 3.15.91
- Reduces flicker
- Fixes hang for autologin
Resolves: #1197224
- Fixes users that disable root running X in /etc/X11/Xwrapper.conf
- Fixes intermittent crash at login
* Tue Feb 24 2015 Ray Strode <rstrode(a)redhat.com> - 1:3.15.90.5-1
- Update to 3.15.90.5
- gnome-initial-setup should work again
Resolves: #1194948
- X will work better when configured to not need root
(still not perfect though)
* Sun Feb 22 2015 Ray Strode <rstrode(a)redhat.com> - 1:3.15.90.4-1
- Update to 3.15.90.4
- Fixes bus activated X clients
* Sat Feb 21 2015 Ray Strode <rstrode(a)redhat.com> - 1:3.15.90.3-1
- Update to 3.15.90.3
- Disables gnome-initial-setup support for now, which isn't functional
* Fri Feb 20 2015 Ray Strode <rstrode(a)redhat.com> - 1:3.15.90.2-1
- Update to 3.15.90.2
- Fixes "no user list in the middle of my login screen" bug
- Require gnome-session-wayland-session since we default to wayland now
* Fri Feb 20 2015 David King <amigadave(a)amigadave.com> - 1:3.15.90.1-1
- Update to 3.15.90.1
- Use license macro for COPYING
- Use pkgconfig for BuildRequires
- Update URL
* Thu Feb 19 2015 Richard Hughes <rhughes(a)redhat.com> - 1:3.15.90-1
- Update to 3.15.90
Size change: 2358 bytes
gedit-3.15.91-1.fc22
--------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 2:3.15.91-1
- Update to 3.15.91
Size change: 1028 bytes
gfal2-2.8.4-1.fc22
------------------
* Mon Mar 02 2015 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 2.8.4-1
- Upgraded to upstream release 2.8.4
Size change: 1114 bytes
ghc-IfElse-0.85-6.fc22
----------------------
* Mon Mar 02 2015 Jens Petersen <petersen(a)redhat.com> - 0.85-6
- rebuild
* Wed Jan 28 2015 Jens Petersen <petersen(a)redhat.com>
- cblrpm refresh
Size change: -1041 bytes
ghc-conduit-1.2.4-1.fc22
------------------------
* Tue Mar 03 2015 Jens Petersen <petersen(a)redhat.com> - 1.2.4-1
- update to 1.2.4
* Tue Jan 27 2015 Jens Petersen <petersen(a)fedoraproject.org> - 1.0.13.1-4
- cblrpm refresh
Size change: 6716 bytes
ghc-lifted-base-0.2.3.6-1.fc22
------------------------------
* Tue Mar 03 2015 Jens Petersen <petersen(a)redhat.com> - 0.2.3.6-1
- update to 0.2.3.6
Size change: -1019 bytes
ghc-monad-control-0.3.3.1-1.fc22
--------------------------------
* Tue Mar 03 2015 Jens Petersen <petersen(a)fedoraproject.org> - 0.3.3.1-1
- update to 0.3.3.1
Size change: -1056 bytes
ghc-resourcet-1.1.4.1-1.fc22
----------------------------
* Tue Mar 03 2015 Jens Petersen <petersen(a)redhat.com> - 1.1.4.1-1
- update to 1.1.4.1
Size change: -192 bytes
ghc-streaming-commons-0.1.10.0-1.fc22
-------------------------------------
* Tue Mar 03 2015 Jens Petersen <petersen(a)redhat.com> - 0.1.10.0-1
- update to 0.1.10.0
Size change: 4706 bytes
ghc-transformers-base-0.4.4-1.fc22
----------------------------------
* Tue Mar 03 2015 Jens Petersen <petersen(a)redhat.com> - 0.4.4-1
- update to 0.4.4
Size change: -991 bytes
git-2.3.2-1.fc22
----------------
* Mon Mar 09 2015 Jon Ciesla <limburgher(a)gmail.com> - 2.3.2-1
- Update to 2.3.2.
* Fri Feb 27 2015 Jon Ciesla <limburgher(a)gmail.com> - 2.3.1-1
- Update to 2.3.1.
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 2.3.0-2
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 10833 bytes
glib-networking-2.43.91-1.fc22
------------------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 2.43.91-1
- Update to 2.43.91
- Use the %license macro for the COPYING file
Size change: -428 bytes
glib2-2.43.91-1.fc22
--------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 2.43.91-1
- Update to 2.43.91
Size change: 19540 bytes
glibmm24-2.43.91-1.fc22
-----------------------
* Fri Mar 06 2015 Kalev Lember <kalevlember(a)gmail.com> - 2.43.91-1
- Update to 2.43.91
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 2.43.90-1
- Update to 2.43.90
Size change: 90825 bytes
globus-ftp-client-8.20-1.fc22
-----------------------------
* Fri Mar 06 2015 Mattias Ellert <mattias.ellert(a)fysast.uu.se> - 8.20-1
- GT6 update (upstream's release of previous fix)
* Thu Mar 05 2015 Mattias Ellert <mattias.ellert(a)fysast.uu.se> - 8.19-2
- Improved fix for GGUS 109089/109576 (from upstream git)
* Tue Feb 17 2015 Mattias Ellert <mattias.ellert(a)fysast.uu.se> - 8.19-1
- GT6 update (GGUS 105158 and 109089/109576)
Size change: -778 bytes
gnome-boxes-3.15.91-1.fc22
--------------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
- Use the %license macro for the COPYING file
Size change: 12032 bytes
gnome-chess-3.15.91-1.fc22
--------------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
Size change: -4721 bytes
gnome-color-manager-3.15.91-1.fc22
----------------------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
- Use the %license macro for the COPYING file
Size change: -5188 bytes
gnome-desktop3-3.15.91-1.fc22
-----------------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
Size change: 766 bytes
gnome-dictionary-3.15.91-1.fc22
-------------------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
* Tue Feb 17 2015 David King <amigadave(a)amigadave.com> - 3.15.90-1
- Update to 3.15.90
- Use license macro for COPYING, COPYING.docs and COPYING.libs
- Update man page glob in files section
- Use pkgconfig for BuildRequires
- Validate AppData in check
Size change: 14241 bytes
gnome-keyring-3.15.90-2.fc22
----------------------------
* Sun Mar 08 2015 David King <amigadave(a)amigadave.com> - 3.15.90-2
- Add patch to fix repeated SSH agent requests
* Thu Feb 26 2015 David King <amigadave(a)amigadave.com> - 3.15.90-1
- Update to 3.15.90
- Update URL
- Use pkgconfig for BuildRequires
- Use license macro for COPYING and COPYING.LIB
- Preserve timestamps during install
Size change: 7267 bytes
gnome-mines-3.15.91-1.fc22
--------------------------
* Mon Mar 02 2015 Yanko Kaneti <yaneti(a)declera.com> - 3.15.91-1
- Update to 3.15.91
Size change: -21106 bytes
gnome-multi-writer-3.15.91-1.fc22
---------------------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
- Use the %license macro for the COPYING file
Size change: 1223 bytes
gnome-nibbles-3.15.91.1-1.fc22
------------------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91.1-1
- Update to 3.15.91.1
- Use the %license macro for the COPYING file
* Tue Feb 17 2015 Richard Hughes <rhughes(a)redhat.com> - 3.15.90-1
- Update to 3.15.90
Size change: -64190 bytes
gnome-online-accounts-3.15.91-1.fc22
------------------------------------
* Wed Mar 04 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
- Use the %license macro for the COPYING file
* Mon Feb 23 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.90-1
- Update to 3.15.90
Size change: -2955 bytes
gnome-packagekit-3.15.91-1.fc22
-------------------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
Size change: 5558 bytes
gnome-power-manager-3.15.91-1.fc22
----------------------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
- Use the %license macro for the COPYING file
Size change: -237 bytes
gnome-robots-3.15.91-1.fc22
---------------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
- Use the %license macro for the COPYING file
Size change: -2913 bytes
gnome-settings-daemon-3.15.91-1.fc22
------------------------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
- Use the %license macro for the COPYING file
Size change: 725 bytes
gnome-software-3.15.91-1.fc22
-----------------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
Size change: 10646 bytes
gnome-sudoku-3.15.91-1.fc22
---------------------------
* Mon Mar 02 2015 Yanko Kaneti <yaneti(a)declera.com> - 3.15.91-1
- Update to 3.15.91
Size change: 1484 bytes
gnome-system-monitor-3.15.91-1.fc22
-----------------------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
- Use the %license macro for the COPYING file
Size change: -435 bytes
gnome-taquin-3.15.91.1-1.fc22
-----------------------------
* Mon Mar 02 2015 Yanko Kaneti <yaneti(a)declera.com> - 3.15.91.1-1
- Update to 3.15.91.1
Size change: 5441 bytes
gnote-3.15.1-1.fc22
-------------------
* Sat Mar 07 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.1-1
- Update to 3.15.1
Size change: -153370 bytes
gnupg-1.4.19-1.fc22
-------------------
* Fri Feb 27 2015 Brian C. Lane <bcl(a)redhat.com> 1.4.19-1
- New upstream v1.4.19
- Use ciphertext blinding for Elgamal decryption [CVE-2014-3591]
- Fixed data-dependent timing variations in modular exponentiation [related to CVE-2015-0837]
- Drop patches now included upstream
Size change: 60043 bytes
gobject-introspection-1.43.91-1.fc22
------------------------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 1.43.91-1
- Update to 1.43.91
- Use the %license macro for the COPYING file
Size change: 5687 bytes
grace-5.1.25-1.fc22
-------------------
* Wed Feb 25 2015 José Matos <jamatos(a)fedoraproject.org> - 5.1.25-1
- update to 5.1.25
* Fri Nov 14 2014 José Matos <jamatos(a)fedoraproject.org> - 5.1.24-1
- update to 5.1.24
Size change: 519831 bytes
gstreamer1-plugins-bad-free-1.4.5-2.fc22
----------------------------------------
* Fri Mar 06 2015 David Woodhouse <dwmw2(a)infradead.org> - 1.4.5-2
- Fix RTP/RTCP muxing (#1199578)
Size change: 1290 bytes
gstreamer1-plugins-good-1.4.5-2.fc22
------------------------------------
* Fri Mar 06 2015 David Woodhouse <dwmw2(a)infradead.org> - 1.4.5-2
- Don't force RTP jitterbuffer clock-rate (#1199579)
* Wed Jan 28 2015 Bastien Nocera <bnocera(a)redhat.com> - 1.4.5-1
- Update to 1.4.5
Size change: 622 bytes
gtk-xfce-engine-3.2.0-1.fc22
----------------------------
* Sat Feb 28 2015 Mukundan Ragavan <nonamedotc(a)fedoraproject.org> - 3.2.0-1
- Update to 3.2.0
- Added enable-gtk3 flag
Size change: 6141 bytes
gtk2-2.24.27-1.fc22
-------------------
* Tue Mar 03 2015 Matthias Clasen <mclasen(a)redhat.com> - 2.24.27-1
- Update to 2.24.27
Size change: 89133 bytes
gtk3-3.15.11-1.fc22
-------------------
* Fri Mar 13 2015 Matthias Clasen <mclasen(a)redhat.com> - 3.15.11-1
- Update to 3.15.11
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.10-1
- Update to 3.15.10
* Tue Feb 24 2015 Matthias Clasen <mclasen(a)redhat.com> - 3.15.9-1
- Update to 3.15.9
* Fri Feb 20 2015 Matthias Clasen <mclasen(a)redhat.com> - 3.15.8-1
- Update to 3.15.8
Size change: 70112 bytes
gtkmm30-3.15.10-1.fc22
----------------------
* Fri Mar 06 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.10-1
- Update to 3.15.10
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.9-1
- Update to 3.15.9
- Use the %license macro for the COPYING file
Size change: 19901 bytes
gtksourceview3-3.15.91-1.fc22
-----------------------------
* Thu Mar 05 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
- Set minimum required glib version
Size change: 22047 bytes
guacamole-server-0.9.5-2.fc22
-----------------------------
* Wed Feb 25 2015 Simone Caronni <negativo17(a)gmail.com> - 0.9.5-2
- Add license macro.
* Tue Feb 24 2015 Simone Caronni <negativo17(a)gmail.com> - 0.9.5-1
- Update to 0.9.5.
- Remove upstreamed patch.
Size change: 6564 bytes
harfbuzz-0.9.39-1.fc22
----------------------
* Fri Mar 06 2015 Parag Nemade <pnemade AT redhat DOT com> - 0.9.39-1
- Update to 0.9.39 upstream release
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 0.9.38-4
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 4172 bytes
hitori-3.14.3-1.fc22
--------------------
* Wed Mar 04 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.14.3-1
- Update to 3.14.3
- Use the %license macro for the COPIYNG files
Size change: 2313 bytes
hspell-1.3-1.fc22
-----------------
* Thu Feb 26 2015 Dan Kenigsberg <danken(a)cs.technion.ac.il> - 1.3-1
- Sync with upstream hspell-1.3
Size change: 74191 bytes
httrack-3.48.20-2.fc22
----------------------
* Mon Mar 02 2015 Christopher Meng <rpm(a)cicku.me> - 3.48.20-2
- Fix %pretrans scriptlet bug again.
* Tue Feb 24 2015 Christopher Meng <rpm(a)cicku.me> - 3.48.20-1
- Update to 3.48.20
- Fix %pretrans scriptlet bug.
Size change: 1870 bytes
iagno-3.15.91-1.fc22
--------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
- Use the %license macro for the COPYING file
Size change: 4592 bytes
ibus-1.5.10-1.fc22
------------------
* Wed Feb 25 2015 Takao Fujiwara <tfujiwar(a)redhat.com> - 1.5.10-1
- Bumped to 1.5.10
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 1.5.9-11
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: -9300 bytes
ibus-libpinyin-1.7.0-2.fc22
---------------------------
* Mon Mar 09 2015 Peng Wu <pwu(a)redhat.com> - 1.7.0-2
- Fixes ibus-libpinyin upstream issue #33
* Wed Mar 04 2015 Peng Wu <pwu(a)redhat.com> - 1.7.0-1
- Update to 1.7.0
Size change: 676 bytes
im-chooser-1.6.4-6.fc22
-----------------------
* Sat Feb 28 2015 Kevin Fenzi <kevin(a)scrye.com> 1.6.4-6
- Rebuild for Xfce 4.12
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 1.6.4-5
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: -776 bytes
initial-setup-0.3.31-1.fc22
---------------------------
* Wed Mar 04 2015 Martin Kolman <mkolman(a)redhat.com> - 0.3.31-1
- Use kwin_x11 for kde/plasma spin (#1197135) (rdieter)
* Fri Feb 13 2015 Martin Kolman <mkolman(a)redhat.com> - 0.3.29-1
- Split scriptlets for the gui subpackage (mkolman)
- Use /usr/bin/python2 in scripts (mkolman)
* Thu Feb 05 2015 Martin Kolman <mkolman(a)redhat.com> - 0.3.28-1
- Fix breakage caused by README file rename (mkolman)
* Thu Feb 05 2015 Martin Kolman <mkolman(a)redhat.com> - 0.3.27-1
- Remove unneeded dependencies (mkolman)
- Add the rst suffix to the README file (mkolman)
- Update the link to the upstream source code repository (mkolman)
- Add AnacondaKSHandler no-member error to pylint-false-positives. (mulhern)
- Mark strings for translation when module is loaded. (mulhern)
- Fix easy pylint errors. (mulhern)
- Add pylint testing infrastructure. (mulhern)
* Mon Nov 03 2014 Martin Kolman <mkolman(a)redhat.com> - 0.3.26-1
- Explicitly require the main package in the GUI sub package (#1078917) (mkolman)
Size change: -124 bytes
intltool-0.50.2-8.fc21
----------------------
Size change: 23737 bytes
ipsilon-0.4.0-1.fc22
--------------------
* Mon Mar 02 2015 Patrick Uiterwijk <puiterwijk(a)redhat.com> - 0.4.0-1
- Update to release 0.4.0
* Wed Jan 28 2015 Patrick Uiterwijk <puiterwijk(a)redhat.com> - 0.3.0-5
- Split IPA tools
* Mon Jan 12 2015 Patrick Uiterwijk <puiterwijk(a)redhat.com> - 0.3.0-4
- Add symlink to fonts directory
Size change: 16701 bytes
ipv6calc-0.98.0-10.fc22
-----------------------
* Mon Mar 02 2015 Peter Bieringer <pb(a)bieringer.de> - 0.98.0-10
- new (fixed) upstream 0.98.0 tar.gz
* Sun Mar 01 2015 Peter Bieringer <pb(a)bieringer.de> - 0.98.0-9
- remove not necessary x-bits for some files by proper definition in %files section
* Fri Feb 20 2015 Peter Bieringer <pb(a)bieringer.de> - 0.98.0-8
- new release 0.98.0
* Wed Feb 18 2015 Peter Bieringer <pb(a)bieringer.de>
- add support for conditional builds
* Sat Oct 25 2014 Peter Bieringer <pb(a)bieringer.de>
- add /usr/share/ipv6calc/db directory
* Sat Oct 11 2014 Peter Bieringer <pb(a)bieringer.de>
- add additional requirements for ipv6calc-ipv6calcweb
- enable db-ip.com & external database support
Size change: 77008 bytes
jd-2.8.9-1.fc22
---------------
* Fri Feb 27 2015 Mamoru TASAKA <mtasaka(a)fedoraproject.org> - 2.8.9-1
- 2.8.9
Size change: -3103519 bytes
kcm_systemd-1.1.0-1.fc22
------------------------
* Tue Mar 03 2015 Kevin Kofler <Kevin(a)tigcc.ticalc.org> - 1.1.0-1
- Update to 1.1.0 (#1198121)
- BR systemd-devel >= 209 for libsystemd.so (new dependency)
- Upstream added translations, package them (BR gettext, use %find_lang)
* Mon Feb 23 2015 Kevin Kofler <Kevin(a)tigcc.ticalc.org> - 1.0.0-1
- Update to 1.0.0 (#1195092, KF5 port)
- Update BuildRequires (remove kdelibs4-devel, add cmake, ECM, Qt 5 and KF5)
- Use kf5 RPM macros instead of kde4 ones
- Use %license instead of %doc for LICENSE
Size change: 79718 bytes
kf5-attica-5.7.0-2.fc22
-----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 88 bytes
kf5-baloo-5.6.1-2.fc22
----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.6.1-2
- Rebuild (GCC 5)
* Tue Feb 24 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.6.1-1
- Plasma 5.2.1
Size change: -908 bytes
kf5-frameworkintegration-5.7.0-2.fc22
-------------------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1007 bytes
kf5-kactivities-5.7.0-2.fc22
----------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1016 bytes
kf5-karchive-5.7.0-2.fc22
-------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1017 bytes
kf5-kauth-5.7.0-2.fc22
----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 89 bytes
kf5-kbookmarks-5.7.0-2.fc22
---------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1013 bytes
kf5-kcmutils-5.7.0-2.fc22
-------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 90 bytes
kf5-kcodecs-5.7.0-2.fc22
------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 96 bytes
kf5-kcompletion-5.7.0-2.fc22
----------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1019 bytes
kf5-kconfig-5.7.0-2.fc22
------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1014 bytes
kf5-kconfigwidgets-5.7.0-2.fc22
-------------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1010 bytes
kf5-kcoreaddons-5.7.0-2.fc22
----------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1011 bytes
kf5-kcrash-5.7.0-2.fc22
-----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1023 bytes
kf5-kdbusaddons-5.7.0-2.fc22
----------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1030 bytes
kf5-kdeclarative-5.7.0-2.fc22
-----------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 92 bytes
kf5-kded-5.7.0-2.fc22
---------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1002 bytes
kf5-kdelibs4support-5.7.0-2.fc22
--------------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1005 bytes
kf5-kdesignerplugin-5.7.0-2.fc22
--------------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1015 bytes
kf5-kdesu-5.7.0-2.fc22
----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1026 bytes
kf5-kdewebkit-5.7.0-2.fc22
--------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1024 bytes
kf5-kdnssd-5.7.0-2.fc22
-----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1019 bytes
kf5-kdoctools-5.7.0-2.fc22
--------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 94 bytes
kf5-kemoticons-5.7.0-2.fc22
---------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1004 bytes
kf5-kfilemetadata-5.6.1-2.fc22
------------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.6.1-2
- Rebuild (GCC 5)
* Tue Feb 24 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.6.1-1
- Plasma 5.2.1
Size change: -814 bytes
kf5-kguiaddons-5.7.0-2.fc22
---------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1014 bytes
kf5-khtml-5.7.0-2.fc22
----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1029 bytes
kf5-ki18n-5.7.0-2.fc22
----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1013 bytes
kf5-kiconthemes-5.7.0-2.fc22
----------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1016 bytes
kf5-kidletime-5.7.0-2.fc22
--------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 84 bytes
kf5-kimageformats-5.7.0-2.fc22
------------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1017 bytes
kf5-kinit-5.7.0-2.fc22
----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1012 bytes
kf5-kio-5.7.0-2.fc22
--------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1011 bytes
kf5-kitemmodels-5.7.0-2.fc22
----------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1004 bytes
kf5-kitemviews-5.7.0-2.fc22
---------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 92 bytes
kf5-kjobwidgets-5.7.0-2.fc22
----------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -999 bytes
kf5-kjs-5.7.0-2.fc22
--------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1013 bytes
kf5-kjsembed-5.7.0-2.fc22
-------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 85 bytes
kf5-kmediaplayer-5.7.0-2.fc22
-----------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 90 bytes
kf5-knewstuff-5.7.0-2.fc22
--------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1004 bytes
kf5-knotifications-5.7.0-2.fc22
-------------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1015 bytes
kf5-knotifyconfig-5.7.0-2.fc22
------------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1019 bytes
kf5-kpackage-5.7.0-2.fc22
-------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 100 bytes
kf5-kparts-5.7.0-2.fc22
-----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1014 bytes
kf5-kplotting-5.7.0-2.fc22
--------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1003 bytes
kf5-kpty-5.7.0-2.fc22
---------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1002 bytes
kf5-kross-5.7.0-2.fc22
----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1012 bytes
kf5-krunner-5.7.0-2.fc22
------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1013 bytes
kf5-kservice-5.7.0-2.fc22
-------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1013 bytes
kf5-ktexteditor-5.7.0-2.fc22
----------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1015 bytes
kf5-ktextwidgets-5.7.0-2.fc22
-----------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1007 bytes
kf5-kunitconversion-5.7.0-2.fc22
--------------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1001 bytes
kf5-kwallet-5.7.0-2.fc22
------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 91 bytes
kf5-kwidgetsaddons-5.7.0-2.fc22
-------------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1013 bytes
kf5-kwindowsystem-5.7.0-2.fc22
------------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1019 bytes
kf5-kxmlgui-5.7.0-2.fc22
------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1005 bytes
kf5-plasma-5.7.0-2.fc22
-----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1012 bytes
kf5-solid-5.7.0-2.fc22
----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: 86 bytes
kf5-sonnet-5.7.0-2.fc22
-----------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1016 bytes
kf5-threadweaver-5.7.0-2.fc22
-----------------------------
* Fri Feb 27 2015 Daniel Vrátil <dvratil(a)redhat.com> - 5.7.0-2
- Rebuild (GCC 5)
Size change: -1013 bytes
kmod-20-1.fc22
--------------
* Mon Mar 02 2015 Josh Boyer <jwboyer(a)fedoraproject.org> - 20.1
- Update to version 20
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 19-2
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: -1036290 bytes
kwin-5.2.0.1-3.fc22
-------------------
* Wed Mar 04 2015 Rex Dieter <rdieter(a)fedoraproject.org> 5.2.0.1-3
- Provides: firstboot(windowmanager) = kwin_x11 (#1197135)
Size change: -811 bytes
latex2rtf-2.3.8-5.fc22
----------------------
* Thu Feb 19 2015 Christopher Meng <rpm(a)cicku.me> - 2.3.8-5
- Fix broken requires again.
* Tue Feb 17 2015 Christopher Meng <rpm(a)cicku.me> - 2.3.8-4
- Add missing requires again.
* Mon Feb 02 2015 Christopher Meng <rpm(a)cicku.me> - 2.3.8-4
- Add missing requires for latex2png
* Thu Aug 28 2014 Christopher Meng <rpm(a)cicku.me> - 2.3.8-3
- Fix FTBFS with texinfo 5.
Size change: -678 bytes
lftp-4.6.1-4.fc22
-----------------
* Thu Feb 26 2015 Tomas Hozza <thozza(a)redhat.com> - 4.6.1-4
- Don't auto accept remote host SSH fingerprint (new option auto-confirm) (#1180209)
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 4.6.1-3
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 994 bytes
libX11-1.6.3-1.fc22
-------------------
* Tue Mar 10 2015 Adam Jackson <ajax(a)redhat.com> 1.6.3-1
- libX11 1.6.3
Size change: 23405 bytes
libappstream-glib-0.3.5-1.fc22
------------------------------
* Wed Mar 11 2015 Richard Hughes <richard(a)hughsie.com> 0.3.5-1
- New upstream release
- Add new API required for firmware support
- Add new API required for OSTree and xdg-app support
Size change: 22345 bytes
libevdev-1.4-1.fc22
-------------------
* Wed Mar 04 2015 Peter Hutterer <peter.hutterer(a)redhat.com> 1.4-1
- libevdev 1.4
Size change: 1372 bytes
libgphoto2-2.5.7-2.fc22
-----------------------
* Thu Mar 12 2015 Tim Waugh <twaugh(a)redhat.com> 2.5.7-2
- Apply upstream patch to correctly report errors when performing
USB control transfers (bug #1201048).
Size change: 763 bytes
libgweather-3.15.91-1.fc22
--------------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
Size change: -2346 bytes
libhtp-0.5.17-1.fc22
--------------------
* Fri Feb 27 2015 Mathieu Bridon <bochecha(a)daitauha.fr> - 0.5.17-1
- Update to 0.5.17
Size change: 1553 bytes
libinput-0.12.0-1.fc22
----------------------
* Tue Mar 10 2015 Peter Hutterer <peter.hutterer(a)redhat.com> 0.12.0-1
- libinput 0.12.0
Size change: 13040 bytes
libmatekbd-1.9.90-1.fc22
------------------------
* Wed Feb 25 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90.1
- update to 1.9.90 release
- fix gsettings with glib-2.43
Size change: -523 bytes
libmatemixer-1.9.90-1.fc22
--------------------------
* Wed Feb 25 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90.1
- update to 1.9.90 release
Size change: 3855 bytes
libmateweather-1.9.90-1.fc22
----------------------------
* Wed Feb 25 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90.1
- update to 1.9.90 release
Size change: -1890 bytes
libmspack-0.5-0.1.alpha.fc22
----------------------------
* Tue Mar 03 2015 Dan Horák <dan[at]danny.cz> - 0.5-0.1.alpha
- updated to 0.5alpha
Size change: 56240 bytes
libnice-0.1.10-1.fc22
---------------------
* Fri Mar 13 2015 David Woodhouse <dwmw2(a)infradead.org> - 0.1.10-1
- Update to 0.1.10
Size change: 22227 bytes
libnl3-3.2.26-3.fc22
--------------------
* Mon Mar 09 2015 Thomas Haller <thaller(a)redhat.com> - 3.2.26-3
- Update to 3.2.26-rc1
- fix broken symbols from 3.2.26-1
- backport upstream fix for nl_socket_set_fd()
* Sat Mar 07 2015 Thomas Haller <thaller(a)redhat.com> - 3.2.26-2
- Revert update to 3.2.26-rc1 to previous 3.2.25-6
* Fri Mar 06 2015 Thomas Haller <thaller(a)redhat.com> - 3.2.26-1
- Update to 3.2.26-rc1
* Tue Feb 03 2015 Thomas Haller <thaller(a)redhat.com> - 3.2.25-6
- add new packages with language bindings for Python 2 and Python 3 (rh #1167112)
Size change: 333190 bytes
libpinyin-1.1.0-1.fc22
----------------------
* Tue Mar 03 2015 Peng Wu <pwu(a)redhat.com> - 1.1.0-1
- Update to 1.1.0
Size change: -1174 bytes
libpng10-1.0.63-1.fc22
----------------------
* Fri Feb 27 2015 Paul Howarth <paul(a)city-fan.org> - 1.0.63-1
- Update to 1.0.63
- Issue a png_error() instead of a png_warning() when width is potentially
too large for the architecture, in case the calling application has
overridden the default 1,000,000-column limit (fixes CVE-2014-9495 and
CVE-2015-0973)
- Quieted some harmless warnings from Coverity-scan
- Display user limits in the output from pngtest (not packaged)
- Changed PNG_USER_CHUNK_MALLOC_MAX from unlimited to 8,000,000; it only
affects the maximum memory that can be allocated to an ancillary chunk,
and does not limit the size of IDAT data, which is instead limited by
PNG_USER_WIDTH_MAX
- Rebuilt configure scripts with automake-1.15 and libtool-2.4.6
- Update soname patch
Size change: -545 bytes
librsvg2-2.40.8-1.fc22
----------------------
* Fri Feb 27 2015 David King <amigadave(a)amigadave.com> - 2.40.8-1
- Update to 2.40.8
Size change: 814 bytes
librsync-1.0.0-1.fc22
---------------------
* Sun Mar 01 2015 Robert Scheck <robert(a)fedoraproject.org> 1.0.0-1
- Upgrade to 1.0.0 (#1126712)
Size change: -311222 bytes
libsigc++20-2.4.1-1.fc22
------------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 2.4.1-1
- Update to 2.4.1
Size change: -10490 bytes
libsolv-0.6.8-3.fc22
--------------------
* Fri Mar 06 2015 Jan Silhan <jsilhan(a)redhat.com> - 0.6.8-3
- Rebuilt with new provides selection feature
Size change: 4394 bytes
libsoup-2.49.91.1-1.fc22
------------------------
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 2.49.91.1-1
- Update to 2.49.91.1
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 2.49.91-1
- Update to 2.49.91
- Use the %license macro for the COPYING file
Size change: 49519 bytes
libssh2-1.5.0-1.fc22
--------------------
* Wed Mar 11 2015 Paul Howarth <paul(a)city-fan.org> - 1.5.0-1
- Update to 1.5.0
- See RELEASE-NOTES for details of bug fixes and enhancements
- Security Advisory for CVE-2015-1782, using SSH_MSG_KEXINIT data unbounded
Size change: 26959 bytes
libtevent-0.9.24-1.fc22
-----------------------
* Thu Mar 05 2015 Jakub Hrozek <jhrozek(a)redhat.com> - 0.9.24-1
- New upstream release 0.9.24
* Mon Mar 02 2015 Jakub Hrozek <jhrozek(a)redhat.com> - 0.9.23-1
- New upstream release 0.9.23
Size change: 5950 bytes
libticonv-1.1.4-5.fc22
----------------------
* Wed Mar 04 2015 'Ben Rosser' <rosser.bjr(a)gmail.com> 1.1.4-5
- Switched to using global instead of define for macros.
- Package now owns its documentation directory.
- Tests are now ran in the check section of the specfile.
* Fri Feb 27 2015 'Ben Rosser' <rosser.bjr(a)gmail.com> 1.1.4-4
- Fixed doc subpackage to be noarch and not contain duplicate files.
Size change: -592 bytes
libvirt-1.2.13-2.fc22
---------------------
* Tue Mar 10 2015 Cole Robinson <crobinso(a)redhat.com> - 1.2.13-2
- Fix connecting to qemu:///session (bz #1198244)
* Mon Mar 02 2015 Cole Robinson <crobinso(a)redhat.com> - 1.2.13-1
- Rebased to version 1.2.13
- lot of improvements around NUMA code
- a lot of improvement and bug fixes
* Tue Feb 03 2015 Daniel P. Berrange <berrange(a)redhat.com> - 1.2.12-2
- Rebuild for changed xen soname
* Tue Jan 27 2015 Daniel P. Berrange <berrange(a)redhat.com> - 1.2.12-1
- Update to 1.2.12 release
Size change: 279106 bytes
libvirt-designer-0.0.2-1.fc22
-----------------------------
* Fri Mar 06 2015 Danie P. Berrange <berrange(a)rdhat.com> - 0.0.2-1
- Update to 0.0.2 release
Size change: 53396 bytes
libwacom-0.12-1.fc22
--------------------
* Tue Mar 10 2015 Peter Hutterer <peter.hutterer(a)redhat.com> 0.12-1
- libwacom 0.12
Size change: 16865 bytes
libwebp-0.4.3-1.fc22
--------------------
* Thu Mar 12 2015 Sandro Mani <manisandro(a)gmail.com> - 0.4.3-1
- upstream release 0.4.3
Size change: 13050 bytes
libxfce4ui-4.12.0-2.fc22
------------------------
* Sun Mar 01 2015 Mukundan Ragavan <nonamedotc(a)fedoraproject.org> - 4.12.0-2
- Add shortcuts patch
* Sat Feb 28 2015 Mukundan Ragavan <noamedotc(a)fedoraproject.org> - 4.12.0-1
- Update to latest stable release 4.12.0
- Remove upstreamed patches
- Built with GTK3 enabled
- change Terminal to xfce4-terminal in shortcuts patch
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 4.10.0-14
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 129350 bytes
libxfce4util-4.12.1-1.fc22
--------------------------
* Sat Feb 28 2015 Mukundan Ragavan <nonamedotc(a)fedoraproject.org> - 4.12.1-1
- Update to 4.12.1
- Fixes permissions problems in installing libraries
- Fixes xfce_version_string
* Sat Feb 28 2015 Mukundan Ragavan <nonamedotc(a)fedoraproject.org> - 4.12.0-1
- Update to stable release 4.12.0
Size change: 2310 bytes
libxml++-2.38.0-1.fc22
----------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 2.38.0-1
- Update to 2.38.0
Size change: 23811 bytes
liferea-1.10.14-1.fc22
----------------------
* Fri Feb 27 2015 Yanko Kaneti <yaneti(a)declera.com> - 1:1.10.14-1
- Update to 1.10.14
Size change: -859 bytes
lightsoff-3.15.91-1.fc22
------------------------
* Mon Mar 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
- Use the %license macro for the COPYING file
Size change: -643 bytes
lilypond-2.19.16-1.fc22
-----------------------
* Sun Mar 01 2015 Jon Ciesla <limburgher(a)gmail.com> - 2.19.16-1
- 2.19.16.
Size change: 144154 bytes
livecd-tools-22.0-1.fc22
------------------------
* Mon Mar 02 2015 Brian C. Lane <bcl(a)redhat.com> 22.0-1
- Version 22.0 (bcl)
- kickstart: Handle resolv.conf being a nonexistent symlink (walters)
- Report Kickstart errors without traceback (#1168030) (bcl)
- Change console font to eurlatgr (myllynen)
- litd: Add missing syslinux modules (#1192137) (bcl)
- Note lz4 compression in help (bruno)
Size change: -514 bytes
lxqt-common-0.9.1-3.fc22
------------------------
* Sat Feb 28 2015 Helio Chissini de Castro <helio(a)kde.org> - 0.9.1-3
- Fixed xdg entriy preventing session to load proper lxqt resources
- Added Fedora theme and make it default
Size change: 7326 bytes
m4ri-20140914-3.fc22
--------------------
* Fri Mar 06 2015 Jerry James <loganjerry(a)gmail.com> - 20140914-3
- Remove more unnecessary CFLAGS from the pkgconfig file
* Tue Mar 03 2015 Jerry James <loganjerry(a)gmail.com> - 20140914-2
- Fix CFLAGS in pkgconfig file (bz 1196519)
- Note bundled jquery
Size change: -693 bytes
m4rie-20140914-2.fc22
---------------------
* Fri Mar 06 2015 Jerry James <loganjerry(a)gmail.com> - 20140914-2
- Add LaTeX BR to fix FTBFS (see bz 1198355)
- Drop workaround for m4ri pkgconfig bug now that m4ri is fixed
Size change: 2714 bytes
marco-1.9.90-1.fc22
-------------------
* Thu Feb 26 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90-1
- update to 1.9.90 release
Size change: -5824 bytes
mariadb-10.0.17-1.fc22
----------------------
* Wed Mar 04 2015 Honza Horak <hhorak(a)redhat.com> - 1:10.0.17-1
- Rebase to version 10.0.17
- Added variable for turn off skipping some tests
* Tue Mar 03 2015 Honza Horak <hhorak(a)redhat.com> - 1:10.0.16-6
- Check permissions when starting service on RHEL-6
Resolves: #1194699
- Do not create test database by default
Related: #1194611
Size change: 300529 bytes
mate-control-center-1.9.90-1.fc22
---------------------------------
* Thu Mar 05 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90.1
- update to 1.9.90 release
* Wed Jan 21 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.1-1
- update to 1.9.1 release
Size change: -1176 bytes
mate-desktop-1.9.90-2.fc22
--------------------------
* Wed Mar 04 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90.2
- adjust gsettings override file for f22 default background
* Wed Feb 25 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90.1
- update to 1.9.90 release
Size change: 9416 bytes
mate-menus-1.9.90-1.fc22
------------------------
* Mon Mar 02 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90-1
- update to 1.9.90 release
Size change: -1078 bytes
mate-notification-daemon-1.9.90-1.fc22
--------------------------------------
* Mon Mar 02 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90-1
- update to 1.9.90 release
- remove upstreamed patch
Size change: -564 bytes
mate-panel-1.9.90-1.fc22
------------------------
* Mon Mar 02 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90-1
- update to 1.9.90 release
Size change: -5082 bytes
mate-polkit-1.9.90-1.fc22
-------------------------
* Thu Feb 26 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90-1
- update to 1.9.90 release
Size change: 1416 bytes
mate-session-manager-1.9.90-1.fc22
----------------------------------
* Thu Feb 26 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90-1
- update to 1.9.90 release
Size change: 4024 bytes
mate-settings-daemon-1.9.90-1.fc22
----------------------------------
* Thu Feb 26 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.9.90-1
- update to 1.9.90 release
Size change: 5198 bytes
mesa-10.5.0-2.20150218.fc22
---------------------------
* Sun Mar 08 2015 Kalev Lember <kalevlember(a)gmail.com> - 10.5.0-2.20150218
- Backport a patch fixing partially transparent screenshots (fdo#89292)
Size change: 136 bytes
milter-greylist-4.5.12-2.fc22
-----------------------------
* Fri Mar 06 2015 Paul Howarth <paul(a)city-fan.org> - 4.5.12-2
- Include milter-greylist.m4 as %doc
- Add preset support for EL-7 build
- Tag README as %license where possible as it includes the license details
Size change: -804 bytes
milter-regex-2.0-4.fc22
-----------------------
* Mon Mar 02 2015 Paul Howarth <paul(a)city-fan.org> - 2.0-4
- Use %license
Size change: -1030 bytes
mirall-1.7.1-2.fc22
-------------------
* Fri Mar 06 2015 Dams <anvil[AT]livna.org> - 1.7.1-2
- Added gcc5 compliance patch
* Fri Mar 06 2015 Dams <anvil[AT]livna.org> - 1.7.1-1
- Updated to 1.7.1
* Mon Nov 10 2014 Nikos Roussos <comzeradd(a)fedoraproject.org> - 1.7.0-2
- Add missing dependency
Size change: 34645 bytes
mmg3d-4.0.2-1.fc22
------------------
* Wed Feb 25 2015 Sandro Mani <manisandro(a)gmail.com> - 4.0.2-1
- Update to 4.0.2
Size change: 520 bytes
mod_nss-1.0.11-3.fc22
---------------------
* Sun Mar 01 2015 Peter Robinson <pbrobinson(a)fedoraproject.org> 1.0.11-3
- Enable make check
* Fri Feb 27 2015 Rob Crittenden <rcritten(a)redhat.com> - 1.0.11-2
- Fix parallel build issue (#1196222)
Size change: -417 bytes
mutter-3.15.91-2.fc22
---------------------
* Tue Mar 10 2015 Peter Hutterer <peter.hutterer(a)redhat.com> - 3.15.91-2
- Rebuild for libinput soname bump
* Wed Mar 04 2015 Florian Müllner <fmuellner(a)redhat.com> - 3.15.91-1
- Update to 3.15.91
Size change: -4980 bytes
mydns-1.2.8.31-12.fc22
----------------------
* Thu Feb 26 2015 Matej Cepl <mcepl(a)redhat.com> - 1.2.8.31-12
- Fix build of the mydns-pgsql so that it actually supports pgsql (#985909)
Thanks for the patch by Tomasz Sterna.
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.2.8.31-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
Size change: -677 bytes
nasm-2.11.06-1.fc22
-------------------
* Tue Oct 21 2014 Mikolaj Izdebski <mizdebsk(a)redhat.com> - 2.11.06-1
- Update to upstream version 2.11.06
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.11.05-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
Size change: 70549 bytes
nautilus-3.15.91-1.fc22
-----------------------
* Thu Mar 12 2015 David King <amigadave(a)amigadave.com> - 3.15.91-1
- Update to 3.15.91
- Validate AppData in check
Size change: -39067 bytes
nco-4.4.8-1.fc22
----------------
* Sat Feb 21 2015 Orion Poplawski <orion(a)cora.nwra.com> 4.4.8-1
- Update to 4.4.8
Size change: 268742 bytes
nomacs-2.4.2-2.fc22
-------------------
* Tue Mar 03 2015 TI_Eugene <ti.eugene(a)gmail.com> 2.4.2-2
- Version bump.
Size change: 45484 bytes
nordugrid-arc-4.2.0-5.fc22
--------------------------
* Sat Mar 07 2015 Mattias Ellert <mattias.ellert(a)fysast.uu.se> - 4.2.0-5
- Backport removal of python print statements (fixes pylint errors)
Size change: 2506 bytes
nss-3.17.4-5.fc22
-----------------
* Tue Mar 03 2015 Elio Maldonado <emaldona(a)redhat.com> - 3.17.4-5
- Disable export suites and SSL2 support at build time
- Fix syntax errors in various shell scripts
- Resolves: Bug 1189952 - Disable SSL2 and the export cipher suites
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 3.17.4-4
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 670 bytes
ntp-4.2.6p5-28.fc22
-------------------
* Thu Feb 26 2015 Miroslav Lichvar <mlichvar(a)redhat.com> 4.2.6p5-28
- don't step clock for leap second with -x option (#1196635)
- allow creating all SHM segments with owner-only access
- allow symmetric keys up to 32 bytes again
- use larger RSA exponent in ntp-keygen
- fix crash in ntpq mreadvar command
- don't drop packets with source port below 123
- increase memlock limit again
- fix typos in ntpd man page
- improve documentation of restrict command
Size change: 7237 bytes
numpy-1.9.2-1.fc22
------------------
* Sun Mar 01 2015 Orion Poplawski <orion(a)nwra.com> - 1:1.9.2-1
- Update to 1.9.2
Size change: 4536 bytes
okteta-4.14.3-3.fc22
--------------------
* Sat Feb 28 2015 Rex Dieter <rdieter(a)fedoraproject.org> 4.14.3-3
- lack of algorithms in checksum tool (#1197339)
Size change: -893 bytes
opal-3.10.10-7.fc22
-------------------
* Thu Feb 26 2015 Peter Robinson <pbrobinson(a)fedoraproject.org> 3.10.10-7
- rebuild (gcc5)
Size change: -283 bytes
opendkim-2.10.1-2.fc22
----------------------
* Tue Mar 03 2015 Steve Jenkins <steve(a)stevejenkins.com> - 2.10.1-2
- Added IPv6 ::1 support to TrustedHosts (RH Bugzilla #1049204)
* Tue Mar 03 2015 Steve Jenkins <steve(a)stevejenkins.com> - 2.10.1-1
- Updated to use newer upstream 2.10.1 source code
* Tue Dec 09 2014 Steve Jenkins <steve(a)stevejenkins.com> - 2.10.0-1
- Updated to use newer upstream 2.10.0 source code
- Removed unbound compile option due to orphaned upstream dependency
- Removed AUTOCREATE_DKIM_KEYS option
- Added README.fedora with basic key generation and config instructions
Size change: -18388 bytes
openscad-2015.02-0.2.RC3.fc22
-----------------------------
* Wed Feb 25 2015 Miro Hrončok <mhroncok(a)redhat.com> - 2015.02-0.2.RC3
- Rebuilt for new CGAL
* Sun Feb 22 2015 Miro Hrončok <mhroncok(a)redhat.com> - 2015.02-0.1.RC3
- New RC version of 2015.02
- Build MCAD as a subpackage
- Unbundle polyclipping
* Tue Jan 27 2015 Petr Machata <pmachata(a)redhat.com> - 2014.03-7
- Rebuild for boost 1.57.0
Size change: 5813372 bytes
openssh-6.7p1-11.fc22
---------------------
* Thu Mar 12 2015 Jakub Jelen <jjelen(a)redhat.com> 6.7p1-11 + 0.9.3-4
- Ability to specify LDAP filter in ldap.conf for ssh-ldap-helper
- Fix auditing when using combination of ForceCommand and PTY
- Add sftp option to force mode of created files (from rhel)
- Fix tmpfiles.d entries to be more consistent (#1196807)
* Mon Mar 02 2015 Jakub Jelen <jjelen(a)redhat.com> 6.7p1-10 + 0.9.3-4
- Add tmpfiles.d entries (#1196807)
* Fri Feb 27 2015 Jakub Jelen <jjelen(a)redhat.com> 6.7p1-9 + 0.9.3-4
- Adjust seccomp filter for primary architectures and solve aarch64 issue (#1197051)
- Solve issue with ssh-copy-id and keys without trailing newline (#1093168)
* Tue Feb 24 2015 Jakub Jelen <jjelen(a)redhat.com> 6.7p1-8 + 0.9.3-4
- Add AArch64 support for seccomp_filter sandbox (#1195065)
Size change: 4465 bytes
paps-0.6.8-33.fc22
------------------
* Mon Mar 02 2015 Akira TAGOH <tagoh(a)redhat.com> - 0.6.8-33
- Support A3 paper size.
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 0.6.8-32
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: -20 bytes
patch-2.7.5-1.fc22
------------------
* Mon Mar 09 2015 Tim Waugh <twaugh(a)redhat.com> - 2.7.5-1
- Fixed memory leak in selinux patch.
- 2.7.5, including an even better fix for CVE-2015-1196 that still
allows relative symlinks to be created/used.
Size change: 12310 bytes
pcmanfm-qt-0.9.0-6.fc22
-----------------------
* Wed Feb 25 2015 Mamoru TASAKA <mtasaka(a)fedoraproject.org> - 0.9.0-6
- Fix directory ownership
* Wed Feb 18 2015 Helio Chissini de Castro <helio(a)kde.org> - 0.9.0-5
- Fix duplicated files caused for qm template
* Fri Feb 13 2015 Helio Chissini de Castro <helio(a)kde.org> - 0.9.0-4
- Ownership of share/pcmanfm-qt directories
- libfm-qt5 alnguage files added
- Obsoletes libfm-qt4-devel
- Moved COPYING to the new tag license
* Mon Feb 09 2015 Helio Chissini de Castro <helio(a)kde.org> - 0.9.0-2
- Fixed download dir
* Sun Feb 08 2015 Helio Chissini de Castro <hcastro(a)redhat.com> - 0.9.0-1
- New upstream release 0.9.0
* Tue Feb 03 2015 Helio Chissini de Castro <hcastro(a)redhat.com> - 0.9.0-0.1
- Preparing for 0.9.0 release
- Obsoletes pcmanfm-qt5 and pcmanfm-qt-common packages as no more qt4 versions will be done
Size change: -53013 bytes
pcs-0.9.139-2.fc22
------------------
* Fri Feb 27 2015 Tomas Jelinek <tojeline(a)redhat.com> - 0.9.139-2
- Reflect clufter inclusion (rhbz#1180723)
Size change: -969 bytes
pdns-3.4.3-1.fc22
-----------------
* Mon Mar 02 2015 Morten Stevens <mstevens(a)imt-systems.com> - 3.4.3-1
- Update to 3.4.3
Size change: -8157 bytes
perl-Devel-PPPort-3.30-1.fc22
-----------------------------
* Fri Mar 06 2015 Petr Pisar <ppisar(a)redhat.com> - 3.30-1
- 3.30 bump
Size change: -1062 bytes
perl-Encode-2.70-2.fc22
-----------------------
* Wed Mar 04 2015 Petr Pisar <ppisar(a)redhat.com> - 2:2.70-2
- Correct license from (GPL+ or Artistic) to ((GPL+ or Artistic) and UCD)
Size change: -906 bytes
perl-List-MoreUtils-0.406-1.fc22
--------------------------------
* Tue Mar 03 2015 Paul Howarth <paul(a)city-fan.org> - 0.406-1
- Update to 0.406
- Add new functions firstres and lastres in addition to firstidx, lastidx,
firstval and lastval
- Regenerate MANIFEST to bundle README.md
Size change: 7878 bytes
perl-Net-DNS-0.83-1.fc22
------------------------
* Fri Feb 27 2015 Petr Šabata <contyk(a)redhat.com> - 0.83-1
- 0.83 bump
- Correct the dependency list
- Modernize the spec a bit
Size change: 2778 bytes
perl-Params-Validate-1.18-1.fc22
--------------------------------
* Tue Feb 24 2015 Ralf Corsépius <corsepiu(a)fedoraproject.org> - 1.18-1
- Upstream update.
- BR: perl(Test::Version).
Size change: 232 bytes
perl-Sys-Mmap-0.17-1.fc22
-------------------------
* Tue Feb 24 2015 Jason L Tibbitts III <tibbs(a)math.uh.edu> - 0.17-1
- Update to 0.17.
Size change: 480 bytes
perl-Text-CSV_XS-1.16-1.fc22
----------------------------
* Mon Mar 02 2015 Paul Howarth <paul(a)city-fan.org> - 1.16-1
- Update to 1.16:
- filter made more useful (access to other fields)
Size change: -509 bytes
pgRouting-2.0.0-7.fc22
----------------------
* Sun Mar 01 2015 Volker Froehlich <volker27(a)gmx.at> - 2.0.0-7
- Rebuild for cgal 4.6
Size change: -1015 bytes
php-pecl-http-2.3.1-1.fc22
--------------------------
* Mon Mar 02 2015 Remi Collet <remi(a)fedoraproject.org> - 2.3.1-1
- Update to 2.3.1 (stable)
Size change: 14091 bytes
php-pecl-mongo-1.6.4-1.fc22
---------------------------
* Tue Mar 03 2015 Remi Collet <remi(a)fedoraproject.org> - 1.6.4-1
- update to 1.6.4 (stable)
Size change: 160 bytes
php-pecl-redis-2.2.7-1.fc22
---------------------------
* Tue Mar 03 2015 Remi Collet <remi(a)fedoraproject.org> - 2.2.7-1
- Update to 2.2.7 (stable)
Size change: 39795 bytes
php-pecl-xdebug-2.3.1-1.fc22
----------------------------
* Wed Feb 25 2015 Remi Collet <remi(a)fedoraproject.org> - 2.3.1-1
- Update to 2.3.1
Size change: -880 bytes
pl-6.6.6-5.fc22
---------------
* Fri Feb 27 2015 Petr Pisar <ppisar(a)redhat.com> - 6.6.6-5
- Build binding for libarchive (bug #1195960)
Size change: -965 bytes
poedit-1.7.4-1.fc22
-------------------
* Thu Mar 05 2015 Mario Blättermann <mario.blaettermann(a)gmail.com> - 1.7.4-1
- New upstream version
Size change: -35636 bytes
polari-3.15.91-1.fc22
---------------------
* Thu Mar 05 2015 Florian Müllner <fmuellner(a)redhat.com> - 3.15.91-1
- Update to 3.15.91
* Mon Feb 23 2015 Florian Müllner <fmuellner(a)redhat.com> - 3.15.90-1
- Update to 3.15.90
Size change: 3026 bytes
policycoreutils-2.3-16.fc22
---------------------------
* Tue Feb 24 2015 Petr Lautrbach <plautrba(a)redhat.com> 2.3-16
- Temporary removed Requires:audit-libs-python from policycoreutils-python3 subpackage (#1195139)
- Simplication of sepolicy-manpage web functionality (#1193552)
Size change: -744 bytes
powerpc-utils-python-1.2.1-6.fc21
---------------------------------
Size change: -6806 bytes
ptlib-2.10.10-10.fc22
---------------------
* Thu Feb 26 2015 Peter Robinson <pbrobinson(a)fedoraproject.org> 2.10.10-10
- Add patch to fix FTBFS with gcc5
Size change: -591 bytes
pygobject3-3.15.91-1.fc22
-------------------------
* Thu Mar 05 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.15.91-1
- Update to 3.15.91
Size change: 2598 bytes
python-admesh-0.98.3-1.fc22
---------------------------
* Wed Feb 25 2015 Miro Hrončok <mhroncok(a)redhat.com> - 0.98.3-1
- New version 0.98.3
Size change: -1249 bytes
python-cryptography-0.7.2-2.fc22
--------------------------------
* Wed Mar 04 2015 Nathaniel McCallum <npmccallum(a)redhat.com> - 0.7.2-2
- Add python3-cryptography-vectors build requires
- Add python-enum34 requires
* Tue Feb 03 2015 Nathaniel McCallum <npmccallum(a)redhat.com> - 0.7.2-1
- New upstream release. BSD is now an optional license.
- Fix test running on python3
- Add upstream patch to fix test paths
Size change: 12261 bytes
python-matplotlib-1.4.3-3.fc22
------------------------------
* Tue Feb 24 2015 Zbigniew Jędrzejewski-Szmek <zbyszek(a)in.waw.pl> - 1.4.3-3
- Use %license, add skimage to build requirements
* Tue Feb 17 2015 Elliott Sales de Andrade <quantum.analyst(a)gmail.com> - 1.4.3-2
- Disable Qt5 backend on Fedora <21 and RHEL
* Tue Feb 17 2015 Elliott Sales de Andrade <quantum.analyst(a)gmail.com> - 1.4.3-1
- New upstream release (#1134007)
- Add Qt5 backend
* Tue Jan 13 2015 Elliott Sales de Andrade <quantum.analyst(a)gmail.com> - 1.4.2-1
- Bump to new upstream release
- Add qhull-devel to BR
- Add six to Requires
Size change: 6370129 bytes
python-sane-2.8.0-1.fc22
------------------------
* Sat Mar 07 2015 Sandro Mani <manisandro(a)gmail.com> - 2.8.0-1
- Update to 2.8.0
Size change: -1669 bytes
python-six-1.9.0-1.fc22
-----------------------
* Mon Feb 23 2015 Haïkel Guémar <hguemar(a)fedoraproject.org> - 1.9.0-1
- Upstream 1.9.0
- Packaging cleanups
Size change: 2423 bytes
qsstv-8.2.10-1.fc22
-------------------
* Sun Mar 01 2015 Richard Shaw <hobbes1069(a)gmail.com> - 8.2.10-1
- Update to latest upstream release, 8.2.10.
Size change: -5052102 bytes
qt-4.8.6-25.fc22
----------------
* Fri Feb 27 2015 Rex Dieter <rdieter(a)fedoraproject.org> 1:4.8.6-25
- DoS vulnerability in the BMP image handler (CVE-2015-0295)
Size change: -756 bytes
qt-creator-3.3.1-1.fc22
-----------------------
* Tue Feb 24 2015 Sandro Mani <manisandro(a)gmail.com> - 3.3.1-1
- 3.3.1 release
- Use %license
- Use appstream-util validate-relax
- Split application data to noarch data subpackage
- Sanitize rpaths
Size change: -8593 bytes
qt3-3.3.8b-62.fc22
------------------
* Sat Feb 28 2015 Kevin Kofler <Kevin(a)tigcc.ticalc.org> - 3.3.8b-62
- backport CVE-2015-0295 (BMP image handler DoS, #1197275) fix from Qt 4
* Fri Feb 27 2015 Rex Dieter <rdieter(a)fedoraproject.org> 3.3.8b-61
- rebuild (gcc5)
Size change: -957 bytes
qt5-qtbase-5.4.0-14.fc22
------------------------
* Wed Mar 04 2015 Kevin Kofler <Kevin(a)tigcc.ticalc.org> - 5.4.0-14
- fix division by zero on malformed BMP files (QTBUG-44547, CVE-2015-0295)
- rebuild for fixed GCC in F22
Size change: 230 bytes
qt5-qtdeclarative-5.4.0-3.fc22
------------------------------
* Mon Feb 16 2015 Rex Dieter <rdieter(a)fedoraproject.org> 5.4.0-3
- rebuild (gcc)
* Sat Feb 14 2015 Ville Skyttä <ville.skytta(a)iki.fi> - 5.4.0-2
- Fix cmake dir ownerhips
Size change: -876 bytes
qt5-qtlocation-5.4.1-2.fc22
---------------------------
* Fri Feb 27 2015 Rex Dieter <rdieter(a)fedoraproject.org> - 5.4.1-2
- rebuild (gcc5)
* Tue Feb 24 2015 Jan Grulich <jgrulich(a)redhat.com> 5.4.1-1
- 5.4.1
* Mon Feb 16 2015 Rex Dieter <rdieter(a)fedoraproject.org> 5.4.0-3
- rebuild (gcc5)
Size change: -1313 bytes
qt5-qtscript-5.4.1-2.fc22
-------------------------
* Fri Feb 27 2015 Rex Dieter <rdieter(a)fedoraproject.org> - 5.4.1-2
- rebuild (gcc5)
* Tue Feb 24 2015 Jan Grulich <jgrulich(a)redhat.com> 5.4.1-1
- 5.4.1
* Mon Feb 16 2015 Rex Dieter <rdieter(a)fedoraproject.org> 5.4.0-2
- rebuild (gcc5)
Size change: 1060 bytes
qt5-qtsensors-5.4.1-2.fc22
--------------------------
* Fri Feb 27 2015 Rex Dieter <rdieter(a)fedoraproject.org> - 5.4.1-2
- rebuild (gcc5)
* Tue Feb 24 2015 Jan Grulich <jgrulich(a)redhat.com> 5.4.1-1
- 5.4.1
* Mon Feb 16 2015 Rex Dieter <rdieter(a)fedoraproject.org> 5.4.0-3
- rebuild (gcc5)
Size change: -1134 bytes
qt5-qtsvg-5.4.1-2.fc22
----------------------
* Fri Feb 27 2015 Rex Dieter <rdieter(a)fedoraproject.org> - 5.4.1-2
- rebuild (gcc5)
* Tue Feb 24 2015 Jan Grulich <jgrulich(a)redhat.com> 5.4.1-1
- 5.4.1
Size change: -797 bytes
qt5-qttools-5.4.1-2.fc22
------------------------
* Fri Feb 27 2015 Rex Dieter <rdieter(a)fedoraproject.org> - 5.4.1-2
- rebuild (gcc5)
* Tue Feb 24 2015 Jan Grulich <jgrulich(a)redhat.com> 5.4.1-1
- 5.4.1
* Thu Feb 19 2015 Rex Dieter <rdieter(a)fedoraproject.org> - 5.4.0-2
- rebuild (gcc5)
Size change: -759 bytes
qt5-qtwebkit-5.4.1-1.fc22
-------------------------
* Tue Feb 24 2015 Jan Grulich <jgrulich(a)redhat.com> 5.4.1-1
- 5.4.1
Size change: 161 bytes
qt5-qtx11extras-5.4.1-2.fc22
----------------------------
* Fri Feb 27 2015 Rex Dieter <rdieter(a)fedoraproject.org> - 5.4.1-2
- rebuild (gcc5)
* Tue Feb 24 2015 Jan Grulich <jgrulich(a)redhat.com> 5.4.1-1
- 5.4.1
Size change: -923 bytes
qt5-qtxmlpatterns-5.4.1-2.fc22
------------------------------
* Fri Feb 27 2015 Rex Dieter <rdieter(a)fedoraproject.org> - 5.4.1-2
- rebuild (gcc5)
* Tue Feb 24 2015 Jan Grulich <jgrulich(a)redhat.com> 5.4.1-1
- 5.4.1
* Mon Feb 16 2015 Rex Dieter <rdieter(a)fedoraproject.org> 5.4.0-2
- rebuild (gcc5)
Size change: -1572 bytes
quake3-1.36-22.svn2102.fc22
---------------------------
* Thu Feb 26 2015 Jon Ciesla <limburgher(a)gmail.com> - 1.36.22.svn2102
- Update speex BR.
* Thu Feb 26 2015 Jon Ciesla <limburgher(a)gmail.com> - 1.36.21.svn2102
- Move argument passing from VM to engine to global variables (rhbz#1018398)
- per Jeff Layton <jlayton(a)poochiereds.net>
Size change: 1987 bytes
rdiff-backup-1.2.8-14.fc22
--------------------------
* Sun Mar 01 2015 Robert Scheck <robert(a)fedoraproject.org> - 1.2.8-14
- Rebuild for librsync 1.0.0 (#1126712)
Size change: -162 bytes
resiprocate-1.9.9-15.fc22
-------------------------
* Thu Feb 26 2015 Daniel Pocock <<daniel(a)pocock.pro> - 1.9.9-15
- Add support for freeradius-client (Closes: #1191894)
Size change: -841 bytes
rpm-ostree-2015.3-5.fc22
------------------------
* Fri Feb 27 2015 Colin Walters <walters(a)redhat.com> - 2015.3-5
- Drop /usr/bin/atomic, now provided by the "atomic" package
Size change: 136 bytes
ruby-2.2.1-9.fc22
-----------------
* Wed Mar 04 2015 Vít Ondruch <vondruch(a)redhat.com> - 2.2.1-9
- Update to Ruby 2.2.1.
Size change: 15986 bytes
scorep-1.3-3.fc22
-----------------
* Mon Jan 19 2015 Marcin Juszkiewicz <mjuszkiewicz(a)redhat.com> - 1.3-3
- update gnu-config files to build on aarch64
Size change: -890 bytes
seahorse-3.15.90-1.fc22
-----------------------
* Thu Feb 26 2015 David King <amigadave(a)amigadave.com> - 3.15.90-1
- Update to 3.15.90
- Update URL
- Use license macro for COPYING and COPYING.LIB
- Use pkgconfig for BuildRequires
- Update man page glob in files section
- Validate AppData in check
Size change: 19703 bytes
simple-scan-3.15.91-1.fc22
--------------------------
* Mon Mar 02 2015 David King <amigadave(a)amigadave.com> - 3.15.91-1
- Update to 3.15.91
- Validate AppData and desktop file during check
Size change: 287 bytes
spamass-milter-0.4.0-1.fc22
---------------------------
* Thu Feb 26 2015 Paul Howarth <paul(a)city-fan.org> - 0.4.0-1
- Update to 0.4.0
- New options:
-C option to change the default reject code
-S option to specify a path to sendmail (for the -x option)
-R option to specify the rejection message
-a option to skip messages that were authenticated
- IPv6 address support
- Syntax clean-ups
- Drop upstreamed syntax, rejection text and IPv6 patches
- Update authuser patch: note that upstream has introduced a -a option that
does pretty much the same as the -I option added by this patch, so this
patch is deprecated and will not be included in builds for Fedora 22 onwards
- Clean up other patches to apply cleanly
* Tue Feb 24 2015 Paul Howarth <paul(a)city-fan.org> - 0.3.2-15
- Add -R option to specify SMTP rejection text (#1131667)
- Drop %defattr, redundant since rpm 4.4
Size change: 27928 bytes
spatialite-tools-4.2.0-8.fc22
-----------------------------
* Thu Feb 26 2015 Jan Stanek <jstanek(a)redhat.com> - 4.2.0-8
- Rebuild for sqlite 3.8.8.3
Size change: -1010 bytes
sqlite-3.8.8.3-1.fc22
---------------------
* Thu Feb 26 2015 Jan Stanek <jstanek(a)redhat.com> - 3.8.8.3-1
- Updated to version 3.8.8.3 (https://sqlite.org/releaselog/3_8_8_3.html)
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 3.8.8-3
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 27104 bytes
srm-ifce-1.22.2-1.fc22
----------------------
* Mon Mar 02 2015 Alejandro Alvarez Ayllon <aalvarez at cern.ch> - 1.22.2-1
- Release srm-ifce 1.22.2
Size change: 5205 bytes
sssd-1.12.4-2.fc22
------------------
* Wed Feb 25 2015 Lukas Slebodnik <lslebodn(a)redhat.com> - 1.12.4-2
- Add support for python3 bindings
- Add requirement to python3 or python3 bindings
- Resolves: rhbz#1014594 - sssd: Support Python 3
Size change: 20891 bytes
stratagus-2.2.7-5.fc22
----------------------
* Thu Feb 26 2015 Hans de Goede <hdegoede(a)redhat.com> - 2.2.7-5
- Rebuilt against compat-tolua++ / fix FTBFS
Size change: -937 bytes
swell-foop-3.15.91-1.fc22
-------------------------
* Mon Mar 02 2015 Yanko Kaneti <yaneti(a)declera.com> - 3.15.91-1
- Update to 3.15.91
Size change: 119 bytes
systemd-219-8.fc22
------------------
* Tue Mar 10 2015 Jan Synáček <jsynacek(a)redhat.com> - 219-8
- Buttons on Lenovo X6* tablets broken (#1198939)
* Fri Mar 06 2015 Michal Schmidt <mschmidt(a)redhat.com> - 219-7
- arm: reenable lto. gcc-5.0.0-0.16 fixed the crash (#1193212)
Size change: -67 bytes
telepathy-farstream-0.6.1-5.fc22
--------------------------------
* Thu Mar 12 2015 David Woodhouse <dwmw2(a)infradead.org> - 0.6.1-5
- Rebuilt against farstream 0.2.7
Size change: 205 bytes
thunderbird-31.5.0-1.fc22
-------------------------
* Tue Feb 24 2015 Jan Horak <jhorak(a)redhat.com> - 31.5.0-1
- Update to 31.5.0
Size change: 220786532 bytes
tracker-1.3.5-1.fc22
--------------------
* Fri Mar 06 2015 David King <amigadave(a)amigadave.com> - 1.3.5-1
- Update to 1.3.5
* Tue Mar 03 2015 David King <amigadave(a)amigadave.com> - 1.3.4-2
- Fix checking for giflib
- Fix tracker-compat script path (#1198166)
* Tue Mar 03 2015 Kalev Lember <kalevlember(a)gmail.com> - 1.3.4-1
- Update to 1.3.4
- Use license macro for COPYING files
* Tue Mar 03 2015 Debarshi Ray <rishi(a)fedoraproject.org> - 1.3.3-2
- Backport upstream patch to fix database migration failures (GNOME #743727)
Size change: 35 bytes
tumbler-0.1.31-1.fc22
---------------------
* Sat Feb 28 2015 Mukundan Ragavan <nonamedotc(a)fedoraproject.org> - 0.1.31-1
- Update to version 0.1.31
Size change: 33889 bytes
udt-4.11-4.fc22
---------------
* Sat Mar 07 2015 Mattias Ellert <mattias.ellert(a)fysast.uu.se> - 4.11-4
- Fix sed substitutions in case of slashes in rpm macros
Size change: -813 bytes
util-linux-2.26-1.fc22
----------------------
* Thu Feb 19 2015 Karel Zak <kzak(a)redhat.com> 2.26-1
- upgrade to stable release 2.26
Size change: 9592 bytes
vim-7.4.640-4.fc22
------------------
* Mon Mar 02 2015 Dave Airlie <airlied(a)redhat.com> 7.4.640-4
- fix vimrc using wrong comment character
* Thu Feb 26 2015 Karsten Hopp <karsten(a)redhat.com> 7.4.640-3
- bump release
* Thu Feb 26 2015 Karsten Hopp <karsten(a)redhat.com> 7.4.640-2
- set background to dark in gnome-terminal, rhbz#1159920
* Wed Feb 25 2015 Karsten Hopp <karsten(a)redhat.com> 7.4.640-1
- patchlevel 640
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 2:7.4.629-2
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 11573 bytes
vinagre-3.15.91-1.fc22
----------------------
* Mon Mar 02 2015 David King <amigadave(a)amigadave.com> - 3.15.91-1
- Update to 3.15.91
- Use license macro for COPYING
Size change: -292365 bytes
vino-3.15.91-1.fc22
-------------------
* Mon Mar 02 2015 David King <amigadave(a)amigadave.com> - 3.15.91-1
- Update to 3.5.91
* Tue Feb 24 2015 David King <amigadave(a)amigadave.com> - 3.15.90-2
- Avoid a critical warning from EggSMClient on startup (#1194174)
- Preserve timestamps during install
Size change: 10507 bytes
vtk-6.1.0-26.fc22
-----------------
* Thu Mar 05 2015 Orion Poplawski <orion(a)cora.nwra.com> - 6.1.0-26
- Add needed vtk-*-devel requires to vtk-devel (bug #1199310)
* Wed Mar 04 2015 Orion Poplawski <orion(a)cora.nwra.com> - 6.1.0-25
- Rebuild for jsoncpp
Size change: -857 bytes
webkitgtk3-2.4.8-5.fc22
-----------------------
* Tue Mar 10 2015 Tomas Popela <tpopela(a)redhat.com> - 2.4.8-5
- Backport fix for use-after-free when destroying frame
* Fri Feb 27 2015 Michael Catanzaro <mcatanzaro(a)gnome.org> - 2.4.8-4
- Add Fedora branding to the user agent
Size change: 425 bytes
webkitgtk4-2.7.91-2.fc22
------------------------
* Wed Mar 04 2015 Michael Catanzaro <mcatanzaro(a)gnome.org> 2.7.91-2
- Add patch to make gnome-online-accounts 3.15.91 not crash
* Tue Mar 03 2015 Tomas Popela <tpopela(a)redhat.com> - 2.7.91-1
- Update to 2.7.91
* Thu Feb 26 2015 Michael Catanzaro <mcatanzaro(a)gnome.org> - 2.7.90-10
- Add Fedora branding to the user agent
* Thu Feb 19 2015 Tomas Popela <tpopela(a)redhat.com> - 2.7.90-9
- Fix the build with cmake 3.2.x
* Thu Feb 19 2015 Tomas Popela <tpopela(a)redhat.com> - 2.7.90-8
- Fix crash in CLoop
- Forgot to reset the release number so continuing with 8
- Decrease the debuginfo verbosity on s390x
* Wed Feb 18 2015 Tomas Popela <tpopela(a)redhat.com> - 2.7.90-7
- Update to 2.7.90
- Add JIT and CLoop fixes
* Mon Feb 16 2015 Michael Catanzaro <mcatanzaro(a)gnome.org> - 2.7.4-7
- Remove disable codec installer patch, not needed in GNOME 3.15.90
Size change: 72027 bytes
weston-1.7.0-2.fc22
-------------------
* Tue Mar 10 2015 Peter Hutterer <peter.hutterer(a)redhat.com> - 1.7.0-2
- Rebuild for libinput soname bump
Size change: 105 bytes
whois-5.2.5-1.fc22
------------------
* Tue Mar 03 2015 Petr Pisar <ppisar(a)redhat.com> - 5.2.5-1
- 5.2.5 bump
Size change: -872 bytes
wireshark-1.12.4-1.fc22
-----------------------
* Thu Mar 05 2015 Peter Hatina <phatina(a)redhat.com> - 1.12.4-1
- Ver. 1.12.4
Size change: 45529 bytes
x2goserver-4.0.1.19-1.fc22
--------------------------
* Tue Feb 24 2015 Orion Poplawski <orion(a)cora.nwra.com> - 4.0.1.19-1
- Update to 4.0.1.19
- Drop Xsession and path patches fixed upstream
Size change: 5342 bytes
xapian-core-1.2.19-3.fc22
-------------------------
* Wed Feb 25 2015 Than Ngo <than(a)redhat.com> 1.2.19-3
- rebuilt against new gcc5
Size change: -998 bytes
xfce-theme-manager-0.3.5-3.fc22
-------------------------------
* Sat Feb 28 2015 Kevin Fenzi <kevin(a)scrye.com> 0.3.5-3
- Rebuild for Xfce 4.12
Size change: -930 bytes
xfce4-appfinder-4.12.0-1.fc22
-----------------------------
* Sat Feb 28 2015 Mukundan Ragavan <nonamedotc(a)fedoraproject.org> - 4.12.0-1
- Update to latest stable release 4.12
- spec cleanup
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 4.10.1-5
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 12503 bytes
xfconf-4.12.0-1.fc22
--------------------
* Sat Feb 28 2015 Mukundan Ragavan <nonamedotc(a)fedoraproject.org> - 4.12.0-1
- Update to stable release 4.12.0
- Fix permissions for installed libraries
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 4.10.0-10
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 24944 bytes
xfdashboard-0.3.9-3.fc22
------------------------
* Sun Mar 01 2015 Mukundan Ragavan <nonamedotc(a)gmail.com> - 0.3.9-3
- Rebuild from Xfce 4.12
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 0.3.9-2
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
* Sat Feb 21 2015 Mukundan Ragavan <nonamedotc(a)fedoraproject.org> - 0.3.9-1
- Updated to 0.3.9
- Translatations added
Size change: 73201 bytes
xfwm4-4.12.0-1.fc22
-------------------
* Sat Feb 28 2015 Mukundan Ragavan <nonamedotc(a)fedoraproject.org> - 4.12.0-1
- Update to latest stable release 4.12.0
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 4.10.1-5
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
Size change: 106119 bytes
xorg-x11-drv-libinput-0.8.0-2.fc22
----------------------------------
* Tue Mar 10 2015 Peter Hutterer <peter.hutterer(a)redhat.com> - 0.8.0-2
- Rebuild for libinput soname bump
* Fri Mar 06 2015 Peter Hutterer <peter.hutterer(a)redhat.com> 0.8.0-1
- xf86-input-libinput 0.8.0
* Thu Mar 05 2015 Peter Hutterer <peter.hutterer(a)redhat.com> 0.7.0-5
- Fix two-finger scrolling speed (#1198467)
* Thu Feb 26 2015 Peter Hutterer <peter.hutterer(a)redhat.com> 0.7.0-4
- Fix property setting patch, first version prevented re-enabling a device.
* Wed Feb 25 2015 Peter Hutterer <peter.hutterer(a)redhat.com> 0.7.0-3
- Fix a crash when setting properties on a disabled device
* Wed Feb 25 2015 Peter Hutterer <peter.hutterer(a)redhat.com> 0.7.0-2
- Fix stack smash on pointer init (#1195905)
* Tue Feb 24 2015 Peter Hutterer <peter.hutterer(a)redhat.com> 0.7.0-1
- xorg-x11-drv-libinput 0.7.0
Size change: 3711 bytes
xorg-x11-server-1.17.1-6.fc22
-----------------------------
* Wed Mar 04 2015 Adam Jackson <ajax(a)redhat.com> 1.17.1-6
- Fix int10 interrupt vector setup
* Mon Mar 02 2015 Dave Airlie <airlied(a)redhat.com> 1.17.1-5
- omg, define something to 0 makes it work, security.
* Mon Mar 02 2015 Dave Airlie <airlied(a)redhat.com> 1.17.1-4
- require lazy relocations to work, remove cement
* Sat Feb 21 2015 Till Maas <opensource(a)till.name> - 1.17.1-3
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-...
* Tue Feb 17 2015 Dave Airlie <airlied(a)redhat.com> 1.17.1-2
- fix regression in SI:localuser handling
Size change: 3171 bytes
xscreensaver-5.32-10.fc22
-------------------------
* Mon Mar 09 2015 Mamoru TASAKA <mtasaka(a)fedoraproject.org> - 1:5.32-10
- pong: adjust paddle position again on new game (bug 1199713)
* Fri Feb 27 2015 Mamoru TASAKA <mtasaka(a)fedoraproject.org> - 1:5.32-9
- pick_font_1: rescue when XftFontOpenXlfd fails correctly
(bug 1195437)
* Tue Feb 10 2015 Mamoru TASAKA <mtasaka(a)fedoraproject.org>
- Remove PATCH202 (fixed by gcc 5.0.0-0.10)
Size change: 780 bytes
xu4-1.1-0.23.20150221svn3087.fc22
---------------------------------
* Tue Feb 24 2015 Jason L Tibbitts III <tibbs(a)math.uh.edu> - 1.1-0.23.20150221svn3087
- Oops, I screwed up and made the version go backwards.
* Sat Feb 21 2015 Jason L Tibbitts III <tibbs(a)math.uh.edu> - 1.1-0.1.20150221svn3087
- Update from SVN.
- Extract higher resulution icon from macos .icns archive.
- Fix a format-security error.
Size change: 999742 bytes
yelp-3.15.91-1.fc22
-------------------
* Mon Mar 02 2015 David King <amigadave(a)amigadave.com> - 3.15.91-1
- Update to 3.15.91
Size change: 5779 bytes
zabbix-2.4.4-1.fc22
-------------------
* Tue Feb 24 2015 Volker Fröhlich <volker27(a)gmx.at> - 2.4.4-1
- New release
Size change: 128230 bytes
Summary:
Added Packages: 38
Removed Packages: 0
Modified Packages: 356
Size of added packages: 83200356 (79 M)
Size change of modified packages: 227882905 (217 M)
Size of removed packages: 0 (0 )
Size change: 311083261 (297 M)
Compose finished at Wed Mar 18 12:56:53 UTC 2015
8 years, 8 months
Fedora 22 Alpha RC2
by Peter Robinson
Fedora 22 Alpha RC2 is available.
Be aware this has a number of issues and is no where near an Alpha
that can be classed as GA but it gets something out there to see if it
will at least install.
It currently only contains a Server product and even then there's a
number of components of the Server product missing. Please test and
report issues to the mailing list or on IRC.
http://ppc.koji.fedoraproject.org/compose/22_Alpha_RC2/22/Server/
8 years, 8 months
Re: F22 on Power schedule and content
by Gustavo Luiz Duarte
CC'ing the public list, as requested.
On 03/17/2015 06:45 PM, Peter Robinson wrote:
> Please send this to the public list, there's absolutely no reason to have direct emails.
>
> Peter
>
>
> On Tue, 2015-03-17 at 15:11 -0300, Gustavo Luiz Duarte wrote:
> > Hi Peter,
> >
> > Could you please help us understand what we can expect from F22 on
> > Power
> > regarding content and dates so IBM can do its planning accordingly?
> >
> > Talking to Dan, sounds like we will be, roughly, 2 weeks behind
> > primary for Alpha and Beta and 1 week behind primary for GA, does
> > that sound reasonable to you?
> >
> > Also, should we expect Server image only, or you think we will be
> > able to deliver also Cloud or Desktop? If any additional image
> > (besides Server) is released, will it be on the same release dates
> > as the Server image or will it have its own schedule?
> >
> > Also, could you please clarify which cloud images are being
> > considered (Atomic/Docker, Openstack, etc.)?
> >
> >
> > []'s Gustavo
> >
>
>
8 years, 8 months
ppc F-22 Branched report: 20150317 changes
by Fedora compose checker
Compose started at Tue Mar 17 11:10:02 UTC 2015
Removed package: purple-microblog-0.3.0-11.fc22
Updated Packages:
e2fsprogs-1.42.12-3.fc22
------------------------
* Tue Feb 24 2015 Eric Sandeen <sandeen(a)redhat.com> 1.42.12-3
- Fix potential buffer overflow in closefs (#1193947, CVE-2015-1572)
- Fix dumpe2fs segfault with no arguments (#1194063)
- Don't require fsck prior to resize2fs -P (#1170803)
* Tue Feb 17 2015 Eric Sandeen <sandeen(a)redhat.com> 1.42.12-2
- Fix use after free (#1192861)
- Fix time-based fsck if set in superblock (e2fsck.conf, #963283)
Size change: 2388 bytes
gegl-0.2.0-21.fc22
------------------
* Thu Dec 04 2014 Kalev Lember <kalevlember(a)gmail.com> - 0.2.0-21
- Fix the build with recent suitesparse versions
Size change: 111 bytes
ghemical-2.99.2-26.fc22
-----------------------
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.99.2-26
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.99.2-25
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
Size change: 3313 bytes
libghemical-2.99.1-28.fc22
--------------------------
* Tue Nov 18 2014 Mamoru TASAKA <mtasaka(a)fedoraproject.org> - 2.99.1-28
- Once revert to the version which is currently buildroot
- Add needed BRs
- Fix Requires for libint api
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.99.1-27
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Mon Dec 23 2013 Susi Lehtola <jussilehtola(a)fedoraproject.org> 2.99.1-26
- Rebuild for new libint.
* Sun Sep 22 2013 Carl Byington <carl(a)five-ten-sg.com> 2.99.1-25
- rebuild for new atlas and blas libraries
Size change: 3749 bytes
nfs-ganesha-2.2.0-0.4rc3.fc22
-----------------------------
* Mon Feb 23 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> 2.2.0-0.4rc3
- 2.2.0-0.4rc3
* Mon Feb 16 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> 2.2.0-0.3rc2
- subpackage Requires: nfs-ganesha = 2.2.0-0.4rc3.fc22
* Mon Feb 16 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> 2.2.0-0.2rc2
- 2.2.0-0.2rc2
Size change: -710 bytes
oz-0.13.0-1.fc22
----------------
* Sat Mar 07 2015 Chris Lalancette <clalancette(a)gmail.com> - 0.13.0-1
- Update to release 0.13.0
Size change: 7444 bytes
powerpc-utils-python-1.2.1-7.fc22
---------------------------------
* Mon Mar 16 2015 Jakub Čajka <jcajka(a)redhat.com> - 1.2.1-7
- Resolves: rhbz#1190597 - CVE-2014-8165 powerpc-utils-python: arbitrary code execution due to unpickling untrusted input
Size change: 6806 bytes
Summary:
Added Packages: 0
Removed Packages: 1
Modified Packages: 7
Size of added packages: 0 (0 )
Size change of modified packages: 23101 (23 k)
Size of removed packages: 95490 (93 k)
Size change: -72389 (-71 k)
Compose finished at Tue Mar 17 12:42:23 UTC 2015
8 years, 8 months