mooninite pushed to wine (f21). "Update to 1.7.44"
by notifications@fedoraproject.org
From 8fba487182eec09efa646262ed7b53ebbc66f6ca Mon Sep 17 00:00:00 2001
From: Michael Cronenworth <mike(a)cchtml.com>
Date: Sun, 31 May 2015 13:11:20 -0500
Subject: Update to 1.7.44
diff --git a/.gitignore b/.gitignore
index bfd18ea..839b4ec 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,3 @@
-/wine-1.7.43.tar.bz2
-/wine-1.7.43.tar.bz2.sign
-/wine-staging-1.7.43.tar.gz
+/wine-1.7.44.tar.bz2
+/wine-1.7.44.tar.bz2.sign
+/wine-staging-1.7.44.tar.gz
diff --git a/sources b/sources
index 678d5b0..f8d1129 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
-5158c559dedd9e7668a1fcb9d573b309 wine-1.7.43.tar.bz2
-44d8764ab47ba4f1371f1cd6421ee15b wine-1.7.43.tar.bz2.sign
-62c4e94265e068c064988bee2fc016e9 wine-staging-1.7.43.tar.gz
+62f30f7a6937eb213bcab6d0b94710bc wine-1.7.44.tar.bz2
+5dfad7db7a4a7469b478470b3fcce684 wine-1.7.44.tar.bz2.sign
+4c2c8b7c2c8f5ab3682ec52479a7502c wine-staging-1.7.44.tar.gz
diff --git a/wine-staging-rtlunwindex.patch b/wine-staging-rtlunwindex.patch
deleted file mode 100644
index ad00f08..0000000
--- a/wine-staging-rtlunwindex.patch
+++ /dev/null
@@ -1,76 +0,0 @@
-diff --git a/debian/changelog b/debian/changelog
-index bf71cad..9293125 100644
---- a/debian/changelog
-+++ b/debian/changelog
-@@ -1,3 +1,7 @@
-+wine-staging (1.7.36-1) UNRELEASED; urgency=low
-+ * Update patchset for RtlUnwindEx on x86_64 and fix a second bug.
-+ -- Sebastian Lackner <sebastian(a)fds-team.de> Sun, 15 Feb 2015 22:24:13 +0100
-+
- wine-staging (1.7.36) unstable; urgency=low
- * Fix an incompatibility of patchinstall.sh with non-bash shells under specific situations.
- * Improve dinput-Events patch to be compatible with applications which do not explicitly poll for input.
-diff --git a/patches/ntdll-RtlUnwindEx/0001-ntdll-Fix-check-for-end_frame-in-RtlUnwindEx-on-x86_.patch b/patches/ntdll-RtlUnwindEx/0001-ntdll-Fix-check-for-end_frame-in-RtlUnwindEx-on-x86_.patch
-index 455a7fc..c5e8903 100644
---- a/patches/ntdll-RtlUnwindEx/0001-ntdll-Fix-check-for-end_frame-in-RtlUnwindEx-on-x86_.patch
-+++ b/patches/ntdll-RtlUnwindEx/0001-ntdll-Fix-check-for-end_frame-in-RtlUnwindEx-on-x86_.patch
-@@ -1,18 +1,32 @@
--From 7dd7631b611976b237acc63386b26866e5b4b253 Mon Sep 17 00:00:00 2001
-+From 3c89d2a189c2cc869c7ce81293ab752e3fa57708 Mon Sep 17 00:00:00 2001
- From: Sebastian Lackner <sebastian(a)fds-team.de>
- Date: Sun, 25 Jan 2015 15:46:05 +0100
--Subject: ntdll: Fix check for end_frame in RtlUnwindEx on x86_64.
-+Subject: ntdll: Fix check for end_frame in RtlUnwindEx on x86_64. (rev 2)
-
-+Changes in v2:
-+* Calling wine internal handlers should not mess up the EstablisherFrame.
- ---
-- dlls/ntdll/signal_x86_64.c | 2 +-
-- 1 file changed, 1 insertion(+), 1 deletion(-)
-+ dlls/ntdll/signal_x86_64.c | 5 +++--
-+ 1 file changed, 3 insertions(+), 2 deletions(-)
-
- diff --git a/dlls/ntdll/signal_x86_64.c b/dlls/ntdll/signal_x86_64.c
--index 05581c2..e739cdb 100644
-+index 05581c2..7072569 100644
- --- a/dlls/ntdll/signal_x86_64.c
- +++ b/dlls/ntdll/signal_x86_64.c
--@@ -3178,7 +3178,7 @@ void WINAPI RtlUnwindEx( PVOID end_frame, PVOID target_ip, EXCEPTION_RECORD *rec
-- dispatch.EstablisherFrame = new_context.Rsp;
-+@@ -3167,6 +3167,7 @@ void WINAPI RtlUnwindEx( PVOID end_frame, PVOID target_ip, EXCEPTION_RECORD *rec
-+ }
-+ else /* hack: call builtin handlers registered in the tib list */
-+ {
-++ DWORD64 backup_frame = dispatch.EstablisherFrame;
-+ while ((ULONG64)teb_frame < new_context.Rsp && (ULONG64)teb_frame < (ULONG64)end_frame)
-+ {
-+ TRACE( "found builtin frame %p handler %p\n", teb_frame, teb_frame->Handler );
-+@@ -3175,10 +3176,10 @@ void WINAPI RtlUnwindEx( PVOID end_frame, PVOID target_ip, EXCEPTION_RECORD *rec
-+ teb_frame = __wine_pop_frame( teb_frame );
-+ }
-+ if ((ULONG64)teb_frame == (ULONG64)end_frame && (ULONG64)end_frame < new_context.Rsp) break;
-+- dispatch.EstablisherFrame = new_context.Rsp;
-++ dispatch.EstablisherFrame = backup_frame;
- }
-
- - if (context->Rsp == (ULONG64)end_frame) break;
-@@ -21,5 +35,5 @@ index 05581c2..e739cdb 100644
- }
-
- --
--2.2.1
-+2.2.2
-
-diff --git a/patches/patchinstall.sh b/patches/patchinstall.sh
-index b1ac228..9f8a0fa 100755
---- a/patches/patchinstall.sh
-+++ b/patches/patchinstall.sh
-@@ -2228,7 +2228,7 @@ fi
- if test "$enable_ntdll_RtlUnwindEx" -eq 1; then
- patch_apply ntdll-RtlUnwindEx/0001-ntdll-Fix-check-for-end_frame-in-RtlUnwindEx-on-x86_.patch
- (
-- echo '+ { "Sebastian Lackner", "ntdll: Fix check for end_frame in RtlUnwindEx on x86_64.", 1 },';
-+ echo '+ { "Sebastian Lackner", "ntdll: Fix check for end_frame in RtlUnwindEx on x86_64.", 2 },';
- ) >> "$patchlist"
- fi
-
diff --git a/wine.spec b/wine.spec
index f773a0f..73f2c20 100644
--- a/wine.spec
+++ b/wine.spec
@@ -21,7 +21,7 @@
%endif
Name: wine
-Version: 1.7.43
+Version: 1.7.44
Release: 1%{?dist}
Summary: A compatibility layer for windows applications
@@ -1143,6 +1143,7 @@ fi
%{_libdir}/wine/api-ms-win-core-localregistry-l1-1-0.dll.so
%{_libdir}/wine/api-ms-win-core-memory-l1-1-0.dll.so
%{_libdir}/wine/api-ms-win-core-memory-l1-1-1.dll.so
+%{_libdir}/wine/api-ms-win-core-misc-l1-1-0.dll.so
%{_libdir}/wine/api-ms-win-core-namedpipe-l1-1-0.dll.so
%{_libdir}/wine/api-ms-win-core-namedpipe-l1-2-0.dll.so
%{_libdir}/wine/api-ms-win-core-processenvironment-l1-1-0.dll.so
@@ -1353,6 +1354,7 @@ fi
%{_libdir}/wine/mscat32.dll.so
%{_libdir}/wine/mscoree.dll.so
%{_libdir}/wine/msctf.dll.so
+%{_libdir}/wine/msctfp.dll.so
%{_libdir}/wine/msdaps.dll.so
%{_libdir}/wine/msdmo.dll.so
%{_libdir}/wine/msftedit.dll.so
@@ -1423,7 +1425,6 @@ fi
%{_libdir}/wine/nvcuda.dll.so
%{_libdir}/wine/nvcuvid.dll.so
%endif
-%{_libdir}/wine/null.sys.so
%{_libdir}/wine/objsel.dll.so
%{_libdir}/wine/odbc32.dll.so
%{_libdir}/wine/odbccp32.dll.so
@@ -1866,6 +1867,9 @@ fi
%{_libdir}/wine/opencl.dll.so
%changelog
+* Sun May 31 2015 Michael Cronenworth <mike(a)cchtml.com> 1.7.44-1
+- version upgrade
+
* Mon May 18 2015 Michael Cronenworth <mike(a)cchtml.com> 1.7.43-1
- version upgrade
--
cgit v0.10.2
http://pkgs.fedoraproject.org/cgit/wine.git/commit/?h=f21&id=8fba487182ee...
8 years, 6 months
kalev pushed to gnome-chess (master). "Update to 3.17.2 (..more)"
by notifications@fedoraproject.org
From f18867b51547b4ab91d52a4bf63c10c6ee72119e Mon Sep 17 00:00:00 2001
From: Kalev Lember <kalevlember(a)gmail.com>
Date: Sun, 31 May 2015 23:13:39 +0200
Subject: Update to 3.17.2
... and include new symbolic icon.
diff --git a/.gitignore b/.gitignore
index bd142f5..28d8ccf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -28,3 +28,4 @@
/gnome-chess-3.16.0.tar.xz
/gnome-chess-3.16.1.tar.xz
/gnome-chess-3.17.1.tar.xz
+/gnome-chess-3.17.2.tar.xz
diff --git a/gnome-chess.spec b/gnome-chess.spec
index 6268e8b..40c9242 100644
--- a/gnome-chess.spec
+++ b/gnome-chess.spec
@@ -1,5 +1,5 @@
Name: gnome-chess
-Version: 3.17.1
+Version: 3.17.2
Release: 1%{?dist}
Summary: GNOME Chess game
@@ -65,11 +65,15 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
%{_datadir}/glib-2.0/schemas/org.gnome.chess.gschema.xml
%{_datadir}/gnome-chess
%{_datadir}/icons/hicolor/*/apps/gnome-chess.*
-%{_datadir}/icons/HighContrast/scalable/apps/gnome-chess.svg
+%{_datadir}/icons/hicolor/scalable/apps/gnome-chess-symbolic.svg
%{_mandir}/man6/gnome-chess.6*
%changelog
+* Sun May 31 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.17.2-1
+- Update to 3.17.2
+- Include new symbolic icon
+
* Fri May 01 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.17.1-1
- Update to 3.17.1
diff --git a/sources b/sources
index d80c197..ac5bbd7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e3b579aa90d871d6b5acf75ff432b30d gnome-chess-3.17.1.tar.xz
+c05863640cfb0689543738e541ba3290 gnome-chess-3.17.2.tar.xz
--
cgit v0.10.2
http://pkgs.fedoraproject.org/cgit/gnome-chess.git/commit/?h=master&id=f1...
8 years, 6 months
kalev pushed to gnome-calendar (master). "Update to 3.17.2"
by notifications@fedoraproject.org
From a7682f90993a9172769c70208ed32a13f7b71e47 Mon Sep 17 00:00:00 2001
From: Kalev Lember <kalevlember(a)gmail.com>
Date: Sun, 31 May 2015 23:11:13 +0200
Subject: Update to 3.17.2
diff --git a/.gitignore b/.gitignore
index 8c0bd50..70f3d70 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
/gnome-calendar-3.16.0.tar.xz
/gnome-calendar-3.16.1.tar.xz
/gnome-calendar-3.16.2.tar.xz
+/gnome-calendar-3.17.2.tar.xz
diff --git a/gnome-calendar.spec b/gnome-calendar.spec
index 8458610..6fd928a 100644
--- a/gnome-calendar.spec
+++ b/gnome-calendar.spec
@@ -1,12 +1,12 @@
Name: gnome-calendar
-Version: 3.16.2
+Version: 3.17.2
Release: 1%{?dist}
Summary: Simple and beautiful calendar application designed to fit GNOME 3
License: GPLv3+
URL: https://wiki.gnome.org/Apps/Calendar
-Source0: https://download.gnome.org/sources/%{name}/3.16/%{name}-%{version}.tar.xz
+Source0: https://download.gnome.org/sources/%{name}/3.17/%{name}-%{version}.tar.xz
BuildRequires: intltool
BuildRequires: pkgconfig(gio-2.0)
@@ -77,6 +77,9 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
%{_datadir}/gnome-shell/search-providers/org.gnome.Calendar.search-provider.ini
%changelog
+* Sun May 31 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.17.2-1
+- Update to 3.17.2
+
* Tue May 12 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.16.2-1
- Update to 3.16.2
diff --git a/sources b/sources
index af14691..95baed1 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-987df4b65e1791e4339810b8c0195202 gnome-calendar-3.16.2.tar.xz
+9ed5e12000a729af5daec659a1e5af0a gnome-calendar-3.17.2.tar.xz
--
cgit v0.10.2
http://pkgs.fedoraproject.org/cgit/gnome-calendar.git/commit/?h=master&id...
8 years, 6 months
kalev pushed to gnome-calendar (master). "Set minimum evolution-data-server version"
by notifications@fedoraproject.org
From ddef33a5bece154792e08a899276edef59f00ab8 Mon Sep 17 00:00:00 2001
From: Kalev Lember <kalevlember(a)gmail.com>
Date: Sun, 31 May 2015 23:11:24 +0200
Subject: Set minimum evolution-data-server version
diff --git a/gnome-calendar.spec b/gnome-calendar.spec
index 6fd928a..9b1b2a7 100644
--- a/gnome-calendar.spec
+++ b/gnome-calendar.spec
@@ -1,3 +1,6 @@
+%global edataserver_version 3.17.1
+%global libical_version 1.0-9
+
Name: gnome-calendar
Version: 3.17.2
Release: 1%{?dist}
@@ -13,13 +16,14 @@ BuildRequires: pkgconfig(gio-2.0)
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gtk+-3.0)
BuildRequires: pkgconfig(libecal-1.2)
-BuildRequires: pkgconfig(libedataserver-1.2)
-BuildRequires: libical-devel >= 1.0-9
+BuildRequires: pkgconfig(libedataserver-1.2) >= %{edataserver_version}
+BuildRequires: libical-devel >= %{libical_version}
BuildRequires: /usr/bin/appstream-util
BuildRequires: desktop-file-utils
# no `icaltime_days_in_year` before
-Requires: libical >= 1.0-9
+Requires: evolution-data-server%{?_isa} >= %{edataserver_version}
+Requires: libical%{?_isa} >= %{libical_version}
%description
Calendar is a simple and beautiful calendar application designed to fit
--
cgit v0.10.2
http://pkgs.fedoraproject.org/cgit/gnome-calendar.git/commit/?h=master&id...
8 years, 6 months
kalev pushed to gnome-calculator (f22). "Update to 3.16.1"
by notifications@fedoraproject.org
From a6b311db969333108e765a4be545f98204df3208 Mon Sep 17 00:00:00 2001
From: Kalev Lember <kalevlember(a)gmail.com>
Date: Sun, 31 May 2015 23:05:02 +0200
Subject: Update to 3.16.1
diff --git a/.gitignore b/.gitignore
index 2c8f0db..a7500b6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -32,3 +32,4 @@
/gnome-calculator-3.15.4.tar.xz
/gnome-calculator-3.15.91.tar.xz
/gnome-calculator-3.16.0.tar.xz
+/gnome-calculator-3.16.1.tar.xz
diff --git a/0001-Fix-a-syntax-error-in-desktop-file-keywords-Bosnian-.patch b/0001-Fix-a-syntax-error-in-desktop-file-keywords-Bosnian-.patch
deleted file mode 100644
index 98b4cbf..0000000
--- a/0001-Fix-a-syntax-error-in-desktop-file-keywords-Bosnian-.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From f3fbfcc422e342186c009147c1771ef3b1e16383 Mon Sep 17 00:00:00 2001
-From: Kalev Lember <kalevlember(a)gmail.com>
-Date: Mon, 23 Mar 2015 10:46:38 +0100
-Subject: [PATCH] Fix a syntax error in desktop file keywords Bosnian
- translation
-
----
- po/bs.po | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/po/bs.po b/po/bs.po
-index 8ecd95c..6a66413 100644
---- a/po/bs.po
-+++ b/po/bs.po
-@@ -423,7 +423,7 @@ msgstr "Obavi aritmetičke, naučne ili finansijske proračune"
-
- #: ../data/gnome-calculator.desktop.in.h:3
- msgid "calculation;arithmetic;scientific;financial;"
--msgstr "raču;aritmetika;naučni;finansijski"
-+msgstr "raču;aritmetika;naučni;finansijski;"
-
- #: ../data/gnome-calculator.appdata.xml.in.h:1
- msgid "GNOME Calculator"
---
-2.3.3
-
diff --git a/gnome-calculator.spec b/gnome-calculator.spec
index 6f9c14c..35276f8 100644
--- a/gnome-calculator.spec
+++ b/gnome-calculator.spec
@@ -1,5 +1,5 @@
Name: gnome-calculator
-Version: 3.16.0
+Version: 3.16.1
Release: 1%{?dist}
Summary: A desktop calculator
@@ -8,7 +8,6 @@ License: GPLv3+
URL: https://wiki.gnome.org/Apps/Calculator
#VCS: git:git://git.gnome.org/gcalctool
Source0: https://download.gnome.org/sources/%{name}/3.16/%{name}-%{version}.tar.xz
-Patch0: 0001-Fix-a-syntax-error-in-desktop-file-keywords-Bosnian-.patch
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gtk+-3.0)
@@ -33,7 +32,6 @@ to do its arithmetic to give a high degree of accuracy.
%prep
%setup -q
-%patch0 -p1
%build
@@ -76,6 +74,9 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
%changelog
+* Sun May 31 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.16.1-1
+- Update to 3.16.1
+
* Mon Mar 23 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.16.0-1
- Update to 3.16.0
diff --git a/sources b/sources
index c265a9c..960ff49 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bea1e229695e5afb1a85d9fa81b668c8 gnome-calculator-3.16.0.tar.xz
+37a4d9078b750642388b266f3cb3bcd0 gnome-calculator-3.16.1.tar.xz
--
cgit v0.10.2
http://pkgs.fedoraproject.org/cgit/gnome-calculator.git/commit/?h=f22&id=...
8 years, 6 months
kalev pushed to gnome-calculator (master). "Update to 3.17.2"
by notifications@fedoraproject.org
From 3ac98328ebe80214e60dc5bf99d370dfeb0f486c Mon Sep 17 00:00:00 2001
From: Kalev Lember <kalevlember(a)gmail.com>
Date: Sun, 31 May 2015 22:59:24 +0200
Subject: Update to 3.17.2
diff --git a/.gitignore b/.gitignore
index 2c8f0db..d3a98ea 100644
--- a/.gitignore
+++ b/.gitignore
@@ -32,3 +32,4 @@
/gnome-calculator-3.15.4.tar.xz
/gnome-calculator-3.15.91.tar.xz
/gnome-calculator-3.16.0.tar.xz
+/gnome-calculator-3.17.2.tar.xz
diff --git a/0001-Fix-a-syntax-error-in-desktop-file-keywords-Bosnian-.patch b/0001-Fix-a-syntax-error-in-desktop-file-keywords-Bosnian-.patch
deleted file mode 100644
index 98b4cbf..0000000
--- a/0001-Fix-a-syntax-error-in-desktop-file-keywords-Bosnian-.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From f3fbfcc422e342186c009147c1771ef3b1e16383 Mon Sep 17 00:00:00 2001
-From: Kalev Lember <kalevlember(a)gmail.com>
-Date: Mon, 23 Mar 2015 10:46:38 +0100
-Subject: [PATCH] Fix a syntax error in desktop file keywords Bosnian
- translation
-
----
- po/bs.po | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/po/bs.po b/po/bs.po
-index 8ecd95c..6a66413 100644
---- a/po/bs.po
-+++ b/po/bs.po
-@@ -423,7 +423,7 @@ msgstr "Obavi aritmetičke, naučne ili finansijske proračune"
-
- #: ../data/gnome-calculator.desktop.in.h:3
- msgid "calculation;arithmetic;scientific;financial;"
--msgstr "raču;aritmetika;naučni;finansijski"
-+msgstr "raču;aritmetika;naučni;finansijski;"
-
- #: ../data/gnome-calculator.appdata.xml.in.h:1
- msgid "GNOME Calculator"
---
-2.3.3
-
diff --git a/gnome-calculator.spec b/gnome-calculator.spec
index 6f9c14c..adb0a62 100644
--- a/gnome-calculator.spec
+++ b/gnome-calculator.spec
@@ -1,5 +1,5 @@
Name: gnome-calculator
-Version: 3.16.0
+Version: 3.17.2
Release: 1%{?dist}
Summary: A desktop calculator
@@ -7,8 +7,7 @@ Group: Applications/System
License: GPLv3+
URL: https://wiki.gnome.org/Apps/Calculator
#VCS: git:git://git.gnome.org/gcalctool
-Source0: https://download.gnome.org/sources/%{name}/3.16/%{name}-%{version}.tar.xz
-Patch0: 0001-Fix-a-syntax-error-in-desktop-file-keywords-Bosnian-.patch
+Source0: https://download.gnome.org/sources/%{name}/3.17/%{name}-%{version}.tar.xz
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gtk+-3.0)
@@ -33,16 +32,16 @@ to do its arithmetic to give a high degree of accuracy.
%prep
%setup -q
-%patch0 -p1
%build
-%configure
+%configure --disable-static
make %{?_smp_mflags}
%install
make install DESTDIR=%{buildroot} INSTALL="install -p"
+find %{buildroot} -name '*.la' -delete
%find_lang %{name} --with-gnome --all-name
@@ -65,6 +64,7 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
%doc COPYING NEWS
%{_bindir}/gcalccmd
%{_bindir}/gnome-calculator
+%{_libdir}/gnome-calculator/
%{_libexecdir}/gnome-calculator-search-provider
%{_datadir}/appdata/gnome-calculator.appdata.xml
%{_datadir}/applications/gnome-calculator.desktop
@@ -76,6 +76,9 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
%changelog
+* Sun May 31 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.17.2-1
+- Update to 3.17.2
+
* Mon Mar 23 2015 Kalev Lember <kalevlember(a)gmail.com> - 3.16.0-1
- Update to 3.16.0
diff --git a/sources b/sources
index c265a9c..4fe4a2f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bea1e229695e5afb1a85d9fa81b668c8 gnome-calculator-3.16.0.tar.xz
+5d5aacfc5e77c9aa3e3fce46899170f1 gnome-calculator-3.17.2.tar.xz
--
cgit v0.10.2
http://pkgs.fedoraproject.org/cgit/gnome-calculator.git/commit/?h=master&...
8 years, 6 months
ausil pushed to xorg-x11-drv-armsoc (master). "update to latest it which is 1.3.0"
by notifications@fedoraproject.org
From 73a36dbaf430880c54da1f7ab3b2c059e87cd080 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore <dennis(a)ausil.us>
Date: Sun, 31 May 2015 18:01:27 -0500
Subject: update to latest it which is 1.3.0
diff --git a/.gitignore b/.gitignore
index c8f821e..c3a9f80 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
/xf86-video-armsoc-20140501.tar.bz2
/xf86-video-armsoc-20140504.tar.bz2
/xf86-video-armsoc-20150212.tar.bz2
+/xf86-video-armsoc-20150531.tar.bz2
diff --git a/gcc5.patch b/gcc5.patch
deleted file mode 100644
index ce0f630..0000000
--- a/gcc5.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Index: xf86-video-armsoc-20150212/src/armsoc_dri2.c
-===================================================================
---- xf86-video-armsoc-20150212.orig/src/armsoc_dri2.c
-+++ xf86-video-armsoc-20150212/src/armsoc_dri2.c
-@@ -247,8 +247,8 @@ static Bool create_buffer(DrawablePtr pD
- #if DRI2INFOREC_VERSION >= 6
- else if (FALSE == DRI2SwapLimit(pDraw, pARMSOC->swap_chain_size)) {
- WARNING_MSG(
-- "Failed to set DRI2SwapLimit(%x,%d)",
-- (unsigned int)pDraw, pARMSOC->swap_chain_size);
-+ "Failed to set DRI2SwapLimit(%p,%d)",
-+ pDraw, pARMSOC->swap_chain_size);
- }
- #endif /* DRI2INFOREC_VERSION >= 6 */
- }
diff --git a/sources b/sources
index cd31b65..cf05dc9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-5fa34d8ae433c10036710d00db0886f6 xf86-video-armsoc-20150212.tar.bz2
+9da499c3eaa99c423fea00508b6983ab xf86-video-armsoc-20150531.tar.bz2
diff --git a/xorg-x11-drv-armsoc.spec b/xorg-x11-drv-armsoc.spec
index 2096908..7597a5b 100644
--- a/xorg-x11-drv-armsoc.spec
+++ b/xorg-x11-drv-armsoc.spec
@@ -1,19 +1,18 @@
%define moduledir %(pkg-config xorg-server --variable=moduledir )
%define driverdir %{moduledir}/drivers
-%define gitdate 20150212
+%define gitdate 20150531
%define gitrev .%{gitdate}
Summary: Xorg X11 armsocdrm driver
Name: xorg-x11-drv-armsoc
-Version: 1.1.0
-Release: 2%{?gitrev}%{?dist}
+Version: 1.3.0
+Release: 1%{?gitrev}%{?dist}
URL: http://cgit.freedesktop.org/xorg/driver/xf86-video-armsoc
License: MIT
Group: User Interface/X Hardware Support
Source0: xf86-video-armsoc-%{gitdate}.tar.bz2
Source2: make-git-snapshot.sh
-Patch0: gcc5.patch
ExclusiveArch: %{arm} aarch64
@@ -46,7 +45,6 @@ Exynos 4/5 series ARM devices.
%prep
%setup -q -n xf86-video-armsoc-%{?gitdate:%{gitdate}}%{!?gitdate:%{dirsuffix}}
touch AUTHORS
-%patch0 -p1
%build
%{?gitdate:autoreconf -v --install}
@@ -67,6 +65,9 @@ find $RPM_BUILD_ROOT -regex ".*\.la$" | xargs rm -f --
%{_mandir}/man4/armsoc.4*
%changelog
+* Sun May 31 2015 Dennis Gilmore <dennis(a)ausil.us> - 1.3.0-1.20150531
+- update to latest it which is 1.3.0
+
* Mon May 11 2015 Marcin Juszkiewicz <mjuszkiewicz(a)redhat.com> - 1.1.0-2.20150212
- Handle pointer as a pointer to make gcc happy.
--
cgit v0.10.2
http://pkgs.fedoraproject.org/cgit/xorg-x11-drv-armsoc.git/commit/?h=mast...
8 years, 6 months
kalev pushed to gvfs (master). "Update to 1.25.2"
by notifications@fedoraproject.org
From c7fa5431d4aea3742a605bb8fd19e7395d41176b Mon Sep 17 00:00:00 2001
From: Kalev Lember <kalevlember(a)gmail.com>
Date: Sun, 31 May 2015 22:57:55 +0200
Subject: Update to 1.25.2
diff --git a/gvfs.spec b/gvfs.spec
index dbf64cc..df3dc89 100644
--- a/gvfs.spec
+++ b/gvfs.spec
@@ -2,7 +2,7 @@
Summary: Backends for the gio framework in GLib
Name: gvfs
-Version: 1.25.1
+Version: 1.25.2
Release: 1%{?dist}
License: GPLv3 and LGPLv2+ and BSD and MPLv2.0
Group: System Environment/Libraries
@@ -372,6 +372,9 @@ update-desktop-database >&/dev/null || :
%{_datadir}/installed-tests
%changelog
+* Sun May 31 2015 Kalev Lember <kalevlember(a)gmail.com> - 1.25.2-1
+- Update to 1.25.2
+
* Fri May 01 2015 Kalev Lember <kalevlember(a)gmail.com> - 1.25.1-1
- Update to 1.25.1
diff --git a/sources b/sources
index b202076..f6ac09f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-5a44c68a6313471325d57e2a41f5ac1e gvfs-1.25.1.tar.xz
+5328e0085330a606e52aae4bf39244c7 gvfs-1.25.2.tar.xz
--
cgit v0.10.2
http://pkgs.fedoraproject.org/cgit/gvfs.git/commit/?h=master&id=c7fa5431d...
8 years, 6 months