{ico,lib{applewm,dmx,fontenc,fs}}: refactor and move to pkgs/by-name from xorg namespace (#415036)

authored by jopejoe1 and committed by GitHub 2ab6b0c4 14c5be0a

+290 -206
+51
pkgs/by-name/ic/ico/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + pkg-config, 6 + libX11, 7 + xorgproto, 8 + writeScript, 9 + }: 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "ico"; 12 + version = "1.0.6"; 13 + 14 + src = fetchurl { 15 + url = "mirror://xorg/individual/app/ico-${finalAttrs.version}.tar.xz"; 16 + hash = "sha256-OPNp1DHnUygP3nD6SJzJTOIE+fjqvS9J/H0yr6afRAU="; 17 + }; 18 + 19 + strictDeps = true; 20 + 21 + nativeBuildInputs = [ pkg-config ]; 22 + 23 + buildInputs = [ 24 + libX11 25 + xorgproto 26 + ]; 27 + 28 + passthru = { 29 + updateScript = writeScript "update-${finalAttrs.pname}" '' 30 + #!/usr/bin/env nix-shell 31 + #!nix-shell -i bash -p common-updater-scripts 32 + version="$(list-directory-versions --pname ${finalAttrs.pname} \ 33 + --url https://xorg.freedesktop.org/releases/individual/app/ \ 34 + | sort -V | tail -n1)" 35 + update-source-version ${finalAttrs.pname} "$version" 36 + ''; 37 + }; 38 + 39 + meta = { 40 + description = "Simple animation program that may be used for testing various X11 operations and extensions"; 41 + homepage = "https://gitlab.freedesktop.org/xorg/app/ico"; 42 + license = with lib.licenses; [ 43 + x11 44 + hpnd 45 + hpndSellVariant 46 + ]; 47 + mainProgram = "ico"; 48 + maintainers = [ ]; 49 + platforms = lib.platforms.unix; 50 + }; 51 + })
+57
pkgs/by-name/li/libapplewm/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitLab, 5 + pkg-config, 6 + autoreconfHook, 7 + util-macros, 8 + xorgproto, 9 + libX11, 10 + libXext, 11 + testers, 12 + }: 13 + stdenv.mkDerivation (finalAttrs: { 14 + pname = "libapplewm"; 15 + version = "1.4.1-unstable-2021-01-04"; 16 + 17 + src = fetchFromGitLab { 18 + domain = "gitlab.freedesktop.org"; 19 + owner = "xorg/lib"; 20 + repo = "libapplewm"; 21 + rev = "be972ebc3a97292e7d2b2350eff55ae12df99a42"; 22 + hash = "sha256-NH9YeOEtnEupqpnsMLC21I+LmCOzT7KnfdzNNWqba/Y="; 23 + }; 24 + 25 + strictDeps = true; 26 + 27 + nativeBuildInputs = [ 28 + pkg-config 29 + autoreconfHook 30 + util-macros 31 + ]; 32 + 33 + buildInputs = [ 34 + xorgproto 35 + libX11 36 + libXext 37 + ]; 38 + 39 + passthru = { 40 + # updateScript = # no updatescript since we don't use a tagged release (last one was 14 years ago) 41 + tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 42 + }; 43 + 44 + meta = { 45 + description = "Xlib-based library for the Apple-WM extension"; 46 + longDescription = '' 47 + AppleWM is a simple library designed to interface with the Apple-WM extension. 48 + This extension allows X window managers to better interact with the Mac OS X Aqua user 49 + interface when running X11 in a rootless mode. 50 + ''; 51 + homepage = "https://gitlab.freedesktop.org/xorg/lib/libapplewm"; 52 + license = lib.licenses.mit; 53 + maintainers = [ ]; 54 + pkgConfigModules = [ "applewm" ]; 55 + platforms = lib.platforms.darwin; 56 + }; 57 + })
+54
pkgs/by-name/li/libdmx/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + pkg-config, 6 + xorgproto, 7 + libx11, 8 + libxext, 9 + testers, 10 + }: 11 + stdenv.mkDerivation (finalAttrs: { 12 + pname = "libdmx"; 13 + version = "1.1.5"; 14 + 15 + src = fetchurl { 16 + url = "mirror://xorg/individual/lib/libdmx-${finalAttrs.version}.tar.xz"; 17 + hash = "sha256-NaTiaosLK0/jZEHcpGNkXD+lLSgqw1IFAaOOqULL908="; 18 + }; 19 + 20 + strictDeps = true; 21 + 22 + nativeBuildInputs = [ pkg-config ]; 23 + 24 + buildInputs = [ 25 + xorgproto 26 + libx11 27 + libxext 28 + ]; 29 + 30 + configureFlags = lib.optional ( 31 + stdenv.hostPlatform != stdenv.buildPlatform 32 + ) "--enable-malloc0returnsnull"; 33 + 34 + passthru = { 35 + # updateScript = # libdmx it deprecated and thus needs no updatescript 36 + tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 37 + }; 38 + 39 + meta = { 40 + description = "Xlib-based library for the DMX (Distributed Multihead X) extension"; 41 + longDescription = '' 42 + This library allows X11 clients to use the Distributed Multihead X (DMX) Extension, 43 + as previously implemented in the Xdmx server. 44 + X.Org removed support for the Xdmx server from the xorg-server releases in the version 21 45 + release in 2021. This library is thus now considered deprecated and the version 1.1.5 release 46 + is the last release X.Org plans to make of libdmx. 47 + ''; 48 + homepage = "https://gitlab.freedesktop.org/xorg/lib/libdmx"; 49 + license = lib.licenses.mit; 50 + maintainers = [ ]; 51 + pkgConfigModules = [ "dmx" ]; 52 + platforms = lib.platforms.unix; 53 + }; 54 + })
+49
pkgs/by-name/li/libfontenc/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + pkg-config, 6 + xorgproto, 7 + zlib, 8 + writeScript, 9 + testers, 10 + }: 11 + stdenv.mkDerivation (finalAttrs: { 12 + pname = "libfontenc"; 13 + version = "1.1.8"; 14 + 15 + src = fetchurl { 16 + url = "mirror://xorg/individual/lib/libfontenc-${finalAttrs.version}.tar.xz"; 17 + hash = "sha256-ewLD1AUjbg2GgGsd6daGj+YMMTYos4NQsDKRSqT9FMY="; 18 + }; 19 + 20 + strictDeps = true; 21 + 22 + nativeBuildInputs = [ pkg-config ]; 23 + 24 + buildInputs = [ 25 + xorgproto 26 + zlib 27 + ]; 28 + 29 + passthru = { 30 + updateScript = writeScript "update-${finalAttrs.pname}" '' 31 + #!/usr/bin/env nix-shell 32 + #!nix-shell -i bash -p common-updater-scripts 33 + version="$(list-directory-versions --pname ${finalAttrs.pname} \ 34 + --url https://xorg.freedesktop.org/releases/individual/lib/ \ 35 + | sort -V | tail -n1)" 36 + update-source-version ${finalAttrs.pname} "$version" 37 + ''; 38 + tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 39 + }; 40 + 41 + meta = { 42 + description = "X font encoding library"; 43 + homepage = "https://gitlab.freedesktop.org/xorg/lib/libfontenc"; 44 + license = lib.licenses.mit; 45 + maintainers = [ ]; 46 + pkgConfigModules = [ "fontenc" ]; 47 + platforms = lib.platforms.unix; 48 + }; 49 + })
+56
pkgs/by-name/li/libfs/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + pkg-config, 6 + xorgproto, 7 + xtrans, 8 + writeScript, 9 + testers, 10 + }: 11 + stdenv.mkDerivation (finalAttrs: { 12 + pname = "libfs"; 13 + version = "1.0.10"; 14 + 15 + src = fetchurl { 16 + url = "mirror://xorg/individual/lib/libFS-${finalAttrs.version}.tar.xz"; 17 + hash = "sha256-m6u9PIYGnJhWPaBEBF/cDs5OwMk9zdLGiqdOs0tPO3c="; 18 + }; 19 + 20 + strictDeps = true; 21 + 22 + nativeBuildInputs = [ pkg-config ]; 23 + 24 + buildInputs = [ 25 + xorgproto 26 + xtrans 27 + ]; 28 + 29 + configureFlags = lib.optional ( 30 + stdenv.hostPlatform != stdenv.buildPlatform 31 + ) "--enable-malloc0returnsnull"; 32 + 33 + passthru = { 34 + updateScript = writeScript "update-${finalAttrs.pname}" '' 35 + #!/usr/bin/env nix-shell 36 + #!nix-shell -i bash -p common-updater-scripts 37 + version="$(list-directory-versions --pname libFS \ 38 + --url https://xorg.freedesktop.org/releases/individual/lib/ \ 39 + | sort -V | tail -n1)" 40 + update-source-version ${finalAttrs.pname} "$version" 41 + ''; 42 + tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 43 + }; 44 + 45 + meta = { 46 + description = "X Font Service client library"; 47 + homepage = "https://gitlab.freedesktop.org/xorg/lib/libfs"; 48 + license = with lib.licenses; [ 49 + mitOpenGroup 50 + hpndSellVariant 51 + ]; 52 + maintainers = [ ]; 53 + pkgConfigModules = [ "libfs" ]; 54 + platforms = lib.platforms.unix; 55 + }; 56 + })
+10 -184
pkgs/servers/x11/xorg/default.nix
··· 5 font-alias, 6 font-util, 7 gccmakedep, 8 imake, 9 libpciaccess, 10 libpthread-stubs, 11 libx11, ··· 35 inherit 36 bdftopcf 37 gccmakedep 38 imake 39 libpciaccess 40 libxcb 41 libxcvt ··· 50 ; 51 fontalias = font-alias; 52 fontutil = font-util; 53 libpthreadstubs = libpthread-stubs; 54 libX11 = libx11; 55 libXau = libxau; ··· 1698 ) { }; 1699 1700 # THIS IS A GENERATED FILE. DO NOT EDIT! 1701 - ico = callPackage ( 1702 - { 1703 - stdenv, 1704 - pkg-config, 1705 - fetchurl, 1706 - libX11, 1707 - xorgproto, 1708 - testers, 1709 - }: 1710 - stdenv.mkDerivation (finalAttrs: { 1711 - pname = "ico"; 1712 - version = "1.0.6"; 1713 - builder = ./builder.sh; 1714 - src = fetchurl { 1715 - url = "mirror://xorg/individual/app/ico-1.0.6.tar.xz"; 1716 - sha256 = "01a4kykayckxzi4jzggaz3wh9qjcr6f4iykhvq7jhlz767a6kwrq"; 1717 - }; 1718 - hardeningDisable = [ 1719 - "bindnow" 1720 - "relro" 1721 - ]; 1722 - strictDeps = true; 1723 - nativeBuildInputs = [ pkg-config ]; 1724 - buildInputs = [ 1725 - libX11 1726 - xorgproto 1727 - ]; 1728 - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1729 - meta = { 1730 - pkgConfigModules = [ ]; 1731 - platforms = lib.platforms.unix; 1732 - }; 1733 - }) 1734 - ) { }; 1735 - 1736 - # THIS IS A GENERATED FILE. DO NOT EDIT! 1737 - libAppleWM = callPackage ( 1738 - { 1739 - stdenv, 1740 - pkg-config, 1741 - fetchurl, 1742 - xorgproto, 1743 - libX11, 1744 - libXext, 1745 - testers, 1746 - }: 1747 - stdenv.mkDerivation (finalAttrs: { 1748 - pname = "libAppleWM"; 1749 - version = "be972ebc3a97292e7d2b2350eff55ae12df99a42"; 1750 - builder = ./builder.sh; 1751 - src = fetchurl { 1752 - url = "https://gitlab.freedesktop.org/xorg/lib/libAppleWM/-/archive/be972ebc3a97292e7d2b2350eff55ae12df99a42/libAppleWM-be972ebc3a97292e7d2b2350eff55ae12df99a42.tar.bz2"; 1753 - sha256 = "1hrq03pahmrbb05r6a7j7m1nxl65wlfi6d2lwm1kvra63q91f9ph"; 1754 - }; 1755 - hardeningDisable = [ 1756 - "bindnow" 1757 - "relro" 1758 - ]; 1759 - strictDeps = true; 1760 - nativeBuildInputs = [ pkg-config ]; 1761 - buildInputs = [ 1762 - xorgproto 1763 - libX11 1764 - libXext 1765 - ]; 1766 - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1767 - meta = { 1768 - pkgConfigModules = [ "applewm" ]; 1769 - platforms = lib.platforms.unix; 1770 - }; 1771 - }) 1772 - ) { }; 1773 - 1774 - # THIS IS A GENERATED FILE. DO NOT EDIT! 1775 - libFS = callPackage ( 1776 - { 1777 - stdenv, 1778 - pkg-config, 1779 - fetchurl, 1780 - xorgproto, 1781 - xtrans, 1782 - testers, 1783 - }: 1784 - stdenv.mkDerivation (finalAttrs: { 1785 - pname = "libFS"; 1786 - version = "1.0.10"; 1787 - builder = ./builder.sh; 1788 - src = fetchurl { 1789 - url = "mirror://xorg/individual/lib/libFS-1.0.10.tar.xz"; 1790 - sha256 = "0xrv9x5v6km7ib3d5k9xr704xkhfvigh8i507mb9i706hqybvawv"; 1791 - }; 1792 - hardeningDisable = [ 1793 - "bindnow" 1794 - "relro" 1795 - ]; 1796 - strictDeps = true; 1797 - nativeBuildInputs = [ pkg-config ]; 1798 - buildInputs = [ 1799 - xorgproto 1800 - xtrans 1801 - ]; 1802 - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1803 - meta = { 1804 - pkgConfigModules = [ "libfs" ]; 1805 - platforms = lib.platforms.unix; 1806 - }; 1807 - }) 1808 - ) { }; 1809 - 1810 - # THIS IS A GENERATED FILE. DO NOT EDIT! 1811 libICE = callPackage ( 1812 { 1813 stdenv, ··· 2953 passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2954 meta = { 2955 pkgConfigModules = [ "xxf86vm" ]; 2956 - platforms = lib.platforms.unix; 2957 - }; 2958 - }) 2959 - ) { }; 2960 - 2961 - # THIS IS A GENERATED FILE. DO NOT EDIT! 2962 - libdmx = callPackage ( 2963 - { 2964 - stdenv, 2965 - pkg-config, 2966 - fetchurl, 2967 - xorgproto, 2968 - libX11, 2969 - libXext, 2970 - testers, 2971 - }: 2972 - stdenv.mkDerivation (finalAttrs: { 2973 - pname = "libdmx"; 2974 - version = "1.1.5"; 2975 - builder = ./builder.sh; 2976 - src = fetchurl { 2977 - url = "mirror://xorg/individual/lib/libdmx-1.1.5.tar.xz"; 2978 - sha256 = "0kzprd1ak3m3042m5hra50nsagswciis9p21ckilyaqbidmf591m"; 2979 - }; 2980 - hardeningDisable = [ 2981 - "bindnow" 2982 - "relro" 2983 - ]; 2984 - strictDeps = true; 2985 - nativeBuildInputs = [ pkg-config ]; 2986 - buildInputs = [ 2987 - xorgproto 2988 - libX11 2989 - libXext 2990 - ]; 2991 - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2992 - meta = { 2993 - pkgConfigModules = [ "dmx" ]; 2994 - platforms = lib.platforms.unix; 2995 - }; 2996 - }) 2997 - ) { }; 2998 - 2999 - # THIS IS A GENERATED FILE. DO NOT EDIT! 3000 - libfontenc = callPackage ( 3001 - { 3002 - stdenv, 3003 - pkg-config, 3004 - fetchurl, 3005 - xorgproto, 3006 - zlib, 3007 - testers, 3008 - }: 3009 - stdenv.mkDerivation (finalAttrs: { 3010 - pname = "libfontenc"; 3011 - version = "1.1.8"; 3012 - builder = ./builder.sh; 3013 - src = fetchurl { 3014 - url = "mirror://xorg/individual/lib/libfontenc-1.1.8.tar.xz"; 3015 - sha256 = "1ihlznj4m49jn1887cr86qqhrrlghvbfj7bbh230svi30pac60kv"; 3016 - }; 3017 - hardeningDisable = [ 3018 - "bindnow" 3019 - "relro" 3020 - ]; 3021 - strictDeps = true; 3022 - nativeBuildInputs = [ pkg-config ]; 3023 - buildInputs = [ 3024 - xorgproto 3025 - zlib 3026 - ]; 3027 - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3028 - meta = { 3029 - pkgConfigModules = [ "fontenc" ]; 3030 platforms = lib.platforms.unix; 3031 }; 3032 })
··· 5 font-alias, 6 font-util, 7 gccmakedep, 8 + ico, 9 imake, 10 + libapplewm, 11 + libdmx, 12 + libfontenc, 13 + libfs, 14 libpciaccess, 15 libpthread-stubs, 16 libx11, ··· 40 inherit 41 bdftopcf 42 gccmakedep 43 + ico 44 imake 45 + libdmx 46 + libfontenc 47 libpciaccess 48 libxcb 49 libxcvt ··· 58 ; 59 fontalias = font-alias; 60 fontutil = font-util; 61 + libAppleWM = libapplewm; 62 + libFS = libfs; 63 libpthreadstubs = libpthread-stubs; 64 libX11 = libx11; 65 libXau = libxau; ··· 1708 ) { }; 1709 1710 # THIS IS A GENERATED FILE. DO NOT EDIT! 1711 libICE = callPackage ( 1712 { 1713 stdenv, ··· 2853 passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2854 meta = { 2855 pkgConfigModules = [ "xxf86vm" ]; 2856 platforms = lib.platforms.unix; 2857 }; 2858 })
+13
pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl
··· 36 $pcMap{"GL"} = "libGL"; 37 $pcMap{"gbm"} = "libgbm"; 38 $pcMap{"hwdata"} = "hwdata"; 39 $pcMap{"fontutil"} = "fontutil"; 40 $pcMap{"pciaccess"} = "libpciaccess"; 41 $pcMap{"pthread-stubs"} = "libpthreadstubs"; 42 $pcMap{"x11"} = "libX11"; ··· 290 font-alias, 291 font-util, 292 gccmakedep, 293 imake, 294 libpciaccess, 295 libpthread-stubs, 296 libx11, ··· 320 inherit 321 bdftopcf 322 gccmakedep 323 imake 324 libpciaccess 325 libxcb 326 libxcvt ··· 335 ; 336 fontalias = font-alias; 337 fontutil = font-util; 338 libpthreadstubs = libpthread-stubs; 339 libX11 = libx11; 340 libXau = libxau;
··· 36 $pcMap{"GL"} = "libGL"; 37 $pcMap{"gbm"} = "libgbm"; 38 $pcMap{"hwdata"} = "hwdata"; 39 + $pcMap{"dmx"} = "libdmx"; 40 + $pcMap{"fontenc"} = "libfontenc"; 41 $pcMap{"fontutil"} = "fontutil"; 42 + $pcMap{"libfs"} = "libFS"; 43 $pcMap{"pciaccess"} = "libpciaccess"; 44 $pcMap{"pthread-stubs"} = "libpthreadstubs"; 45 $pcMap{"x11"} = "libX11"; ··· 293 font-alias, 294 font-util, 295 gccmakedep, 296 + ico, 297 imake, 298 + libapplewm, 299 + libdmx, 300 + libfontenc, 301 + libfs, 302 libpciaccess, 303 libpthread-stubs, 304 libx11, ··· 328 inherit 329 bdftopcf 330 gccmakedep 331 + ico 332 imake 333 + libdmx 334 + libfontenc 335 libpciaccess 336 libxcb 337 libxcvt ··· 346 ; 347 fontalias = font-alias; 348 fontutil = font-util; 349 + libAppleWM = libapplewm; 350 + libFS = libfs; 351 libpthreadstubs = libpthread-stubs; 352 libX11 = libx11; 353 libXau = libxau;
-17
pkgs/servers/x11/xorg/overrides.nix
··· 147 }); 148 149 iceauth = addMainProgram super.iceauth { }; 150 - ico = addMainProgram super.ico { }; 151 152 mkfontdir = xorg.mkfontscale; 153 - 154 - libAppleWM = super.libAppleWM.overrideAttrs (attrs: { 155 - nativeBuildInputs = attrs.nativeBuildInputs ++ [ 156 - autoreconfHook 157 - xorg.utilmacros 158 - ]; 159 - meta = attrs.meta // { 160 - platforms = lib.platforms.darwin; 161 - }; 162 - }); 163 164 libXtst = super.libXtst.overrideAttrs (attrs: { 165 meta = attrs.meta // { ··· 188 configureFlags = attrs.configureFlags or [ ] ++ malloc0ReturnsNullCrossFlag; 189 }); 190 libXxf86misc = super.libXxf86misc.overrideAttrs (attrs: { 191 - configureFlags = attrs.configureFlags or [ ] ++ malloc0ReturnsNullCrossFlag; 192 - }); 193 - libdmx = super.libdmx.overrideAttrs (attrs: { 194 - configureFlags = attrs.configureFlags or [ ] ++ malloc0ReturnsNullCrossFlag; 195 - }); 196 - libFS = super.libFS.overrideAttrs (attrs: { 197 configureFlags = attrs.configureFlags or [ ] ++ malloc0ReturnsNullCrossFlag; 198 }); 199 libWindowsWM = super.libWindowsWM.overrideAttrs (attrs: {
··· 147 }); 148 149 iceauth = addMainProgram super.iceauth { }; 150 151 mkfontdir = xorg.mkfontscale; 152 153 libXtst = super.libXtst.overrideAttrs (attrs: { 154 meta = attrs.meta // { ··· 177 configureFlags = attrs.configureFlags or [ ] ++ malloc0ReturnsNullCrossFlag; 178 }); 179 libXxf86misc = super.libXxf86misc.overrideAttrs (attrs: { 180 configureFlags = attrs.configureFlags or [ ] ++ malloc0ReturnsNullCrossFlag; 181 }); 182 libWindowsWM = super.libWindowsWM.overrideAttrs (attrs: {
-5
pkgs/servers/x11/xorg/tarballs.list
··· 9 mirror://xorg/individual/app/editres-1.0.9.tar.xz 10 mirror://xorg/individual/app/fonttosfnt-1.2.4.tar.xz 11 mirror://xorg/individual/app/iceauth-1.0.10.tar.xz 12 - mirror://xorg/individual/app/ico-1.0.6.tar.xz 13 mirror://xorg/individual/app/listres-1.0.6.tar.xz 14 mirror://xorg/individual/app/mkfontscale-1.2.3.tar.xz 15 mirror://xorg/individual/app/oclock-1.0.6.tar.xz ··· 154 mirror://xorg/individual/font/font-sun-misc-1.0.4.tar.xz 155 mirror://xorg/individual/font/font-winitzki-cyrillic-1.0.4.tar.xz 156 mirror://xorg/individual/font/font-xfree86-type1-1.0.5.tar.xz 157 - https://gitlab.freedesktop.org/xorg/lib/libAppleWM/-/archive/be972ebc3a97292e7d2b2350eff55ae12df99a42/libAppleWM-be972ebc3a97292e7d2b2350eff55ae12df99a42.tar.bz2 158 - mirror://xorg/individual/lib/libdmx-1.1.5.tar.xz 159 - mirror://xorg/individual/lib/libfontenc-1.1.8.tar.xz 160 - mirror://xorg/individual/lib/libFS-1.0.10.tar.xz 161 mirror://xorg/individual/lib/libICE-1.1.2.tar.xz 162 mirror://xorg/individual/lib/libSM-1.2.6.tar.xz 163 mirror://xorg/individual/lib/libWindowsWM-1.0.1.tar.bz2
··· 9 mirror://xorg/individual/app/editres-1.0.9.tar.xz 10 mirror://xorg/individual/app/fonttosfnt-1.2.4.tar.xz 11 mirror://xorg/individual/app/iceauth-1.0.10.tar.xz 12 mirror://xorg/individual/app/listres-1.0.6.tar.xz 13 mirror://xorg/individual/app/mkfontscale-1.2.3.tar.xz 14 mirror://xorg/individual/app/oclock-1.0.6.tar.xz ··· 153 mirror://xorg/individual/font/font-sun-misc-1.0.4.tar.xz 154 mirror://xorg/individual/font/font-winitzki-cyrillic-1.0.4.tar.xz 155 mirror://xorg/individual/font/font-xfree86-type1-1.0.5.tar.xz 156 mirror://xorg/individual/lib/libICE-1.1.2.tar.xz 157 mirror://xorg/individual/lib/libSM-1.2.6.tar.xz 158 mirror://xorg/individual/lib/libWindowsWM-1.0.1.tar.bz2