[gentoo-commits] proj/musl:master commit in: x11-misc/lightdm/, x11-misc/lightdm/files/

2021-01-11 Thread Georgy Yakovlev
commit: 9f0e4c4b0d34fc8d1f91f9233f94ba746ff1191a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jan 11 18:49:30 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jan 11 18:50:12 2021 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=9f0e4c4b

x11-misc/lightdm: drop old

broken due to EAPI restrictions in the eclass
Signed-off-by: Georgy Yakovlev  gentoo.org>

 x11-misc/lightdm/Manifest  |   2 -
 x11-misc/lightdm/files/README.gentoo   |  11 --
 x11-misc/lightdm/files/Xsession|  74 ---
 x11-misc/lightdm/files/lightdm |   8 --
 .../files/lightdm-1.21.0-musl-is-linux.patch   |  12 --
 .../files/lightdm-1.21.0-musl-updwtmpx.patch   |  13 --
 .../files/lightdm-1.26.0-musl-language.patch   |  36 -
 x11-misc/lightdm/files/lightdm-autologin   |   6 -
 x11-misc/lightdm/files/lightdm.service |  14 --
 x11-misc/lightdm/lightdm-1.26.0-r1.ebuild  | 146 -
 x11-misc/lightdm/metadata.xml  |  14 --
 11 files changed, 336 deletions(-)

diff --git a/x11-misc/lightdm/Manifest b/x11-misc/lightdm/Manifest
deleted file mode 100644
index 0884e21..000
--- a/x11-misc/lightdm/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST introspection-20110205.m4.tar.bz2 1220 BLAKE2B 
01483c1a7b73568e01cc4d84b43c4cd946c0b5fa13aa27805fa17297112bfaabb1c5a34bd83d2ecdef2033b622dbd5e63914baacb8f6edf488a7396d26d9
 SHA512 
5c49239935b93d86cce68b577b43d1a56d8749ab5747029bfcfa67339697134be24ef29ba6c3d133b8c03e867864637c8eb61491a4b7f6bb1e56386ed66cb9be
-DIST lightdm-1.26.0.tar.xz 516092 BLAKE2B 
0bbbe11959a2ea0c21e723d10e8831fc0d9e15475a415869634cfb41c6d576b77fd87720be33dae8456063947dd1b551e88c263ed76ef9b120c43df8c42513f3
 SHA512 
67c0671753587493ed064b66f94be58853028287c914d1101e66499bebf1408e14d33245887ce89d1c4931960225ea3984e5e625b22dc4e3020be34a3087d8e7

diff --git a/x11-misc/lightdm/files/README.gentoo 
b/x11-misc/lightdm/files/README.gentoo
deleted file mode 100644
index 182f530..000
--- a/x11-misc/lightdm/files/README.gentoo
+++ /dev/null
@@ -1,11 +0,0 @@
-
- * Even though the default /etc/lightdm/lightdm.conf will work for
- * most users, make sure you configure it to suit your needs
- * before using lightdm for the first time.
- * You can test the configuration file using the following
- * command: lightdm --test-mode -c /etc/lightdm/lightdm.conf. This
- * requires xorg-server to be built with the 'kdrive' useflag.
- *
- * You can also set your own default values for LIGHTDM_GREETER,
- * LIGHTDM_SESSION, and LIGHTDM_USER in /etc/portage/make.conf
-

diff --git a/x11-misc/lightdm/files/Xsession b/x11-misc/lightdm/files/Xsession
deleted file mode 100644
index 50ce80f..000
--- a/x11-misc/lightdm/files/Xsession
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/bin/sh
-#
-# LightDM wrapper to run around X sessions.
-
-echo "Running X session wrapper"
-
-# Load profile
-for file in "/etc/profile" "$HOME/.profile" "/etc/xprofile" "$HOME/.xprofile"; 
do
-if [ -f "$file" ]; then
-echo "Loading profile from $file";
-. "$file"
-fi
-done
-
-# Load resources
-for file in "/etc/X11/Xresources" "$HOME/.Xresources"; do
-if [ -f "$file" ]; then
-echo "Loading resource: $file"
-xrdb -nocpp -merge "$file"
-fi
-done
-
-# Load keymaps
-for file in "/etc/X11/Xkbmap" "$HOME/.Xkbmap"; do
-if [ -f "$file" ]; then
-echo "Loading keymap: $file"
-setxkbmap `cat "$file"`
-XKB_IN_USE=yes
-fi
-done
-
-# Load xmodmap if not using XKB
-if [ -z "$XKB_IN_USE" ]; then
-for file in "/etc/X11/Xmodmap" "$HOME/.Xmodmap"; do
-if [ -f "$file" ]; then
-   echo "Loading modmap: $file"
-   xmodmap "$file"
-fi
-done
-fi
-
-unset XKB_IN_USE
-
-# /etc/X11/xinit/xinitrc.d/80-dbus expects $command to be
-# set to the Xsession arguments. So make it happy. See
-# https://bugs.gentoo.org/show_bug.cgi?id=533456
-command="$@"
-
-# Run all system xinitrc shell scripts.
-xinitdir="/etc/X11/xinit/xinitrc.d"
-if [ -d "$xinitdir" ]; then
-for script in $xinitdir/*; do
-echo "Loading xinit script $script"
-if [ -x "$script" -a ! -d "$script" ]; then
-. "$script"
-fi
-done
-fi
-
-# Load Xsession scripts
-xsessionddir="/etc/X11/Xsession.d"
-if [ -d "$xsessionddir" ]; then
-for i in `ls $xsessionddir`; do
-script="$xsessionddir/$i"
-echo "Loading X session script $script"
-if [ -r "$script"  -a -f "$script" ] && expr "$i" : 
'^[[:alnum:]_-]\+$' > /dev/null; then
-. "$script"
-fi
-done
-fi
-
-echo "X session wrapper complete, running session $@"
-
-exec $command

diff --git a/x11-misc/lightdm/files/lightdm b/x11-misc/lightdm/files/lightdm
deleted file mode 100644
index 6286d6a..000
--- a/x11-misc/lightdm/files/lightdm
+++ /dev/null
@@ -1,8 +0,0 @@
-#%PAM-1.0
-auth   optional

[gentoo-commits] proj/musl:master commit in: x11-misc/lightdm/, x11-misc/lightdm/files/

2017-01-29 Thread Anthony G. Basile
commit: 18892c2b19cd7338e568090bfefd15a3c5cac046
Author: callmetango  users  noreply  github 
 com>
AuthorDate: Wed Jan 25 19:44:44 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Jan 29 11:16:39 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=18892c2b

x11-misc/lightdm: added version 1.21.3 with patches from Alpine Linux

* also includes a patch for handling uppercase ".UTF-8" locale suffixes taken 
from https://bugs.launchpad.net/lightdm/+bug/1658950

 x11-misc/lightdm/Manifest  |  13 ++
 x11-misc/lightdm/files/README.gentoo   |  11 ++
 x11-misc/lightdm/files/Xsession|  74 +++
 x11-misc/lightdm/files/lightdm |   8 ++
 .../files/lightdm-1.21.0-musl-is-linux.patch   |  12 ++
 .../files/lightdm-1.21.0-musl-language.patch   |  36 ++
 .../files/lightdm-1.21.0-musl-updwtmpx.patch   |  13 ++
 .../lightdm/files/lightdm-1.21.3-use-is-utf8.patch |  57 +
 x11-misc/lightdm/files/lightdm-autologin   |   6 +
 x11-misc/lightdm/files/lightdm.service |  14 +++
 x11-misc/lightdm/lightdm-1.21.3-r1.ebuild  | 140 +
 x11-misc/lightdm/metadata.xml  |  17 +++
 12 files changed, 401 insertions(+)

diff --git a/x11-misc/lightdm/Manifest b/x11-misc/lightdm/Manifest
new file mode 100644
index 000..9ee2bca
--- /dev/null
+++ b/x11-misc/lightdm/Manifest
@@ -0,0 +1,13 @@
+AUX README.gentoo 494 SHA256 
6192d8d9db26d97404860f891ba8a1f3aa623ac72df2b23c2939344b6960dda8 SHA512 
07e35ef0ac603b2b817c33fd2bc06b9b254a2e3fee16e7ec8fc0c86d27330c795b8d1eae660c42c414de4d721faea2cab1d41c5950ca7a1032d758626011ae3c
 WHIRLPOOL 
7032d5d76eac0c94f8e5be5d7dd517b5b5569179eed04d398736ea75fff0eacdcfd4ab43c34aedb203c2fbc2d6ac0661f21d90b4a09e6bfd1d4cf9fa290dce3b
+AUX Xsession 1819 SHA256 
7968a509b63b18acbf720903fe9a3f3da7830845148699adabc29bafac3fc0e7 SHA512 
f1f9264ef6103e66ced2d94bdb24dafb71a37ed8286b35536fa992d774f288bb9b8e338e184c955b39f0448da91af5d7c2d12c5536521186d8ee5db832e20e7e
 WHIRLPOOL 
ea447e2d10877be0b8525fa84a5886f21aca10266dc26de5e977fec8c53e9071c9da5af5bf3518d55c92f9cb04c8155e34c499a14e92708912f3ed4d98e7d432
+AUX lightdm 257 SHA256 
c43240d1fbdb76d219d11ffbb8ad406bcbd7c78c8eba9c03c0feb353b6671c27 SHA512 
b7d08013758d8755eb015e64dc67d58cfe13006c4ccfa7f22d795233b932888a36fb2ede938db619f718769cb4c836e960385c21a5a16df5e7235550148eb6f3
 WHIRLPOOL 
6dea823ce65d5e3c98409907460466eaafda6f928f0207055ee5b2747ed1bc065f1678bf8ba4981160c4f0fcf68380bfb664518bb428531d484c56c97eddec5a
+AUX lightdm-1.21.0-musl-is-linux.patch 361 SHA256 
32cb8010d7a0b7a84fbccf9fecd0687e5219d289bfcba700f4ecac9f92e268c7 SHA512 
0bc0efaf0efef43e05759d1ed0aa341f8ddf452a0919df8c036756b3fa70c177dffc5f48cd27e8286a87d07cf877860730c3045de79760433a9b5a54c0af92d2
 WHIRLPOOL 
995349835943442a78ce8f50550c2f8097d6bc00acebfdf91b849763f7cae6957e16cb3c7f7abe083286aa47b0de3051247fe17718d4a8a577cce3d3b8c08eb7
+AUX lightdm-1.21.0-musl-language.patch 858 SHA256 
bd63c4774da331c0668bf25ce4f243c276058a9b97cf7ae4328c5edf9f9a6ce9 SHA512 
9075a2936b61a48de2763176dae0bece5c7ce47096f6054a0bd81fa70fd9f0f4aac694d8061534a0ad9b317142a46492d41399a16465fa1254c797d4e5e3ccdb
 WHIRLPOOL 
cc8812a349bee5a59692b10986e24450d63b360a92675dacac4217a8123289dd49c3fb0b75d07f830e2bce9d7c67d2e7af7ff803c184f02399b4f601556437d6
+AUX lightdm-1.21.0-musl-updwtmpx.patch 313 SHA256 
a7591d36fa926d1d44427da51ec11c4f432ab4705447fe21588bbdf15cd55e54 SHA512 
d595a47891a866d4a1cdd3b520d39401b78210315cdc7864f3f48bacd5d901c8c5b48a3547fcf5db8731185578562cfd60af9c01306e3a0e9df6dbae42827f64
 WHIRLPOOL 
3159e7e3bb0c3245857bc5e5a7c6128a70d7723a2ee7b254a6caeb07d9efbb2caa1369985e7ade0b9fed603303d05ae63c0e8318e03429f3f9c71394913a6c80
+AUX lightdm-1.21.3-use-is-utf8.patch 1904 SHA256 
e26e9d309537e261671d1c5ff777d343244f8f9dc299372fab763da4a2a80167 SHA512 
d3e7ea026904200265bca133ef097a0b25bfb3908917757f013b75b06c01c1fbb0101aa311bb8c2edc0f7df9e6bd14586ec153a9ee74160a7d7930e4a0af9793
 WHIRLPOOL 
5f316b6f6f5d2da628cff15b44a91f900f874cf7494ca4516f32322917369773b00aa37b2af0ebc7935c3f55dad23aa89c3803bdbdf063a6fd32d1f5a5ff9cae
+AUX lightdm-autologin 155 SHA256 
a3fefe481ba0511f6557194a075f9b40dd15f1680fdfc9cf2441467bae726c83 SHA512 
d09be0a61b7eea18a5c5977182362226e82a39b238c401f636bdf0a83381b97a16efc19e67be10b76854c95186dd65f539431d2352ce87a4e35dd1d40e388064
 WHIRLPOOL 
6c5c431b18c2315b759dcd5a027421b234aee83d6081d98d5626f938c3aa7d4f3d93c2221869549b03dfe2903af46318fd52a0b428084949bbae57b75734d304
+AUX lightdm.service 279 SHA256 
2e03423cbe88c9fdc3a9684d6d14221aa6e92d105f9d1d53b08747d966c45125 SHA512 
5b60788e35ebd7918b21ab52dc3f5cc29dd3aa45ddf6cfe75a72d1c541620f0438378a9bd681e2c151a465cf981e803b399f61b48ff5d0f2e1a3cc950c30d23a
 WHIRLPOOL 
cc7cc2ef2b8ea68080cca6aff103f4a25143464577a52bb7bc18ce4d1d7996ce2068923481aa3ba38c8c60b7b34887c43667594a0d75d7138cefe12fbdba7b97
+DIST introspection-20110205.m4.tar.bz2 1220 SHA256 
43