[arch-commits] Commit in (3 files)

Antonio Rojas arojas at archlinux.org
Tue May 3 10:51:34 UTC 2016


    Date: Tuesday, May 3, 2016 @ 12:51:34
  Author: arojas
Revision: 266810

Drop old patches

Modified:
  kalarmcal/trunk/PKGBUILD
Deleted:
  kmplot/trunk/kmplot-isnan.patch
  marble/trunk/marble-isnan.patch

---------------------------------+
 kalarmcal/trunk/PKGBUILD        |    2 -
 kmplot/trunk/kmplot-isnan.patch |   42 ---------------------------------
 marble/trunk/marble-isnan.patch |   47 --------------------------------------
 3 files changed, 1 insertion(+), 90 deletions(-)

Modified: kalarmcal/trunk/PKGBUILD
===================================================================
--- kalarmcal/trunk/PKGBUILD	2016-05-03 10:48:05 UTC (rev 266809)
+++ kalarmcal/trunk/PKGBUILD	2016-05-03 10:51:34 UTC (rev 266810)
@@ -7,7 +7,7 @@
 arch=(i686 x86_64)
 url="https://community.kde.org/KDE_PIM"
 license=(LGPL)
-depends=(kidentitymanagement kholidays kcalcore akonadi-client)
+depends=(kidentitymanagement kholidays kcalcore akonadi)
 makedepends=(extra-cmake-modules kdoctools python boost)
 source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz")
 md5sums=('bf6af8978c99b15677107284a45d3a2e')

Deleted: kmplot/trunk/kmplot-isnan.patch
===================================================================
--- kmplot/trunk/kmplot-isnan.patch	2016-05-03 10:48:05 UTC (rev 266809)
+++ kmplot/trunk/kmplot-isnan.patch	2016-05-03 10:51:34 UTC (rev 266810)
@@ -1,42 +0,0 @@
---- kmplot-15.12.3/kmplot/view.cpp.0	2016-03-11 21:19:48.011194225 +0000
-+++ kmplot-15.12.3/kmplot/view.cpp	2016-03-11 21:20:37.341056493 +0000
-@@ -476,7 +476,7 @@
- 	double x = pixel.x();
- 	double y = pixel.y();
- 	
--	if ( isnan(x) )
-+	if ( std::isnan(x) )
- 	{
- 		xclipflg = true;
- 		x = pixelIfNaN.x();
-@@ -496,14 +496,14 @@
- 	}
- 	else
- 	{
--		if ( isinf(x) == -1 )
-+		if ( std::isinf(x) == -1 )
- 			x = 0;
- 			
--		else if ( isinf(x) == 1 )
-+		else if ( std::isinf(x) == 1 )
- 			x = m_clipRect.right();
- 	}
- 	
--	if ( isnan(y) )
-+	if ( std::isnan(y) )
- 	{
- 		yclipflg = true;
- 		y = pixelIfNaN.y();
-@@ -523,10 +523,10 @@
- 	}
- 	else
- 	{
--		if ( isinf(y) == -1 )
-+		if ( std::isinf(y) == -1 )
- 			y = 0;
- 		
--		else if ( isinf(y) == 1 )
-+		else if ( std::isinf(y) == 1 )
- 			y = m_clipRect.bottom();
- 	}
- 	

Deleted: marble/trunk/marble-isnan.patch
===================================================================
--- marble/trunk/marble-isnan.patch	2016-05-03 10:48:05 UTC (rev 266809)
+++ marble/trunk/marble-isnan.patch	2016-05-03 10:51:34 UTC (rev 266810)
@@ -1,47 +0,0 @@
---- marble-15.12.3/src/plugins/positionprovider/gpsd/GpsdPositionProviderPlugin.cpp.0	2016-03-11 22:27:57.718237558 +0000
-+++ marble-15.12.3/src/plugins/positionprovider/gpsd/GpsdPositionProviderPlugin.cpp	2016-03-11 22:28:06.871536643 +0000
-@@ -76,7 +76,7 @@
- {
-     PositionProviderStatus oldStatus = m_status;
-     GeoDataCoordinates oldPosition = m_position;
--    if ( data.status == STATUS_NO_FIX || isnan( data.fix.longitude ) || isnan( data.fix.latitude ) )
-+    if ( data.status == STATUS_NO_FIX || std::isnan( data.fix.longitude ) || std::isnan( data.fix.latitude ) )
-         m_status = PositionProviderStatusAcquiring;
-     else {
-         m_status = PositionProviderStatusAvailable;
-@@ -88,29 +88,29 @@
- 
-         m_accuracy.level = GeoDataAccuracy::Detailed;
- #if defined( GPSD_API_MAJOR_VERSION ) && ( GPSD_API_MAJOR_VERSION >= 3 )
--        if ( !isnan( data.fix.epx ) && !isnan( data.fix.epy ) ) {
-+        if ( !std::isnan( data.fix.epx ) && !std::isnan( data.fix.epy ) ) {
-             m_accuracy.horizontal = qMax( data.fix.epx, data.fix.epy );
-         }
- #else
--        if ( !isnan( data.fix.eph ) ) {
-+        if ( !std::isnan( data.fix.eph ) ) {
-             m_accuracy.horizontal = data.fix.eph;
-         }
- #endif
--        if ( !isnan( data.fix.epv ) ) {
-+        if ( !std::isnan( data.fix.epv ) ) {
-             m_accuracy.vertical = data.fix.epv;
-         }
- 
--        if( !isnan(data.fix.speed ) )
-+        if( !std::isnan(data.fix.speed ) )
-         {
-             m_speed = data.fix.speed;
-         }
- 
--        if( !isnan( data.fix.track ) )
-+        if( !std::isnan( data.fix.track ) )
-         {
-             m_track = data.fix.track;
-         }
- 
--        if ( !isnan( data.fix.time ) )
-+        if ( !std::isnan( data.fix.time ) )
-         {
-             m_timestamp = QDateTime::fromMSecsSinceEpoch( data.fix.time * 1000 );
-         }



More information about the arch-commits mailing list