bowlofeggs pushed to bodhi (f25). "Add a Requires on python2-dnf
(#1366229)."
by notificationsï¼ fedoraproject.org
From 5bd88564958987a942557a8738883802f3b43ea7 Mon Sep 17 00:00:00 2001
From: Randy Barlow <randy(a)electronsweatshop.com>
Date: Wed, 30 Nov 2016 16:18:35 -0500
Subject: Add a Requires on python2-dnf (#1366229).
---
bodhi.spec | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/bodhi.spec b/bodhi.spec
index bdabe9e..498a159 100644
--- a/bodhi.spec
+++ b/bodhi.spec
@@ -3,7 +3,7 @@
Name: bodhi
Version: 0.9.12.2
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: A modular framework that facilitates publishing software updates
Group: Applications/Internet
License: GPLv2+
@@ -44,6 +44,7 @@ Group: Applications/Internet
Requires: koji yum
Requires: python-fedora >= 0.3.5
Requires: python-kitchen
+Requires: python2-dnf
%description client
Client tools for interacting with bodhi
@@ -137,6 +138,9 @@ rm -rf bodhi/tests bodhi/tools/test-bodhi.py
%changelog
+* Wed Nov 30 2016 Randy Barlow <bowlofeggs(a)fedoraproject.org> - 0.9.12.2-6
+- Add a Requires on python2-dnf (#1366229).
+
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0.9.12.2-5
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_...
--
cgit v0.12
http://pkgs.fedoraproject.org/cgit/bodhi.git/commit/?h=f25&id=5bd88564958...
6Â years, 10Â months
stransky pushed to firefox (f23). "Added fix for 'ABORT: X_ShmAttach:
BadAccess' crashes (mozbz#1271100)"
by notificationsï¼ fedoraproject.org
From 5f619866d5617cad80fdc1e38436224befd734f7 Mon Sep 17 00:00:00 2001
From: Martin Stransky <stransky(a)redhat.com>
Date: Wed, 30 Nov 2016 22:02:53 +0100
Subject: Added fix for 'ABORT: X_ShmAttach: BadAccess' crashes (mozbz#1271100)
---
firefox.spec | 10 ++++++++--
mozilla-1271100.patch | 37 +++++++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+), 2 deletions(-)
create mode 100644 mozilla-1271100.patch
diff --git a/firefox.spec b/firefox.spec
index 669ffd7..9f1d693 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -94,7 +94,7 @@
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 50.0.2
-Release: 1%{?pre_tag}%{?dist}
+Release: 2%{?pre_tag}%{?dist}
URL: https://www.mozilla.org/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -139,6 +139,7 @@ Patch406: mozilla-256180.patch
# Rebase Gtk3 widget code to latest trunk to
# fix various rendering problems
Patch407: widget-rebase.patch
+Patch408: mozilla-1271100.patch
# Debian patches
Patch500: mozilla-440908.patch
@@ -284,6 +285,7 @@ cd %{tarballdir}
# Rebase Gtk3 widget code to latest trunk to
# fix various rendering problems
%patch407 -p1 -b .widget-rebase
+%patch408 -p1 -b .1271100
# Debian extension patch
%patch500 -p1 -b .440908
@@ -792,7 +794,11 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
-* Mon Nov 30 2016 Martin Stransky <stransky(a)redhat.com> - 50.0.2-1
+* Wed Nov 30 2016 Martin Stransky <stransky(a)redhat.com> - 50.0.2-2
+- Added fix for "ABORT: X_ShmAttach: BadAccess" crashes
+ (mozbz#1271100)
+
+* Wed Nov 30 2016 Martin Stransky <stransky(a)redhat.com> - 50.0.2-1
- Update to latest upstream (50.0.2)
* Mon Nov 28 2016 Martin Stransky <stransky(a)redhat.com> - 50.0.1-1
diff --git a/mozilla-1271100.patch b/mozilla-1271100.patch
new file mode 100644
index 0000000..ee76024
--- /dev/null
+++ b/mozilla-1271100.patch
@@ -0,0 +1,37 @@
+# HG changeset patch
+# User Lee Salzman <lsalzman(a)mozilla.com>
+# Date 1480470918 18000
+# Tue Nov 29 20:55:18 2016 -0500
+# Node ID ffc92a98adee4c3ebb1f3b8c593e913a74ef6a4a
+# Parent 8d8846f63b74eb930e48b410730ae088e9bdbee8
+work around race in system Cairo's XShm usage
+
+MozReview-Commit-ID: VGee6ungCz
+
+diff --git a/widget/gtk/mozgtk/mozgtk.c b/widget/gtk/mozgtk/mozgtk.c
+--- a/widget/gtk/mozgtk/mozgtk.c
++++ b/widget/gtk/mozgtk/mozgtk.c
+@@ -606,8 +606,23 @@ STUB(gdk_window_set_back_pixmap)
+ STUB(gdk_x11_colormap_foreign_new)
+ STUB(gdk_x11_colormap_get_xcolormap)
+ STUB(gdk_x11_drawable_get_xdisplay)
+ STUB(gdk_x11_drawable_get_xid)
+ STUB(gdk_x11_window_get_drawable_impl)
+ STUB(gdkx_visual_get)
+ STUB(gtk_object_get_type)
+ #endif
++
++#include <X11/Xlib.h>
++// Bug 1271100
++// We need to trick system Cairo into not using the XShm extension due to
++// a race condition in it that results in frequent BadAccess errors. Cairo
++// relies upon XShmQueryExtension to initially detect if XShm is available.
++// So we define our own stub that always indicates XShm not being present.
++// mozgtk loads before libXext/libcairo and so this stub will take priority.
++// Our tree usage goes through xcb and remains unaffected by this.
++MOZ_EXPORT Bool
++XShmQueryExtension(Display* aDisplay)
++{
++ return False;
++}
++
--
cgit v0.12
http://pkgs.fedoraproject.org/cgit/firefox.git/commit/?h=f23&id=5f619866d...
6Â years, 10Â months
stransky pushed to firefox (master). "Added fix for 'ABORT:
X_ShmAttach: BadAccess' crashes (mozbz#1271100)"
by notificationsï¼ fedoraproject.org
From 5f619866d5617cad80fdc1e38436224befd734f7 Mon Sep 17 00:00:00 2001
From: Martin Stransky <stransky(a)redhat.com>
Date: Wed, 30 Nov 2016 22:02:53 +0100
Subject: Added fix for 'ABORT: X_ShmAttach: BadAccess' crashes (mozbz#1271100)
---
firefox.spec | 10 ++++++++--
mozilla-1271100.patch | 37 +++++++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+), 2 deletions(-)
create mode 100644 mozilla-1271100.patch
diff --git a/firefox.spec b/firefox.spec
index 669ffd7..9f1d693 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -94,7 +94,7 @@
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 50.0.2
-Release: 1%{?pre_tag}%{?dist}
+Release: 2%{?pre_tag}%{?dist}
URL: https://www.mozilla.org/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -139,6 +139,7 @@ Patch406: mozilla-256180.patch
# Rebase Gtk3 widget code to latest trunk to
# fix various rendering problems
Patch407: widget-rebase.patch
+Patch408: mozilla-1271100.patch
# Debian patches
Patch500: mozilla-440908.patch
@@ -284,6 +285,7 @@ cd %{tarballdir}
# Rebase Gtk3 widget code to latest trunk to
# fix various rendering problems
%patch407 -p1 -b .widget-rebase
+%patch408 -p1 -b .1271100
# Debian extension patch
%patch500 -p1 -b .440908
@@ -792,7 +794,11 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
-* Mon Nov 30 2016 Martin Stransky <stransky(a)redhat.com> - 50.0.2-1
+* Wed Nov 30 2016 Martin Stransky <stransky(a)redhat.com> - 50.0.2-2
+- Added fix for "ABORT: X_ShmAttach: BadAccess" crashes
+ (mozbz#1271100)
+
+* Wed Nov 30 2016 Martin Stransky <stransky(a)redhat.com> - 50.0.2-1
- Update to latest upstream (50.0.2)
* Mon Nov 28 2016 Martin Stransky <stransky(a)redhat.com> - 50.0.1-1
diff --git a/mozilla-1271100.patch b/mozilla-1271100.patch
new file mode 100644
index 0000000..ee76024
--- /dev/null
+++ b/mozilla-1271100.patch
@@ -0,0 +1,37 @@
+# HG changeset patch
+# User Lee Salzman <lsalzman(a)mozilla.com>
+# Date 1480470918 18000
+# Tue Nov 29 20:55:18 2016 -0500
+# Node ID ffc92a98adee4c3ebb1f3b8c593e913a74ef6a4a
+# Parent 8d8846f63b74eb930e48b410730ae088e9bdbee8
+work around race in system Cairo's XShm usage
+
+MozReview-Commit-ID: VGee6ungCz
+
+diff --git a/widget/gtk/mozgtk/mozgtk.c b/widget/gtk/mozgtk/mozgtk.c
+--- a/widget/gtk/mozgtk/mozgtk.c
++++ b/widget/gtk/mozgtk/mozgtk.c
+@@ -606,8 +606,23 @@ STUB(gdk_window_set_back_pixmap)
+ STUB(gdk_x11_colormap_foreign_new)
+ STUB(gdk_x11_colormap_get_xcolormap)
+ STUB(gdk_x11_drawable_get_xdisplay)
+ STUB(gdk_x11_drawable_get_xid)
+ STUB(gdk_x11_window_get_drawable_impl)
+ STUB(gdkx_visual_get)
+ STUB(gtk_object_get_type)
+ #endif
++
++#include <X11/Xlib.h>
++// Bug 1271100
++// We need to trick system Cairo into not using the XShm extension due to
++// a race condition in it that results in frequent BadAccess errors. Cairo
++// relies upon XShmQueryExtension to initially detect if XShm is available.
++// So we define our own stub that always indicates XShm not being present.
++// mozgtk loads before libXext/libcairo and so this stub will take priority.
++// Our tree usage goes through xcb and remains unaffected by this.
++MOZ_EXPORT Bool
++XShmQueryExtension(Display* aDisplay)
++{
++ return False;
++}
++
--
cgit v0.12
http://pkgs.fedoraproject.org/cgit/firefox.git/commit/?h=master&id=5f6198...
6Â years, 10Â months
tomspur pushed to zeromq2 (master). "Retired as zeromq2 is not
supported upstream anymore."
by notificationsï¼ fedoraproject.org
From 4f8f22c9d37ca7f8b56ffbb53625229c81561f4a Mon Sep 17 00:00:00 2001
From: Thomas Spura <thomas.spura(a)gmail.com>
Date: Wed, 30 Nov 2016 22:00:58 +0100
Subject: Retired as zeromq2 is not supported upstream anymore.
---
.gitignore | 1 -
dead.package | 1 +
sources | 1 -
zeromq2.spec | 201 -----------------------------------------------------------
4 files changed, 1 insertion(+), 203 deletions(-)
delete mode 100644 .gitignore
create mode 100644 dead.package
delete mode 100644 sources
delete mode 100644 zeromq2.spec
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 8cc03f7..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/zeromq-2.2.0.tar.gz
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..47ac863
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Retired as zeromq2 is not supported upstream anymore.
diff --git a/sources b/sources
deleted file mode 100644
index 1fda5c2..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-1b11aae09b19d18276d0717b2ea288f6 zeromq-2.2.0.tar.gz
diff --git a/zeromq2.spec b/zeromq2.spec
deleted file mode 100644
index 862e0ed..0000000
--- a/zeromq2.spec
+++ /dev/null
@@ -1,201 +0,0 @@
-%bcond_without pgm
-
-Name: zeromq2
-Version: 2.2.0
-Release: 15%{?dist}
-Summary: Software library for fast, message-based applications - Version 2
-
-Group: System Environment/Libraries
-License: LGPLv3+
-URL: http://www.zeromq.org
-# VCS: git:http://github.com/zeromq/zeromq2.git
-Source0: http://download.zeromq.org/zeromq-%{version}.tar.gz
-
-BuildRequires: autoconf
-BuildRequires: automake
-BuildRequires: libtool
-
-BuildRequires: glib2-devel
-BuildRequires: libuuid-devel
-%if %{with pgm}
-BuildRequires: openpgm-devel
-%endif
-
-%description
-The 0MQ lightweight messaging kernel is a library which extends the
-standard socket interfaces with features traditionally provided by
-specialized messaging middle-ware products. 0MQ sockets provide an
-abstraction of asynchronous message queues, multiple messaging
-patterns, message filtering (subscriptions), seamless access to
-multiple transport protocols and more.
-
-This package contains the ZeroMQ shared library version 2.
-
-
-%package devel
-Summary: Development files for %{name}
-Group: Development/Libraries
-Requires: %{name}%{?_isa} = %{version}-%{release}
-Conflicts: zeromq-devel%{?_isa}
-Conflicts: zeromq3-devel%{?_isa}
-
-
-%description devel
-The %{name}-devel package contains libraries and header files for
-developing applications that use %{name}.
-
-
-%prep
-%setup -q -n zeromq-%{version}
-
-# Don't turn warnings into errors
-sed -i "s/libzmq_werror=\"yes\"/libzmq_werror=\"no\"/g" \
- configure
-sed -i "s/AC_PROG_LIBTOOL/LT_INIT/g" configure.in
-sed -i "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g" configure.in
-
-# Sed version number of openpgm into configure
-%global openpgm_pc $(basename %{_libdir}/pkgconfig/openpgm*.pc .pc)
-sed -i "s/openpgm-[0-9].[0-9]/%{openpgm_pc}/g" \
- configure*
-
-
-# remove all files in foreign except Makefiles
-rm -v $(find foreign -type f | grep -v Makefile)
-
-
-%build
-autoreconf -fi
-%configure \
-%if %{with pgm}
- --with-system-pgm \
-%endif
- --disable-static \
- --disable-silent-rules
-make %{?_smp_mflags}
-
-
-%install
-make install DESTDIR=%{buildroot} INSTALL="install -p"
-
-# remove *.la
-rm %{buildroot}%{_libdir}/libzmq.la
-
-
-%check
-make check
-
-
-%post -p /sbin/ldconfig
-
-
-%postun -p /sbin/ldconfig
-
-
-%files
-%doc AUTHORS ChangeLog COPYING COPYING.LESSER NEWS README
-%{_libdir}/libzmq.so.*
-
-%files devel
-%{_libdir}/libzmq.so
-%{_libdir}/pkgconfig/libzmq.pc
-%{_includedir}/zmq*
-%{_mandir}/man3/zmq*
-%{_mandir}/man7/zmq*
-
-
-%changelog
-* Fri Feb 05 2016 Fedora Release Engineering <releng(a)fedoraproject.org> - 2.2.0-15
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
-
-* Fri Jun 19 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.2.0-14
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
-
-* Sat May 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 2.2.0-13
-- Rebuilt for GCC 5 C++11 ABI change
-
-* Thu Nov 13 2014 Thomas Spura <tomspur(a)fedoraproject.org> - 2.2.0-12
-- cleaning ups according to review (#1145100)
-- remove %%defattr
-- mention version 2 in summary and description
-- remove obsoleted autotools m4s
-
-* Mon Sep 22 2014 Thomas Spura <tomspur(a)fedoraproject.org> - 2.2.0-11
-- diable silent roules
-- remove obsoletes zeromq-utils
-- devel package conflicts with zeromq-devel
-- remove el5 macros
-
-* Mon Aug 18 2014 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.2.0-10
-- 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.2.0-9
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
-
-* Sun Aug 04 2013 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.2.0-8
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
-
-* Fri May 17 2013 Thomas Spura <tomspur(a)fedoraproject.org> - 2.2.0-7
-- Rebuilt for openpm-5.2 and sed correct version into configure (#963894)
-
-* Wed Mar 27 2013 Thomas Spura <tomspur(a)fedoraproject.org> - 2.2.0-6
-- run autoreconf before configure so aarch64 is supported (#926859)
-
-* Fri Feb 15 2013 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.2.0-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
-
-* Mon Jan 14 2013 Thomas Spura <tomspur(a)fedoraproject.org> - 2.2.0-4
-- delete foreign files with dubious license in %%prep (#892111)
-
-* Mon Dec 24 2012 Thomas Spura <tomspur(a)fedoraproject.org> - 2.2.0-3
-- add bcond_without pgm macro (Jose Pedro Oliveira, #867182)
-- remove bundled pgm
-- build against openpgm
-
-* Sun Jul 22 2012 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.2.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Thu Apr 26 2012 Thomas Spura <tomspur(a)fedoraproject.org> - 2.2.0-1
-- update to 2.2.0
-
-* Sat Jan 7 2012 Thomas Spura <tomspur(a)fedoraproject.org> - 2.1.11-1
-- update to 2.1.11 (as part of rebuilding with gcc-4.7)
-
-* Tue Sep 20 2011 Thomas Spura <tomspur(a)fedoraproject.org> - 2.1.9-1
-- update to 2.1.9
-- add check section
-
-* Wed Apr 6 2011 Thomas Spura <tomspur(a)fedoraproject.org> - 2.1.4-1
-- update to new version (#690199)
-
-* Wed Mar 23 2011 Thomas Spura <tomspur(a)fedoraproject.org> - 2.1.3-1
-- update to new version (#690199)
-- utils subpackage was removed upstream
- (obsolete it)
-
-* Tue Feb 08 2011 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.0.10-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
-
-* Thu Jan 13 2011 Pavel Zhukov <pavel(a)zhukoff.net> - 2.0.10-1
-- update version
-- add rpath delete
-- change includedir filelist
-
-* Fri Aug 27 2010 Thomas Spura <tomspur(a)fedoraproject.org> - 2.0.8-1
-- update to new version
-
-* Fri Jul 23 2010 Thomas Spura <tomspur(a)fedoraproject.org> - 2.0.7-4
-- upstream VCS changed
-- remove buildroot / %%clean
-- change descriptions
-
-* Tue Jul 20 2010 Thomas Spura <tomspur(a)fedoraproject.org> - 2.0.7-3
-- move binaries to seperate utils package
-
-* Sat Jun 12 2010 Thomas Spura <tomspur(a)fedoraproject.org> - 2.0.7-2
-- remove BR: libstdc++-devel
-- move man3 to the devel package
-- change group to System Environment/Libraries
-
-* Sat Jun 12 2010 Thomas Spura <tomspur(a)fedoraproject.org> - 2.0.7-1
-- initial package (based on upstreams example one)
--
cgit v0.12
http://pkgs.fedoraproject.org/cgit/zeromq2.git/commit/?h=master&id=4f8f22...
6Â years, 10Â months
tomspur pushed to zeromq3 (master). "Retired as zeromq3 is not
supported upstream anymore."
by notificationsï¼ fedoraproject.org
From 0124e7ed5a2110ab51f5c10a6ff06330e7e6b6cd Mon Sep 17 00:00:00 2001
From: Thomas Spura <thomas.spura(a)gmail.com>
Date: Wed, 30 Nov 2016 21:58:44 +0100
Subject: Retired as zeromq3 is not supported upstream anymore.
---
.gitignore | 6 --
dead.package | 1 +
sources | 1 -
zeromq3.spec | 207 -----------------------------------------------------------
4 files changed, 1 insertion(+), 214 deletions(-)
delete mode 100644 .gitignore
create mode 100644 dead.package
delete mode 100644 sources
delete mode 100644 zeromq3.spec
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 1868c96..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-/zeromq-3.2.0.tar.gz
-/zeromq-3.2.1-rc2.tar.gz
-/zeromq-3.2.2.tar.gz
-/zeromq-3.2.3.tar.gz
-/zeromq-3.2.4.tar.gz
-/zeromq-3.2.5.tar.gz
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..3fb996d
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Retired as zeromq3 is not supported upstream anymore.
diff --git a/sources b/sources
deleted file mode 100644
index a5a8b3d..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-d4189c152fbdc45b376a30bd643f67fd zeromq-3.2.5.tar.gz
diff --git a/zeromq3.spec b/zeromq3.spec
deleted file mode 100644
index 33d833d..0000000
--- a/zeromq3.spec
+++ /dev/null
@@ -1,207 +0,0 @@
-%bcond_without pgm
-
-Name: zeromq3
-Version: 3.2.5
-Release: 5%{?dist}
-Summary: Software library for fast, message-based applications
-
-Group: System Environment/Libraries
-License: LGPLv3+ with exceptions
-URL: http://www.zeromq.org
-Source0: http://download.zeromq.org/zeromq-%{version}.tar.gz
-BuildRequires: glib2-devel
-BuildRequires: libuuid-devel
-%if %{with pgm}
-BuildRequires: openpgm-devel
-%endif
-
-
-%description
-The 0MQ lightweight messaging kernel is a library which extends the
-standard socket interfaces with features traditionally provided by
-specialized messaging middle-ware products. 0MQ sockets provide an
-abstraction of asynchronous message queues, multiple messaging
-patterns, message filtering (subscriptions), seamless access to
-multiple transport protocols and more.
-
-This package contains the ZeroMQ shared library for versions 3.x.
-
-
-%package devel
-Summary: Development files for %{name}
-Group: Development/Libraries
-Requires: %{name}%{?_isa} = %{version}-%{release}
-Conflicts: zeromq-devel%{?_isa}
-
-
-%description devel
-The %{name}-devel package contains libraries and header files for
-developing applications that use %{name} 3.x.
-
-
-%prep
-%setup -qn zeromq-%{version}
-
-# remove all files in foreign except Makefiles
-rm -v $(find foreign -type f | grep -v Makefile)
-
-
-%build
-%configure \
-%if %{with pgm}
- --with-system-pgm \
-%endif
- --disable-static
-make %{?_smp_mflags}
-
-
-%install
-make install DESTDIR=%{buildroot} INSTALL="install -p"
-
-# remove *.la
-rm %{buildroot}%{_libdir}/libzmq.la
-
-
-%check
-make check \
-%ifarch s390 s390x
- || :
-%else
- %{nil}
-%endif
-
-
-%post -p /sbin/ldconfig
-
-
-%postun -p /sbin/ldconfig
-
-
-%files
-%doc AUTHORS ChangeLog COPYING COPYING.LESSER NEWS README
-%{_libdir}/libzmq.so.*
-
-%files devel
-%{_libdir}/libzmq.so
-%{_libdir}/pkgconfig/libzmq.pc
-%{_includedir}/zmq*
-%{_mandir}/man3/zmq*.3*
-%{_mandir}/man7/zmq*.7*
-
-
-%changelog
-* Tue Nov 08 2016 Filipe Rosset <rosset.filipe(a)gmail.com> - 3.2.5-5
-- Rebuilt to fix FTBFS rhbz #1308265
-
-* Fri Feb 05 2016 Fedora Release Engineering <releng(a)fedoraproject.org> - 3.2.5-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
-
-* Fri Jun 19 2015 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 3.2.5-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
-
-* Sat May 02 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.2.5-2
-- Rebuilt for GCC 5 C++11 ABI change
-
-* Sat Feb 21 2015 Jose Pedro Oliveira <jose.p.oliveira.oss at gmail.com> - 3.2.5-1
-- update to 3.2.5
-
-* Sat Dec 13 2014 Dan Horák <dan[at]danny.cz> - 3.2.4-4
-- ignore test results on s390(x), the timeouts don't work reliably (related #1116795)
-
-* Mon Aug 18 2014 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 3.2.4-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
-
-* Sat Jun 07 2014 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 3.2.4-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
-
-* Fri Sep 20 2013 Jose Pedro Oliveira <jpo at di.uminho.pt> - 3.2.4-1
-- update to 3.2.4
-
-* Thu Aug 8 2013 Thomas Spura <tomspur(a)fedoraproject.org> - 3.2.3-4
-- correct license to contain classpath exceptions (#921384)
-
-* Sun Aug 04 2013 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 3.2.3-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
-
-* Fri May 17 2013 Thomas Spura <tomspur(a)fedoraproject.org> - 3.2.3-2
-- Rebuilt for openpgm-5.2 and sed correct version into configure (#963894)
-
-* Tue May 7 2013 Thomas Spura <tomspur(a)fedoraproject.org> - 3.2.3-1
-- update to 3.2.3 (fixes #914985)
-
-* Fri Feb 15 2013 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 3.2.2-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
-
-* Mon Jan 14 2013 Thomas Spura <tomspur(a)fedoraproject.org> - 3.2.2-3
-- delete foreign files with dubious license in %%prep (#892111)
-
-
-* Fri Dec 14 2012 Thomas Spura <tomspur(a)fedoraproject.org> - 3.2.2-2
-- add bcond_without pgm macro (Jose Pedro Oliveira, #867182)
-- remove bundled pgm
-- add zeromq-3 git repository
-
-* Tue Nov 27 2012 Andrew Niemantsverdriet <andrewniemants(a)gmail.com - 3.2.2-1
-- update to 3.2.2
-
-* Wed Oct 17 2012 Thomas Spura <tomspur(a)fedoraproject.org> - 3.2.1-0.1.rc2
-- update to 3.2.1-rc2 (#867182)
-
-* Fri Oct 12 2012 Thomas Spura <tomspur(a)fedoraproject.org> - 3.2.0-0.3.20121009git1ef63bc
-- remove defattr and rm -rf buildroot
-
-* Wed Oct 10 2012 Thomas Spura <tomspur(a)fedoraproject.org> - 3.2.0-0.2.20121009git1ef63bc
-- delete defattr and remove (>el5) macro to only target el6+ and fc17+
-- conflict with zeromq-devel
-- use proper version
-
-* Wed Oct 10 2012 Thomas Spura <tomspur(a)fedoraproject.org> - 3.2.0-0.1
-- update to 3.2.0 past rc1
-
-* Sun Jul 22 2012 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.2.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Thu Apr 26 2012 Thomas Spura <tomspur(a)fedoraproject.org> - 2.2.0-1
-- update to 2.2.0
-
-* Sat Jan 7 2012 Thomas Spura <tomspur(a)fedoraproject.org> - 2.1.11-1
-- update to 2.1.11 (as part of rebuilding with gcc-4.7)
-
-* Tue Sep 20 2011 Thomas Spura <tomspur(a)fedoraproject.org> - 2.1.9-1
-- update to 2.1.9
-- add check section
-
-* Wed Apr 6 2011 Thomas Spura <tomspur(a)fedoraproject.org> - 2.1.4-1
-- update to new version (#690199)
-
-* Wed Mar 23 2011 Thomas Spura <tomspur(a)fedoraproject.org> - 2.1.3-1
-- update to new version (#690199)
-- utils subpackage was removed upstream
- (obsolete it)
-
-* Tue Feb 08 2011 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.0.10-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
-
-* Thu Jan 13 2011 Pavel Zhukov <pavel(a)zhukoff.net> - 2.0.10-1
-- update version
-- add rpath delete
-- change includedir filelist
-
-* Fri Aug 27 2010 Thomas Spura <tomspur(a)fedoraproject.org> - 2.0.8-1
-- update to new version
-
-* Fri Jul 23 2010 Thomas Spura <tomspur(a)fedoraproject.org> - 2.0.7-4
-- upstream VCS changed
-- remove buildroot / %%clean
-- change descriptions
-
-* Tue Jul 20 2010 Thomas Spura <tomspur(a)fedoraproject.org> - 2.0.7-3
-- move binaries to seperate utils package
-
-* Sat Jun 12 2010 Thomas Spura <tomspur(a)fedoraproject.org> - 2.0.7-2
-- remove BR: libstdc++-devel
-- move man3 to the devel package
-- change group to System Environment/Libraries
-
-* Sat Jun 12 2010 Thomas Spura <tomspur(a)fedoraproject.org> - 2.0.7-1
-- initial package (based on upstreams example one)
--
cgit v0.12
http://pkgs.fedoraproject.org/cgit/zeromq3.git/commit/?h=master&id=0124e7...
6Â years, 10Â months