public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-gfx/scantailor/files/, media-gfx/scantailor/
@ 2017-04-03 17:55 Johannes Huber
  0 siblings, 0 replies; only message in thread
From: Johannes Huber @ 2017-04-03 17:55 UTC (permalink / raw
  To: gentoo-commits

commit:     c2c8c3c26c83247638796fc718e1f7cd8105e68f
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  3 17:55:38 2017 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon Apr  3 17:55:38 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2c8c3c2

media-gfx/scantailor: Remove 0.9.11.1

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 media-gfx/scantailor/Manifest                      |   2 -
 ...cantailor-0.9.11.1-boost-lambda-namespace.patch | 144 ---------------------
 .../files/scantailor-0.9.9-environment_flags.patch |  24 ----
 media-gfx/scantailor/scantailor-0.9.11.1.ebuild    |  54 --------
 4 files changed, 224 deletions(-)

diff --git a/media-gfx/scantailor/Manifest b/media-gfx/scantailor/Manifest
index b0ab6bae868..b81f80b5053 100644
--- a/media-gfx/scantailor/Manifest
+++ b/media-gfx/scantailor/Manifest
@@ -1,3 +1 @@
-DIST scantailor-0.9.11.1-boost-join-moc.patch 53044 SHA256 c00772facafdb696bf0e36ba216050cf3ec5b45c15e0099e6ef4935bffa9ba00 SHA512 77c6ee7988834c8694f9c09182fcdf87bdba64f3e69c9cc9b8347c4980a56c484a4368643f1c608ebbaeb469d4d6bc8d1a62f95fce18bc41dfce68137a457a61 WHIRLPOOL 0e5b04a65a5c47deeea6b3ec192549e50b22825df506bda2b87fbc1aa0254993a33c7c7907af1520c7e0ae4264a9a00b9e92d6114b1aee664408c69bb9bdcf00
-DIST scantailor-0.9.11.1.tar.gz 1190198 SHA256 881647a4172c55a067a7b6687965441cf21176d79d93075b22a373ea9accd8d3 SHA512 cec327fd12144f7cee5043adfee3880c75fb147474e4c3b5166385f7a8f47cb5650ed2df930bbe1f4b8ac2c7229a887ecba1ca105b47b1023f5d3d7d7b54bdb4 WHIRLPOOL c064837bd4d5f4c3fbfa260493f3eccecff59910c934005148975f2f00511539ae0e66535d0a57bbf0458022c8ec249faa7f3df40ed8d89b2683530b885e4f6b
 DIST scantailor-0.9.12.2.tar.gz 1207379 SHA256 1f7b96bbe5179d46e332aea8d51ba50545fe7c510811e51588b6a4919e4feeab SHA512 d98603c5b3dfadeae3bda66d8b5ea085107edf9ee03efd299d50bf88a01f2b1092957f1ed4abe1a5d53b9028b7dec16dc5a8452d1a197fe0f3aaddeff6d02793 WHIRLPOOL 2ab46657538b5d95e2a564aa70775fdac8854136708f482c24c61507af217c75cb8974ace731a87b9a59d7e7da3788b23e28c178099fa479e2e01c3b767eb10c

diff --git a/media-gfx/scantailor/files/scantailor-0.9.11.1-boost-lambda-namespace.patch b/media-gfx/scantailor/files/scantailor-0.9.11.1-boost-lambda-namespace.patch
deleted file mode 100644
index 411341c9d1b..00000000000
--- a/media-gfx/scantailor/files/scantailor-0.9.11.1-boost-lambda-namespace.patch
+++ /dev/null
@@ -1,144 +0,0 @@
-Namespace qualify bind, in order to avoid clashes with boost::placeholder
-Patches taken from FreeBSD:
-https://svnweb.freebsd.org/ports?view=revision&revision=408592
-
---- scantailor-0.9.11.1/filters/deskew/Filter.cpp
-+++ scantailor-0.9.11.1/filters/deskew/Filter.cpp
-@@ -85,9 +85,9 @@
- 	
- 	QDomElement filter_el(doc.createElement("deskew"));
- 	writer.enumPages(
--		bind(
-+		boost::lambda::bind(
- 			&Filter::writePageSettings,
--			this, boost::ref(doc), var(filter_el), _1, _2
-+			this, boost::ref(doc), var(filter_el), boost::lambda::_1, boost::lambda::_2
- 		)
- 	);
- 	
---- scantailor-0.9.11.1/filters/fix_orientation/Filter.cpp
-+++ scantailor-0.9.11.1/filters/fix_orientation/Filter.cpp
-@@ -100,9 +100,9 @@
- 	
- 	QDomElement filter_el(doc.createElement("fix-orientation"));
- 	writer.enumImages(
--		bind(
-+		boost::lambda::bind(
- 			&Filter::writeImageSettings,
--			this, boost::ref(doc), var(filter_el), _1, _2
-+			this, boost::ref(doc), var(filter_el), boost::lambda::_1, boost::lambda::_2
- 		)
- 	);
- 	
---- scantailor-0.9.11.1/filters/output/Filter.cpp
-+++ scantailor-0.9.11.1/filters/output/Filter.cpp
-@@ -93,9 +93,9 @@
- 	
- 	QDomElement filter_el(doc.createElement("output"));
- 	writer.enumPages(
--		bind(
-+		boost::lambda::bind(
- 			&Filter::writePageSettings,
--			this, boost::ref(doc), var(filter_el), _1, _2
-+			this, boost::ref(doc), var(filter_el), boost::lambda::_1, boost::lambda::_2
- 		)
- 	);
- 	
---- scantailor-0.9.11.1/filters/page_layout/Filter.cpp
-+++ scantailor-0.9.11.1/filters/page_layout/Filter.cpp
-@@ -136,9 +136,9 @@
- 	
- 	QDomElement filter_el(doc.createElement("page-layout"));
- 	writer.enumPages(
--		bind(
-+		boost::lambda::bind(
- 			&Filter::writePageSettings,
--			this, boost::ref(doc), var(filter_el), _1, _2
-+			this, boost::ref(doc), var(filter_el), boost::lambda::_1, boost::lambda::_2
- 		)
- 	);
- 	
---- scantailor-0.9.11.1/filters/page_split/Filter.cpp
-+++ scantailor-0.9.11.1/filters/page_split/Filter.cpp
-@@ -110,9 +110,9 @@
- 	);
- 	
- 	writer.enumImages(
--		bind(
-+		boost::lambda::bind(
- 			&Filter::writeImageSettings,
--			this, boost::ref(doc), var(filter_el), _1, _2
-+			this, boost::ref(doc), var(filter_el), boost::lambda::_1, boost::lambda::_2
- 		)
- 	);
- 	
---- scantailor-0.9.11.1/filters/select_content/Filter.cpp
-+++ scantailor-0.9.11.1/filters/select_content/Filter.cpp
-@@ -119,9 +119,9 @@
- 	
- 	QDomElement filter_el(doc.createElement("select-content"));
- 	writer.enumPages(
--		bind(
-+		boost::lambda::bind(
- 			&Filter::writePageSettings,
--			this, boost::ref(doc), var(filter_el), _1, _2
-+			this, boost::ref(doc), var(filter_el), boost::lambda::_1, boost::lambda::_2
- 		)
- 	);
- 	
---- scantailor-0.9.11.1/MainWindow.cpp
-+++ scantailor-0.9.11.1/MainWindow.cpp
-@@ -1898,8 +1898,8 @@
- 		ImageFileInfo image_file_info(file_info, std::vector<ImageMetadata>());
- 
- 		ImageMetadataLoader::Status const status = ImageMetadataLoader::load(
--			files.at(i), bind(&std::vector<ImageMetadata>::push_back,
--			boost::ref(image_file_info.imageInfo()), _1)
-+			files.at(i), boost::lambda::bind(&std::vector<ImageMetadata>::push_back,
-+			boost::ref(image_file_info.imageInfo()), boost::lambda::_1)
- 		);
- 
- 		if (status == ImageMetadataLoader::LOADED) {
-@@ -1921,7 +1921,7 @@
- 	}
- 
- 	// Check if there is at least one DPI that's not OK.
--	if (std::find_if(new_files.begin(), new_files.end(), !bind(&ImageFileInfo::isDpiOK, _1)) != new_files.end()) {
-+	if (std::find_if(new_files.begin(), new_files.end(), !boost::lambda::bind(&ImageFileInfo::isDpiOK, boost::lambda::_1)) != new_files.end()) {
- 
- 		std::auto_ptr<FixDpiDialog> dpi_dialog(new FixDpiDialog(new_files, this));
- 		dpi_dialog->setWindowModality(Qt::WindowModal);
---- scantailor-0.9.11.1/ThumbnailSequence.cpp
-+++ scantailor-0.9.11.1/ThumbnailSequence.cpp
-@@ -491,7 +491,7 @@
- 	m_pSelectionLeader(0)
- {
- 	m_graphicsScene.setContextMenuEventCallback(
--		bind(&Impl::sceneContextMenuEvent, this, _1)
-+		boost::lambda::bind(&Impl::sceneContextMenuEvent, this, boost::lambda::_1)
- 	);
- }
- 
-@@ -605,7 +605,7 @@
- {
- 	ItemsById::iterator const id_it(m_itemsById.find(page_info.id()));
- 	if (id_it != m_itemsById.end()) {
--		m_itemsById.modify(id_it, bind(&Item::pageInfo, _1) = page_info);
-+		m_itemsById.modify(id_it, boost::lambda::bind(&Item::pageInfo, boost::lambda::_1) = page_info);
- 		invalidateThumbnailImpl(id_it);
- 	}
- }
-@@ -725,10 +725,10 @@
- 	// Sort pages in m_itemsInOrder using m_ptrOrderProvider.
- 	if (m_ptrOrderProvider.get()) {
- 		m_itemsInOrder.sort(
--			bind(
-+			boost::lambda::bind(
- 				&PageOrderProvider::precedes, m_ptrOrderProvider.get(),
--				bind(&Item::pageId, _1), bind(&Item::incompleteThumbnail, _1),
--				bind(&Item::pageId, _2), bind(&Item::incompleteThumbnail, _2) 
-+				boost::lambda::bind(&Item::pageId, boost::lambda::_1), bind(&Item::incompleteThumbnail, boost::lambda::_1),
-+				boost::lambda::bind(&Item::pageId, boost::lambda::_2), bind(&Item::incompleteThumbnail, boost::lambda::_2) 
- 			)
- 		);
- 	}

diff --git a/media-gfx/scantailor/files/scantailor-0.9.9-environment_flags.patch b/media-gfx/scantailor/files/scantailor-0.9.9-environment_flags.patch
deleted file mode 100644
index 70d860ec3be..00000000000
--- a/media-gfx/scantailor/files/scantailor-0.9.9-environment_flags.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- cmake/SetDefaultGccFlags.cmake.orig	2010-06-22 14:39:55.000000000 +0300
-+++ cmake/SetDefaultGccFlags.cmake	2010-06-22 14:44:27.000000000 +0300
-@@ -24,21 +24,6 @@
- 		ENDIF(visibility_supported_)
- 		
- 		IF(NOT COMPILER_FLAGS_OVERRIDDEN)
--			# Flags common for all build configurations.
--			SET(
--				CMAKE_C_FLAGS
--				"-Wall -Wno-unused -ffast-math"
--				CACHE STRING "Common C flags for all build configurations." FORCE
--			)
--			SET(
--				CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS}"
--				CACHE STRING "Common C++ flags for all build configurations." FORCE
--			)
--			SET(
--				CMAKE_EXE_LINKER_FLAGS "" CACHE STRING
--				"Common link flags for all build configurations." FORCE
--			)
--		
- 			# Release
- 			SET(
- 				CMAKE_C_FLAGS_RELEASE

diff --git a/media-gfx/scantailor/scantailor-0.9.11.1.ebuild b/media-gfx/scantailor/scantailor-0.9.11.1.ebuild
deleted file mode 100644
index 6b38259a17f..00000000000
--- a/media-gfx/scantailor/scantailor-0.9.11.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit cmake-utils eutils virtualx toolchain-funcs
-
-DESCRIPTION="A interactive post-processing tool for scanned pages"
-HOMEPAGE="http://scantailor.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
-	https://dev.gentoo.org/~soap/distfiles/${P}-boost-join-moc.patch"
-
-LICENSE="GPL-2 GPL-3 public-domain"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="opengl"
-
-RDEPEND=">=media-libs/libpng-1.2.43
-	>=media-libs/tiff-3.9.4
-	sys-libs/zlib
-	virtual/jpeg
-	x11-libs/libXrender
-	dev-qt/qtgui:4
-	opengl? ( dev-qt/qtopengl:4 )"
-DEPEND="${RDEPEND}
-	dev-libs/boost"
-
-src_prepare() {
-	epatch -p1 \
-		"${DISTDIR}/${P}-boost-join-moc.patch" \
-		"${FILESDIR}/${P}-boost-lambda-namespace.patch"
-}
-
-src_configure() {
-	tc-export CXX
-
-	mycmakeargs=(
-		-DCOMPILER_FLAGS_OVERRIDDEN=ON
-		$(cmake-utils_use_enable opengl)
-	)
-
-	cmake-utils_src_configure
-}
-
-src_test() {
-	cd "${CMAKE_BUILD_DIR}" || die
-	Xemake test
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	newicon resources/appicon.svg ${PN}.svg
-	make_desktop_entry ${PN} "Scan Tailor"
-}


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-04-03 17:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-03 17:55 [gentoo-commits] repo/gentoo:master commit in: media-gfx/scantailor/files/, media-gfx/scantailor/ Johannes Huber

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox