public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/, net-fs/smbtatools/, net-fs/smbtatools/files/
@ 2018-04-04 18:16 Andreas Sturmlechner
  0 siblings, 0 replies; only message in thread
From: Andreas Sturmlechner @ 2018-04-04 18:16 UTC (permalink / raw
  To: gentoo-commits

commit:     28f219533d650ed8effd4511c0746b3d18d579c0
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  4 18:15:18 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Apr  4 18:16:42 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28f21953

net-fs/smbtatools: Remove last-rited package

Closes: https://bugs.gentoo.org/644404

 net-fs/smbtatools/Manifest                         |  1 -
 .../files/smbtatools-1.2.6-fix-cmake.patch         | 38 -----------------
 net-fs/smbtatools/metadata.xml                     | 11 -----
 net-fs/smbtatools/smbtatools-1.2.6-r1.ebuild       | 47 ----------------------
 profiles/package.mask                              |  5 ---
 5 files changed, 102 deletions(-)

diff --git a/net-fs/smbtatools/Manifest b/net-fs/smbtatools/Manifest
deleted file mode 100644
index 0b5d0918322..00000000000
--- a/net-fs/smbtatools/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST smbtatools-1.2.6.tar.bz2 2235106 BLAKE2B 9e73f305e874a76fae0d1eb580b933f5b04847195f4d517f06b8bf087e2051d465fb35fbf530232b9d42f9076aca2f0c1d92dc34f759f9546232961e625aeef3 SHA512 0dc25d8eb65151cb7216b2c417054259a0f415af5857e59239ae90aee93a8a3a43a7a74f5f9d8b2200a47e0c6fc92ac6c58308452075020c35ee6ebcb71dbfcf

diff --git a/net-fs/smbtatools/files/smbtatools-1.2.6-fix-cmake.patch b/net-fs/smbtatools/files/smbtatools-1.2.6-fix-cmake.patch
deleted file mode 100644
index 2b8979b5a38..00000000000
--- a/net-fs/smbtatools/files/smbtatools-1.2.6-fix-cmake.patch
+++ /dev/null
@@ -1,38 +0,0 @@
---- a/CMakeLists.txt	2016-03-31 11:14:33.462962843 -0400
-+++ b/CMakeLists.txt	2016-03-31 11:53:16.319234121 -0400
-@@ -30,7 +30,7 @@
- 	MESSAGE( FATAL_ERROR "ERROR: you need the qt development files and library installed.")
- ENDIF()
- IF (QT_INCLUDE_DIR)
--	INCLUDE_DIRECTORIES($QT_INCLUDE_DIR)
-+	INCLUDE_DIRECTORIES(${QT_INCLUDE_DIR})
- ENDIF()
- 
- 
-@@ -42,7 +42,7 @@
- 	MESSAGE( FATAL_ERROR "ERROR: you need the pango library and headers installed.")
- ENDIF()
- IF (LIBPANGO_INCLUDE_DIRS)
--	INCLUDE_DIRECTORIES($LIBPANGO_INCLUDE_DIRS)
-+	INCLUDE_DIRECTORIES(${LIBPANGO_INCLUDE_DIRS})
- ENDIF()
- 
- #
-@@ -53,7 +53,7 @@
-         MESSAGE( FATAL_ERROR "ERROR: you need the cairo library and headers installed.")
- ENDIF() 
- IF (LIBCAIRO_INCLUDE_DIRS)
--	INCLUDE_DIRECTORIES($LIBCAIRO_INCLUDE_DIRS)
-+	INCLUDE_DIRECTORIES(${LIBCAIRO_INCLUDE_DIRS})
- ENDIF()
- 
- 
-@@ -65,7 +65,7 @@
- 	                MESSAGE( FATAL_ERROR "ERROR: you will need curl development files installed.")
- 		ENDIF()
- 		if (CURL_INCLUDE_DIRS)
--			        INCLUDE_DIRECTORIES($CURL_INCLUDE_DIRS)
-+			        INCLUDE_DIRECTORIES(${CURL_INCLUDE_DIRS})
- 			ENDIF()
- 
- # compile on SunOS

diff --git a/net-fs/smbtatools/metadata.xml b/net-fs/smbtatools/metadata.xml
deleted file mode 100644
index e7f0687d05b..00000000000
--- a/net-fs/smbtatools/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="project">
-    <email>samba@gentoo.org</email>
-    <name>Samba Team</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">hhetter/smbtatools</remote-id>
-  </upstream>
-</pkgmetadata>

diff --git a/net-fs/smbtatools/smbtatools-1.2.6-r1.ebuild b/net-fs/smbtatools/smbtatools-1.2.6-r1.ebuild
deleted file mode 100644
index 1e062b23524..00000000000
--- a/net-fs/smbtatools/smbtatools-1.2.6-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs cmake-utils
-
-DESCRIPTION="Tools for configuration and query of SMB Traffic Analyzer"
-HOMEPAGE="https://github.com/hhetter/smbtatools"
-SRC_URI="http://morelias.org/smbta/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-RDEPEND="
-	dev-db/libdbi
-	>=dev-db/sqlite-3.7.0:3
-	net-fs/samba
-	net-misc/curl
-	sys-libs/ncurses:0=
-	sys-libs/talloc
-	x11-libs/cairo
-	x11-libs/pango
-	dev-qt/qtgui:4
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-"
-RDEPEND+="
-	net-fs/smbtad
-"
-
-DOCS="doc/smbta-guide.html doc/gfx/*.png"
-PATCHES=( "${FILESDIR}"/${P}-fix-cmake.patch )
-
-src_configure() {
-	local PKG_CONFIG=$(tc-getPKG_CONFIG)
-	local mycmakeargs=(
-		-Ddebug=$(usex debug)
-		-DLIBSMBCLIENT_LIBRARIES="$(${PKG_CONFIG} --libs smbclient)"
-		-DLIBSMBCLIENT_INCLUDE_DIRS="$(${PKG_CONFIG} --variable includedir smbclient)"
-	)
-
-	cmake-utils_src_configure
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index 5d3795f6bb9..d81d243b1b9 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -604,11 +604,6 @@ dev-db/maxscale
 # Masked for removal in 30 days. Bug 598651, 635192, 644396
 media-gfx/photivo
 
-# Andreas Sturmlechner <asturm@gentoo.org> (05 Mar 2018)
-# Dead upstream, depends on deprecated Qt4.
-# Masked for removal in 30 days. Bug 644404
-net-fs/smbtatools
-
 # Andreas K. Hüttel <dilfridge@gentoo.org> (03 Mar 2018)
 # Fails to build without rpc support in glibc (bug 631044);
 # no maintainer, requires obsolete hardware. Removal in


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

only message in thread, other threads:[~2018-04-04 18:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-04 18:16 [gentoo-commits] repo/gentoo:master commit in: profiles/, net-fs/smbtatools/, net-fs/smbtatools/files/ Andreas Sturmlechner

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