From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 18 May 2026 09:55:55 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1wOspP-0013X9-2f for lore@lore.pengutronix.de; Mon, 18 May 2026 09:55:55 +0200 Received: from [127.0.0.1] (helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1wOspO-0001hk-RS; Mon, 18 May 2026 09:55:54 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1wOsnf-0003wi-7J; Mon, 18 May 2026 09:54:07 +0200 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1wOsne-000YTB-1v; Mon, 18 May 2026 09:54:07 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.98.2) (envelope-from ) id 1wOsnf-00000000DZe-0Rsy; Mon, 18 May 2026 09:54:07 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Mon, 18 May 2026 09:54:07 +0200 Message-ID: <20260518075407.52171-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260504125317.64589-1-t.scherer@eckelmann.de> References: <20260504125317.64589-1-t.scherer@eckelmann.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] sdl_image: Remove after one year in staging X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Thorsten Scherer Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as b0e8123660cbfd1a957917d710028d1c25c2e5b3. Michael [sent from post-receive hook] On Mon, 18 May 2026 09:54:06 +0200, Thorsten Scherer wrote: > Signed-off-by: Thorsten Scherer > Message-Id: <20260504125317.64589-1-t.scherer@eckelmann.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/sdl_image.in b/rules/sdl_image.in > deleted file mode 100644 > index b003a94729c3..000000000000 > --- a/rules/sdl_image.in > +++ /dev/null > @@ -1,58 +0,0 @@ > -## SECTION=staging > -## old section: > -### SECTION=multimedia_sdl > - > -menuconfig SDL_IMAGE > - tristate > - select SDL > - prompt "SDL image " > - select LIBPNG if SDL_IMAGE__PNG > - select LIBJPEG if SDL_IMAGE__JPG > - select LIBTIFF if SDL_IMAGE__TIF > - help > - This is a simple library to load images of various > - formats as SDL surfaces. This library currently supports > - BMP, PPM, PCX, GIF, JPEG, PNG, TIFF, and XPM formats. > - > - STAGING: remove in PTXdist 2026.03.0 > - Obsolete and replaced by SDL2. > - > -if SDL_IMAGE > - > -config SDL_IMAGE__BMP > - bool "bmp support" > - > -config SDL_IMAGE__GIF > - bool "gif support" > - > -config SDL_IMAGE__JPG > - bool "jpeg support" > - > -config SDL_IMAGE__LBM > - bool "lbm support" > - > -config SDL_IMAGE__PCX > - bool "pcx support" > - > -config SDL_IMAGE__PNG > - bool "png support" > - > -config SDL_IMAGE__PNM > - bool "pnm support" > - > -config SDL_IMAGE__TGA > - bool "tga support" > - > -config SDL_IMAGE__TIF > - bool "tiff support" > - > -config SDL_IMAGE__XCF > - bool "xcf support" > - > -config SDL_IMAGE__XPM > - bool "xpm support" > - > -config SDL_IMAGE__XV > - bool "xv support" > - > -endif > diff --git a/rules/sdl_image.make b/rules/sdl_image.make > deleted file mode 100644 > index 5c980c8d6df8..000000000000 > --- a/rules/sdl_image.make > +++ /dev/null > @@ -1,73 +0,0 @@ > -# -*-makefile-*- > -# > -# Copyright (C) 2006 by Erwin Rol > -# > -# For further information about the PTXdist project and license conditions > -# see the README file. > -# > - > -# > -# We provide this package > -# > -PACKAGES-$(PTXCONF_SDL_IMAGE) += sdl_image > - > -# > -# Paths and names > -# > -SDL_IMAGE_VERSION := 1.2.12 > -SDL_IMAGE_MD5 := a0f9098ebe5400f0bdc9b62e60797ecb > -SDL_IMAGE := SDL_image-$(SDL_IMAGE_VERSION) > -SDL_IMAGE_SUFFIX := tar.gz > -SDL_IMAGE_URL := https://www.libsdl.org/projects/SDL_image/release/$(SDL_IMAGE).$(SDL_IMAGE_SUFFIX) > -SDL_IMAGE_SOURCE := $(SRCDIR)/$(SDL_IMAGE).$(SDL_IMAGE_SUFFIX) > -SDL_IMAGE_DIR := $(BUILDDIR)/$(SDL_IMAGE) > -SDL_IMAGE_LICENSE := LGPL-2.1-only > - > -# ---------------------------------------------------------------------------- > -# Prepare > -# ---------------------------------------------------------------------------- > - > -# > -# autoconf > -# > -SDL_IMAGE_CONF_TOOL := autoconf > -SDL_IMAGE_CONF_OPT := \ > - $(CROSS_AUTOCONF_USR) \ > - --with-sdl-prefix=$(SYSROOT)/usr \ > - --disable-sdltest \ > - --disable-jpg-shared \ > - --disable-png-shared \ > - --disable-tif-shared \ > - --$(call ptx/endis, PTXCONF_SDL_IMAGE__BMP)-bmp \ > - --$(call ptx/endis, PTXCONF_SDL_IMAGE__GIF)-gif \ > - --$(call ptx/endis, PTXCONF_SDL_IMAGE__JPG)-jpg \ > - --$(call ptx/endis, PTXCONF_SDL_IMAGE__LBM)-lbm \ > - --$(call ptx/endis, PTXCONF_SDL_IMAGE__PCX)-pcx \ > - --$(call ptx/endis, PTXCONF_SDL_IMAGE__PNG)-png \ > - --$(call ptx/endis, PTXCONF_SDL_IMAGE__PNM)-pnm \ > - --$(call ptx/endis, PTXCONF_SDL_IMAGE__TGA)-tga \ > - --$(call ptx/endis, PTXCONF_SDL_IMAGE__TIF)-tif \ > - --$(call ptx/endis, PTXCONF_SDL_IMAGE__XCF)-xcf \ > - --$(call ptx/endis, PTXCONF_SDL_IMAGE__XPM)-xpm \ > - --$(call ptx/endis, PTXCONF_SDL_IMAGE__XV)-xv > - > -# ---------------------------------------------------------------------------- > -# Target-Install > -# ---------------------------------------------------------------------------- > - > -$(STATEDIR)/sdl_image.targetinstall: > - @$(call targetinfo) > - > - @$(call install_init, sdl_image) > - @$(call install_fixup, sdl_image,PRIORITY,optional) > - @$(call install_fixup, sdl_image,SECTION,base) > - @$(call install_fixup, sdl_image,AUTHOR,"Robert Schwebel ") > - @$(call install_fixup, sdl_image,DESCRIPTION,missing) > - > - @$(call install_lib, sdl_image, 0, 0, 0644, libSDL_image-1.2) > - > - @$(call install_finish, sdl_image) > - > - @$(call touch) > - > -# vim: syntax=make