commit:     f04b214e236955e33955fa7a1d09219d799218ca
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 18 12:20:16 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Feb 18 12:20:16 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f04b214e

x11-misc/flow-pomodoro: Remove old

Package-Manager: portage-2.3.3

 x11-misc/flow-pomodoro/Manifest                    |  1 -
 .../files/flow-pomodoro-1.1.2-compiler.patch       | 30 ----------------------
 x11-misc/flow-pomodoro/flow-pomodoro-1.1.1.ebuild  | 25 ------------------
 3 files changed, 56 deletions(-)

diff --git a/x11-misc/flow-pomodoro/Manifest b/x11-misc/flow-pomodoro/Manifest
index f4a2966a05..6f3e48bc46 100644
--- a/x11-misc/flow-pomodoro/Manifest
+++ b/x11-misc/flow-pomodoro/Manifest
@@ -1,3 +1,2 @@
-DIST flow-pomodoro-1.1.1.tar.gz 684633 SHA256 
311d22dcfe57dd7c236a2632368abdc667f42aaf7f1d713393d9dbbc12c3a855 SHA512 
9a97d553b7a7ec5c32c0b6002e9f194fc297ef3fc18cb41d3ae7ca602d42d1313b1602e094f669f558ab15b7519c880dd12867724d5b2324f6e2d34ee409496d
 WHIRLPOOL 
f3183d0d3542f7fe28f97ed391dcc5e308cb783e27ca6b204623f14cefa722f2f28eda2d40203dbd0ba4c28c490c9bfc7861ba331c40dcd69152e126ec91828a
 DIST flow-pomodoro-1.1.2.tar.gz 686290 SHA256 
96786f4fcb90efadbb129bf40f14cf143f2ea9137101d2c24bdcab00d2357e11 SHA512 
73a37e5c63a14777b21bef61cd81003548119670b74ae9de2eb5fff4cd27f159429c9aded06638bd77e52967a0a2cfb69f4055709ed136b5ef39a4d3ccd90ab7
 WHIRLPOOL 
f51d74579d26565e00cc57b49070f2a1e507299fbada924197963606ed5ce598168a0964ddfb755184227244eff2f97ae6b1d2780c376685b0b5b1faa7192f8b
 DIST flow-pomodoro-1.2.0.tar.gz 661888 SHA256 
7b3389aec5400b027403c86984f432436b8c25f492c9077ba8a09521632daaf7 SHA512 
1f347a679fe85e4751166c6aa8af3fda06c57844c0be7116266b2203d061abd1631cb994c0942f3fea9209064d9a49a230248ac101156132aa66a519438acccc
 WHIRLPOOL 
e532ab2f614819a46949199e3aa00ed8f6d952620f0f6046a874287d26cde904d2879c7b5f1f5e1823ef5e6292f90f9dcf5b3ec72ab5f509083f212f9612fdb2

diff --git a/x11-misc/flow-pomodoro/files/flow-pomodoro-1.1.2-compiler.patch 
b/x11-misc/flow-pomodoro/files/flow-pomodoro-1.1.2-compiler.patch
deleted file mode 100644
index e15e32faa9..0000000000
--- a/x11-misc/flow-pomodoro/files/flow-pomodoro-1.1.2-compiler.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 42022f4989958d87e27d2dd5029d5cf8d0a42efa Mon Sep 17 00:00:00 2001
-From: Sergio Martins <iamser...@gmail.com>
-Date: Sun, 30 Oct 2016 22:50:47 +0000
-Subject: [PATCH] Fix build with older gcc compilers
-
----
- CMakeLists.txt | 10 ++++++++++
- 1 file changed, 10 insertions(+)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 010333f..06a4a77 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -14,6 +14,16 @@ include_directories(${Qt5Gui_INCLUDES})
- 
- set(CMAKE_CXX_FLAGS "${Qt5Gui_EXECUTABLE_COMPILE_FLAGS}")
- 
-+include(CheckCXXCompilerFlag)
-+CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
-+CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
-+if(COMPILER_SUPPORTS_CXX11)
-+    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
-+elseif(COMPILER_SUPPORTS_CXX0X)
-+    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
-+else()
-+    message(STATUS "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. 
Please use a different C++ compiler.")
-+endif()
- 
- add_subdirectory(src)
- add_subdirectory(plugins)

diff --git a/x11-misc/flow-pomodoro/flow-pomodoro-1.1.1.ebuild 
b/x11-misc/flow-pomodoro/flow-pomodoro-1.1.1.ebuild
deleted file mode 100644
index ed26fe5e66..0000000000
--- a/x11-misc/flow-pomodoro/flow-pomodoro-1.1.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="A pomodoro app that blocks distractions while you work"
-HOMEPAGE="https://github.com/iamsergio/flow-pomodoro";
-SRC_URI="https://github.com/iamsergio/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="dev-qt/qtcore:5
-       dev-qt/qtdbus:5
-       dev-qt/qtdeclarative:5
-       dev-qt/qtgui:5
-       dev-qt/qtquickcontrols:5
-       dev-qt/qtnetwork:5
-       dev-qt/qtwidgets:5"
-RDEPEND="${DEPEND}"

Reply via email to