public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/bbappconf/files/, x11-misc/bbappconf/, profiles/
@ 2017-03-25  8:44 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2017-03-25  8:44 UTC (permalink / raw
  To: gentoo-commits

commit:     0174f3ca744f71e36d93e74feb615454acfd1aa1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 25 08:42:36 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 25 08:44:40 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0174f3ca

x11-misc/bbappconf: Remove last-rited pkg, #609754

 profiles/package.mask                              |  5 --
 x11-misc/bbappconf/Manifest                        |  1 -
 x11-misc/bbappconf/bbappconf-0.0.2.ebuild          | 31 --------
 .../bbappconf/files/bbappconf-0.0.2-asneeded.patch | 89 ----------------------
 .../bbappconf/files/bbappconf-0.0.2-docs.patch     | 14 ----
 .../files/bbappconf-0.0.2-fix-sigsegv.diff         | 18 -----
 x11-misc/bbappconf/metadata.xml                    | 12 ---
 7 files changed, 170 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index b3a695802de..ba761460157 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -269,11 +269,6 @@ dev-vcs/veracity
 # Masked for removal in 30 days. Bug #520890.
 x11-misc/xrmap
 
-# Michael Palimaka <kensington@gentoo.org> (22 Feb 2017)
-# Doesn't work. Dead upstream. Unmaintained.
-# Masked for removal on 30 days. Bug #609754.
-x11-misc/bbappconf
-
 # Andreas K. Hüttel <dilfridge@gentoo.org> (19 Feb 2017)
 # Dead upstream for >3 years. Closed source. Bundles outdated
 # libraries that certainly have known security issues (e.g.,

diff --git a/x11-misc/bbappconf/Manifest b/x11-misc/bbappconf/Manifest
deleted file mode 100644
index 28ee91de360..00000000000
--- a/x11-misc/bbappconf/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST bbappconf-0.0.2.tar.gz 80107 SHA256 90f02de8f9b507e53232c77f179382d1734fa63c2978070c4582dea575434705 SHA512 910ebaff204b3bbed88296b077a50fd061e9dee74703991f8f43079aae736a65f98acafe8b437b6d3f7e021173a5f09a8bd98549b8a63d12718d8f2389284117 WHIRLPOOL 72bfbc597289aaada28c91041f1685a9faac605e3af0635a135f5e73e57f86955a7915366646dd386a4a98b96d18ceab50c70be6e2883a364ece2bc0b7968408

diff --git a/x11-misc/bbappconf/bbappconf-0.0.2.ebuild b/x11-misc/bbappconf/bbappconf-0.0.2.ebuild
deleted file mode 100644
index 6fd93f63d63..00000000000
--- a/x11-misc/bbappconf/bbappconf-0.0.2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools eutils
-
-DESCRIPTION="utility that allows you to specify window properties in blackbox"
-HOMEPAGE="https://sourceforge.net/projects/bbtools"
-SRC_URI="mirror://sourceforge/bbtools/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ppc sparc x86 ~x86-fbsd"
-IUSE="debug"
-
-DOCS=( AUTHORS BUGS ChangeLog NEWS README TODO data/README.bbappconf )
-
-RDEPEND="x11-libs/libX11"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-	epatch "${FILESDIR}"/${P}-fix-sigsegv.diff \
-		"${FILESDIR}"/${P}-asneeded.patch \
-		"${FILESDIR}"/${P}-docs.patch
-	eautoreconf
-}
-
-src_configure() {
-	econf $(use_enable debug)
-}

diff --git a/x11-misc/bbappconf/files/bbappconf-0.0.2-asneeded.patch b/x11-misc/bbappconf/files/bbappconf-0.0.2-asneeded.patch
deleted file mode 100644
index 1a2008218c6..00000000000
--- a/x11-misc/bbappconf/files/bbappconf-0.0.2-asneeded.patch
+++ /dev/null
@@ -1,89 +0,0 @@
-Fixing build with --as-needed
-
-https://bugs.gentoo.org/show_bug.cgi?id=248548
-
---- configure.in
-+++ configure.in
-@@ -5,38 +5,25 @@
- 
- AC_PREFIX_DEFAULT(/usr/local)
- 
--
--
- AC_CHECK_PROGS(regex_cmd, sed)
- if test x$regex_cmd = "x"; then
-  AC_MSG_ERROR([error. sed is required to build the default bbtoolsrc file.])
- fi
- 
--
--dnl get the debug values right
--AC_DEFUN(AC_SET_DEBUG,
--[
-- test "$CFLAGS" = "" && CFLAGS="-g -Wall -DDEBUG"
-- test "$CXXFLAGS" = "" && CXXFLAGS="-g -Wall -DDEBUG"
-- test "$LDFLAGS" = "" && LDFLAGS=""
--])
--
--AC_DEFUN(AC_SET_NODEBUG,
--[
-- test "$CFLAGS" = "" && CFLAGS="-O2 -Wall"
-- test "$CXXFLAGS" = "" && CXXFLAGS="-O2 -Wall"
-- test "$LDFLAGS" = "" && LDFLAGS="-s"
--])
--      
--
-+dnl Check for debug
-+DEBUG=""
-+AC_MSG_CHECKING([whether to enable debug code])
- AC_ARG_ENABLE(debug,[  --enable-debug	create debugging code [default=no]],
--[
--if test $enableval = "no";
-- then AC_SET_NODEBUG
-- else AC_SET_DEBUG
--fi
--],
--AC_SET_NODEBUG)
-+  if test x$enableval = "xyes"; then
-+    AC_MSG_RESULT([yes])
-+    DEBUG="-DDEBUG"
-+  else
-+    AC_MSG_RESULT([no])
-+  fi,
-+  AC_MSG_RESULT([no])
-+  DEBUG=""
-+)
-+AC_SUBST(DEBUG)
- 
- dnl Check for Interlacing
- INTERLACE=""
-@@ -69,15 +56,8 @@
- AC_PATH_X
- AC_PATH_XTRA
- 
--CFLAGS="$CFLAGS $X_CFLAGS"
--CXXFLAGS="$CXXFLAGS $X_CFLAGS"
--LDFLAGS="$LDFLAGS $X_LIBS $X_PRE_LIBS"
--
- dnl Checks for X libraries.
--AC_CHECK_LIB(X11, XOpenDisplay, LDFLAGS="$LDFLAGS -lX11",
--             AC_MSG_ERROR(XOpenDisplay not found in -lX11))
--
--LDFLAGS="$LDFLAGS $X_EXTRA_LIBS"
-+AC_CHECK_LIB(X11, XOpenDisplay,,AC_MSG_ERROR(XOpenDisplay not found in -lX11))
- 
- dnl Checks for header files.
- AC_HEADER_STDC
---- Makefile.am
-+++ Makefile.am
-@@ -1,4 +1,4 @@
--CPPFLAGS =	@CPPFLAGS@  @INTERLACE@ \
-+AM_CPPFLAGS =	@DEBUG@ @INTERLACE@ \
- 		-DGLOBAL_BB=\"$(datadir)/bbtools/bbappconf.bb\" \
- 		-DGLOBAL_NOBB=\"$(datadir)/bbtools/bbappconf.nobb\"
- 
-@@ -18,4 +18,4 @@
- 		  NETInterface.cc NETInterface.hh \
- 		  blackboxstyle.hh
- EXTRA_DIST = BUGS TODO
--bbappconf_LDADD = @X_LIBS@
-+bbappconf_LDADD = @X_PRE_LIBS@ @X_LIBS@ @X_EXTRA_LIBS@

diff --git a/x11-misc/bbappconf/files/bbappconf-0.0.2-docs.patch b/x11-misc/bbappconf/files/bbappconf-0.0.2-docs.patch
deleted file mode 100644
index b92e92faae7..00000000000
--- a/x11-misc/bbappconf/files/bbappconf-0.0.2-docs.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Don't install README to /usr/share/${PN}
-
---- data/Makefile.am
-+++ data/Makefile.am
-@@ -1,8 +1,7 @@
- configdir = $(datadir)/bbtools
- 
- config_DATA =	bbappconf.bb \
--		bbappconf.nobb \
--		README.bbappconf
-+		bbappconf.nobb
- 
- EXTRA_DIST = $(config_DATA)
- 

diff --git a/x11-misc/bbappconf/files/bbappconf-0.0.2-fix-sigsegv.diff b/x11-misc/bbappconf/files/bbappconf-0.0.2-fix-sigsegv.diff
deleted file mode 100644
index 178677389fa..00000000000
--- a/x11-misc/bbappconf/files/bbappconf-0.0.2-fix-sigsegv.diff
+++ /dev/null
@@ -1,18 +0,0 @@
-Files bbappconf-0.0.2.orig/.BaseDisplay.cc.swp and bbappconf-0.0.2/.BaseDisplay.cc.swp differ
-Files bbappconf-0.0.2.orig/.resource.cc.swp and bbappconf-0.0.2/.resource.cc.swp differ
-diff -urN bbappconf-0.0.2.orig/resource.cc bbappconf-0.0.2/resource.cc
---- bbappconf-0.0.2.orig/resource.cc	2005-01-19 09:49:19.000000000 -0500
-+++ bbappconf-0.0.2/resource.cc	2005-01-19 10:09:42.530236696 -0500
-@@ -19,10 +19,12 @@
- // (See the included file COPYING / GPL-2.0)
- //
- 
-+#include <cstdlib>
- #include "resource.hh"
- #include "blackboxstyle.hh"
- 
- Resource::Resource(ToolWindow *toolwindow): BaseResource(toolwindow) {
-+  frame.font = NULL;
-   Load();
- }
- 

diff --git a/x11-misc/bbappconf/metadata.xml b/x11-misc/bbappconf/metadata.xml
deleted file mode 100644
index 49371fa3112..00000000000
--- a/x11-misc/bbappconf/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <!-- maintainer-needed -->
-  <longdescription>
-  bbappconf is a utility that allows you to specify window properties 
-  in Blackbox.
-  </longdescription>
-  <upstream>
-    <remote-id type="sourceforge">bbtools</remote-id>
-  </upstream>
-</pkgmetadata>


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

only message in thread, other threads:[~2017-03-25  8:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-25  8:44 [gentoo-commits] repo/gentoo:master commit in: x11-misc/bbappconf/files/, x11-misc/bbappconf/, profiles/ Michał Górny

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