lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

manaplus: drop (#436639)

authored by isabelroses.com and committed by

GitHub 2a9dc67d 20e7df47

+1 -136
-25
pkgs/by-name/ma/manaplus/0001-libxml2-const-ptr-and-missing-include.patch
··· 1 - diff --git a/src/utils/dumplibs.cpp b/src/utils/dumplibs.cpp 2 - index 4215d6183..2d410f150 100644 3 - --- a/src/utils/dumplibs.cpp 4 - +++ b/src/utils/dumplibs.cpp 5 - @@ -140,7 +140,7 @@ void dumpLibs() 6 - LIBXML_TEST_VERSION 7 - #endif // LIBXML_TEST_VERSION 8 - #ifdef ENABLE_LIBXML 9 - - const char **xmlVersion = __xmlParserVersion(); 10 - + const char * const *xmlVersion = __xmlParserVersion(); 11 - if (xmlVersion != nullptr) 12 - logger->log(" libxml2: %s", *xmlVersion); 13 - #endif // ENABLE_LIBXML 14 - diff --git a/src/utils/xml/libxml.inc b/src/utils/xml/libxml.inc 15 - index c60abd095..cf4c845a9 100644 16 - --- a/src/utils/xml/libxml.inc 17 - +++ b/src/utils/xml/libxml.inc 18 - @@ -24,6 +24,7 @@ 19 - 20 - #ifdef ENABLE_LIBXML 21 - 22 - +#include <libxml/parser.h> 23 - #include <libxml/xmlwriter.h> 24 - 25 - __XML_XMLWRITER_H__
-30
pkgs/by-name/ma/manaplus/0002-missing-ctime-include.patch
··· 1 - diff --git a/src/progs/dyecmd/client.cpp b/src/progs/dyecmd/client.cpp 2 - index 6321da0d2..bb655519b 100644 3 - --- a/src/progs/dyecmd/client.cpp 4 - +++ b/src/progs/dyecmd/client.cpp 5 - @@ -86,9 +86,7 @@ PRAGMA48(GCC diagnostic pop) 6 - #include <sys/time.h> 7 - #include "fs/specialfolder.h" 8 - #undef ERROR 9 - -#endif // WIN32 10 - - 11 - -#ifdef __clang__ 12 - +#else 13 - #include <ctime> 14 - #endif // __clang__ 15 - 16 - diff --git a/src/resources/wallpaper.cpp b/src/resources/wallpaper.cpp 17 - index 2df412b7d..1658e3d4a 100644 18 - --- a/src/resources/wallpaper.cpp 19 - +++ b/src/resources/wallpaper.cpp 20 - @@ -37,9 +37,7 @@ 21 - 22 - #ifdef WIN32 23 - #include <sys/time.h> 24 - -#endif // WIN32 25 - - 26 - -#ifdef __clang__ 27 - +#else 28 - #include <ctime> 29 - #endif // __clang__ 30 -
-81
pkgs/by-name/ma/manaplus/package.nix
··· 1 - { 2 - stdenv, 3 - lib, 4 - fetchFromGitLab, 5 - SDL2, 6 - SDL2_image, 7 - SDL2_ttf, 8 - SDL2_mixer, 9 - SDL2_net, 10 - SDL2_gfx, 11 - zlib, 12 - physfs, 13 - curl, 14 - libxml2, 15 - libpng, 16 - libX11, 17 - pkg-config, 18 - libGL, 19 - autoreconfHook, 20 - }: 21 - 22 - stdenv.mkDerivation (finalAttrs: { 23 - pname = "manaplus"; 24 - version = "2.1.3.17-unstable-2024-08-15"; 25 - 26 - src = fetchFromGitLab { 27 - owner = "manaplus"; 28 - repo = "manaplus"; 29 - rev = "40ebe02e81b34f5b02ea682d2d470a20e7e63cfc"; 30 - sha256 = "sha256-OVmCqK8undrBKgY5bB2spezmYwWXnmrPlSpV5euortc="; 31 - }; 32 - 33 - # The unstable version has this commit that fixes missing <cstdint> include: 34 - # https://gitlab.com/manaplus/manaplus/-/commit/63912a8a6bfaecdb6b40d2a89191a2fb5af32906 35 - patches = [ 36 - # https://gitlab.com/manaplus/manaplus/-/issues/33 37 - ./0001-libxml2-const-ptr-and-missing-include.patch 38 - # https://gitlab.com/manaplus/manaplus/-/issues/32 39 - ./0002-missing-ctime-include.patch 40 - ]; 41 - 42 - nativeBuildInputs = [ 43 - autoreconfHook 44 - pkg-config 45 - ]; 46 - 47 - buildInputs = [ 48 - SDL2 49 - SDL2_gfx 50 - SDL2_image 51 - SDL2_mixer 52 - SDL2_net 53 - SDL2_ttf 54 - curl 55 - libGL 56 - libpng 57 - libX11 58 - libxml2 59 - physfs 60 - zlib 61 - ]; 62 - 63 - strictDeps = true; 64 - 65 - configureFlags = [ 66 - (lib.withFeature true "sdl2") 67 - (lib.withFeature false "dyecmd") 68 - (lib.withFeature false "internalsdlgfx") 69 - ]; 70 - 71 - enableParallelBuilding = true; 72 - 73 - meta = { 74 - maintainers = [ ]; 75 - description = "Free OpenSource 2D MMORPG client"; 76 - homepage = "https://manaplus.org/"; 77 - license = lib.licenses.gpl2Plus; 78 - platforms = lib.platforms.all; 79 - badPlatforms = [ lib.systems.inspect.patterns.isDarwin ]; 80 - }; 81 - })
+1
pkgs/top-level/aliases.nix
··· 1476 1476 mariadb-client = hiPrio mariadb.client; # added 2019.07.28 1477 1477 maligned = throw "maligned was deprecated upstream in favor of x/tools/go/analysis/passes/fieldalignment"; # Added 20204-08-24 1478 1478 manicode = throw "manicode has been renamed to codebuff"; # Added 2024-12-10 1479 + manaplus = throw "manaplus has been removed, as it was broken"; # Added 2025-08-25 1479 1480 manta = throw "manta does not support python3, and development has been abandoned upstream"; # Added 2025-03-17 1480 1481 manticore = throw "manticore is no longer maintained since 2020, and doesn't build since smlnj-110.99.7.1"; # Added 2025-05-17 1481 1482