guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 727e237c21d13de4ae24ee245cf62d9293f5f98a
Author: Andreas Enge <andr...@enge.fr>
AuthorDate: Mon Jul 21 10:35:36 2025 +0200

    gnu: Remove wxwidgets-2.
    
    The package has no dependents, and newer versions are available.
    
    * gnu/packages/wxwidgets.scm (wxwidgets-2): Delete variable.
    
    Change-Id: I9082f528855c51cd554111e169e1be4b8d7eaa21
---
 gnu/packages/wxwidgets.scm | 37 +------------------------------------
 1 file changed, 1 insertion(+), 36 deletions(-)

diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm
index fd78b456e0..c961c29536 100644
--- a/gnu/packages/wxwidgets.scm
+++ b/gnu/packages/wxwidgets.scm
@@ -9,7 +9,7 @@
 ;;; Copyright © 2018, 2020, 2021 Tobias Geerinckx-Rice <m...@tobias.gr>
 ;;; Copyright © 2019 Arun Isaac <arunis...@systemreboot.net>
 ;;; Copyright © 2022 Marius Bakke <mar...@gnu.org>
-;;; Copyright © 2023 Andreas Enge <andr...@enge.fr>
+;;; Copyright © 2023, 2025 Andreas Enge <andr...@enge.fr>
 ;;; Copyright © 2023 Malte Frank Gerdes <malte.f.ger...@gmail.com>
 ;;; Copyright © 2023 Maxim Cournoyer <maxim.courno...@gmail.com>
 ;;; Copyright © 2025 Ekaitz Zarraga <eka...@elenq.tech>
@@ -251,41 +251,6 @@ and many other languages.")
        ((#:configure-flags flags #~'())
         #~(append #$flags '("--with-gtk=2")))))))
 
-(define-public wxwidgets-2
-  (package
-    (inherit wxwidgets)
-    (version "2.8.12")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/wxWidgets/wxWidgets/";
-                           "releases/download/v" version
-                           "/wxGTK-" version ".tar.gz"))
-       (sha256
-        (base32 "1gjs9vfga60mk4j4ngiwsk9h6c7j22pw26m3asxr1jwvqbr8kkqk"))))
-    (inputs
-     `(("gtk" ,gtk+-2)
-       ("libjpeg" ,libjpeg-turbo)
-       ("libtiff" ,libtiff)
-       ("libmspack" ,libmspack)
-       ("sdl" ,sdl)
-       ("unixodbc" ,unixodbc)))
-    (arguments
-     `(#:configure-flags
-       '("--enable-unicode" "--with-regex=sys" "--with-sdl")
-       #:make-flags
-       (list (string-append "LDFLAGS=-Wl,-rpath="
-                            (assoc-ref %outputs "out") "/lib"))
-       ;; No 'check' target.
-       #:tests? #f
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'ignore-narrowing-errors
-           (lambda _
-             (substitute* "configure"
-               (("-Wall") "-Wall -Wno-narrowing"))
-             #t)))))))
-
 (define-public prusa-wxwidgets
   ;; There is no proper tag/release, all patches are in separate branches 
based on
   ;; the wxWidgets release (e.g. this commit is taken from "v3.2.0-patched" 
branch".)

Reply via email to