Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 09/13] torsmo: remove deprecated package
Date: Sat, 15 Oct 2016 16:51:03 +0200	[thread overview]
Message-ID: <20161015145107.18264-10-arnout@mind.be> (raw)
In-Reply-To: <20161015145107.18264-1-arnout@mind.be>

We will remove BR2_DEPRECATED, so remove this deprecated package.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 Config.in.legacy           |  7 +++++++
 package/Config.in          |  1 -
 package/torsmo/Config.in   | 11 -----------
 package/torsmo/torsmo.hash |  2 --
 package/torsmo/torsmo.mk   | 18 ------------------
 5 files changed, 7 insertions(+), 32 deletions(-)
 delete mode 100644 package/torsmo/Config.in
 delete mode 100644 package/torsmo/torsmo.hash
 delete mode 100644 package/torsmo/torsmo.mk

diff --git a/Config.in.legacy b/Config.in.legacy
index 1fcedfe..a372052 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -145,6 +145,13 @@ endif
 ###############################################################################
 comment "Legacy options removed in 2016.11"
 
+config BR2_PACKAGE_TORSMO
+	bool "torsmo removed"
+	select BR2_LEGACY
+	help
+	  torsmo has been unmaintained for a long time, and nobody
+	  seems to be interested in it.
+
 config BR2_PACKAGE_SSTRIP
 	bool "sstrip removed"
 	select BR2_LEGACY
diff --git a/package/Config.in b/package/Config.in
index 47c0801..0a17ce0 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -305,7 +305,6 @@ comment "X applications"
 	source "package/qt-webkit-kiosk/Config.in"
 	source "package/rdesktop/Config.in"
 	source "package/synergy/Config.in"
-	source "package/torsmo/Config.in"
 	source "package/wmctrl/Config.in"
 	source "package/x11vnc/Config.in"
 	source "package/xdotool/Config.in"
diff --git a/package/torsmo/Config.in b/package/torsmo/Config.in
deleted file mode 100644
index 5c18ac6..0000000
--- a/package/torsmo/Config.in
+++ /dev/null
@@ -1,11 +0,0 @@
-config BR2_PACKAGE_TORSMO
-	bool "torsmo"
-	depends on BR2_DEPRECATED_SINCE_2015_11
-	depends on BR2_PACKAGE_XORG7
-	depends on BR2_USE_MMU # fork()
-	select BR2_PACKAGE_XLIB_LIBX11
-	select BR2_PACKAGE_XLIB_LIBXEXT
-	help
-	  Torsmo is a system monitor that sits in the corner of your desktop.
-
-	  http://mirror.egtvedt.no/avr32linux.org/twiki/pub/Main/Torsmo
diff --git a/package/torsmo/torsmo.hash b/package/torsmo/torsmo.hash
deleted file mode 100644
index 8bbf9dc..0000000
--- a/package/torsmo/torsmo.hash
+++ /dev/null
@@ -1,2 +0,0 @@
-# Locally calculated
-sha256 6a6bc82e71c841ba9359f0ffe370e57ef7b04b49a448252bb0c1c28fc10e964c  torsmo-0.18.tar.gz
diff --git a/package/torsmo/torsmo.mk b/package/torsmo/torsmo.mk
deleted file mode 100644
index 96a7976..0000000
--- a/package/torsmo/torsmo.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-################################################################################
-#
-# torsmo
-#
-################################################################################
-
-TORSMO_VERSION = 0.18
-TORSMO_SITE = http://mirror.egtvedt.no/avr32linux.org/twiki/pub/Main/Torsmo
-TORSMO_LICENSE = BSD-3c
-TORSMO_LICENSE_FILES = COPYING
-
-# help2man doesn't work when cross compiling
-TORSMO_CONF_ENV = ac_cv_path_HELP2MAN=''
-TORSMO_CONF_OPTS = --x-includes="-I$(STAGING_DIR)/usr/include/X11" --x-libraries="-I$(STAGING_DIR)/usr/lib" --with-x
-
-TORSMO_DEPENDENCIES = xlib_libX11 xlib_libXext
-
-$(eval $(autotools-package))
-- 
2.9.3

  parent reply	other threads:[~2016-10-15 14:51 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-15 14:50 [Buildroot] Deprecate BR2_DEPRECATED Arnout Vandecappelle
2016-10-15 14:50 ` [Buildroot] [PATCH 01/13] configs/freescale_p1010rdb_pa: remove U-Boot build Arnout Vandecappelle
2016-10-15 18:01   ` Peter Korsgaard
2016-10-15 14:50 ` [Buildroot] [PATCH 02/13] configs/freescale_mpc8315erdb: " Arnout Vandecappelle
2016-10-15 18:02   ` Peter Korsgaard
2016-10-15 14:50 ` [Buildroot] [PATCH 03/13] binutils: remove deprecated 2.24.X Arnout Vandecappelle
2016-10-15 18:04   ` Peter Korsgaard
2016-10-15 14:50 ` [Buildroot] [PATCH 04/13] gcc: remove deprecated 4.7.x Arnout Vandecappelle
2016-10-15 15:18   ` Thomas Petazzoni
2016-10-15 16:28     ` Arnout Vandecappelle
2016-10-15 19:26   ` Peter Korsgaard
2016-10-15 14:50 ` [Buildroot] [PATCH 05/13] ipkg: remove deprecated package Arnout Vandecappelle
2016-10-15 20:57   ` Peter Korsgaard
2016-10-15 14:51 ` [Buildroot] [PATCH 06/13] kodi-addon-xvdr: " Arnout Vandecappelle
2016-10-15 21:00   ` Peter Korsgaard
2016-10-15 14:51 ` [Buildroot] [PATCH 07/13] linux-headers: remove deprecated version 4.2 and 4.3 Arnout Vandecappelle
2016-10-15 21:00   ` Peter Korsgaard
2016-10-15 14:51 ` [Buildroot] [PATCH 08/13] sstrip: remove deprecated package Arnout Vandecappelle
2016-10-15 21:02   ` Peter Korsgaard
2016-10-15 14:51 ` Arnout Vandecappelle [this message]
2016-10-15 21:03   ` [Buildroot] [PATCH 09/13] torsmo: " Peter Korsgaard
2016-10-15 14:51 ` [Buildroot] [PATCH 10/13] webkitgtk24: " Arnout Vandecappelle
2016-10-15 21:04   ` Peter Korsgaard
2016-10-15 14:51 ` [Buildroot] [PATCH 11/13] wvdial: " Arnout Vandecappelle
2016-10-15 21:05   ` Peter Korsgaard
2016-10-15 14:51 ` [Buildroot] [PATCH 12/13] wvstreams: " Arnout Vandecappelle
2016-10-15 21:05   ` Peter Korsgaard
2016-10-15 14:51 ` [Buildroot] [PATCH 13/13] Remove BR2_DEPRECATED Arnout Vandecappelle
2016-10-15 21:07   ` Peter Korsgaard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161015145107.18264-10-arnout@mind.be \
    --to=arnout@mind.be \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox