]> Frank Brehm's Git Trees - config/samara/etc.git/commitdiff
Current state
authorFrank Brehm <frank.brehm@profitbricks.com>
Wed, 18 Jun 2014 07:21:41 +0000 (09:21 +0200)
committerFrank Brehm <frank.brehm@profitbricks.com>
Wed, 18 Jun 2014 07:21:41 +0000 (09:21 +0200)
37 files changed:
bash_completion.d/pulseaudio-bash-completion.sh [deleted file]
conf.d/cpufrequtils [deleted file]
config-archive/etc/inittab.dist.new [deleted file]
dbus-1/system.d/org.freedesktop.login1.conf
dbus-1/system.d/org.freedesktop.machine1.conf
etckeeper/pre-commit.d/30store-metadata
etckeeper/update-ignore.d/01update-ignore
gtk-2.0/i686-pc-linux-gnu/gtk.immodules
hotplug/usb/libsane.usermap
init.d/crypto-loop [deleted file]
init.d/net.lo
inittab
localtime [changed from symlink to file mode: 0644]
portage/make.conf
portage/package.keywords/common
portage/package.use
revdep-rebuild/61-icedtea-bin-6
revdep-rebuild/61-oracle-jdk-bin-1.7
revdep-rebuild/61-oracle-jre-bin-1.7
sane.d/canon_pp.conf [deleted file]
sane.d/hpsj5s.conf [deleted file]
sane.d/mustek_pp.conf [deleted file]
sound/events/mate-battstat_applet.soundlist
sysstat
systemd/journald.conf
systemd/logind.conf
systemd/system.conf
systemd/system/getty.target.wants/getty@tty1.service
systemd/system/multi-user.target.wants/remote-fs.target
systemd/user.conf
xdg/autostart/mate-power-manager.desktop
xdg/autostart/mate-screensaver.desktop
xdg/autostart/polkit-mate-authentication-agent-1.desktop
xdg/menus/mate-applications.menu
xdg/menus/mate-settings.menu
xdg/systemd/user
xinetd.d/cvspserver [deleted file]

diff --git a/bash_completion.d/pulseaudio-bash-completion.sh b/bash_completion.d/pulseaudio-bash-completion.sh
deleted file mode 100644 (file)
index 43f4a2c..0000000
+++ /dev/null
@@ -1,570 +0,0 @@
-#!/bin/bash
-
-__cards () {
-    while IFS=$'\t' read idx name _; do
-        printf "%s %s\n" "$idx" "$name"
-    done < <(pactl list cards short 2> /dev/null)
-}
-
-__sinks () {
-    while IFS=$'\t' read _ name _ _ _; do
-        printf "%s\n" "$name"
-    done < <(pactl list sinks short 2> /dev/null)
-}
-
-__sinks_idx () {
-    while IFS=$'\t' read idx _ _ _ _; do
-        printf "%s\n" "$idx"
-    done < <(pactl list sinks short 2> /dev/null)
-}
-
-__sources () {
-    while IFS=$'\t' read _ name _ _ _; do
-        printf "%s\n" "$name"
-    done < <(pactl list sources short 2> /dev/null)
-}
-
-__sink_inputs () {
-    while IFS=$'\t' read idx _ _ _ _; do
-        printf "%s\n" "$idx"
-    done < <(pactl list sink-inputs short 2> /dev/null)
-}
-
-__source_outputs () {
-    while IFS=$'\t' read idx _ _ _ _; do
-        printf "%s\n" "$idx"
-    done < <(pactl list source-outputs short 2> /dev/null)
-}
-
-__ports () {
-    pactl list cards 2> /dev/null | awk -e \
-        '/^\tPorts:/ {
-            flag=1; next
-         }
-
-         /^\t[A-Za-z]/ {
-             flag=0
-         }
-
-         flag {
-             if (/^\t\t[A-Za-z]/)
-                 ports = ports substr($0, 3, index($0, ":")-3) " "
-         }
-
-         END {
-             print ports
-         }'
-}
-
-__profiles () {
-    pactl list cards 2> /dev/null | awk -e \
-        '/^\tProfiles:/ {
-            flag=1; next
-        }
-
-        /^\t[A-Za-z]/ {
-            flag=0
-        }
-
-        flag {
-            if (/^\t\t[A-Za-z]/)
-                profiles = profiles substr($0, 3, index($0, ": ")-3) " "
-        }
-
-        END {
-            print profiles
-        }'
-}
-
-__all_modules () {
-    while read name; do
-        name=${name%% *}
-        printf "%s\n" "$name"
-    done < <(pulseaudio --dump-modules 2> /dev/null)
-}
-
-__loaded_modules () {
-    while IFS=$'\t' read idx name _; do
-        printf "%s %s\n" "$idx" "$name"
-    done < <(pactl list modules short 2> /dev/null)
-}
-
-__resample_methods () {
-    while read name; do
-        printf "%s\n" "$name"
-    done < <(pulseaudio --dump-resample-methods 2> /dev/null)
-}
-
-_pacat_file_formats () {
-    while IFS=$'\t' read name _; do
-        printf "%s\n" "$name"
-    done < <(pacat --list-file-formats 2> /dev/null)
-}
-
-in_array() {
-    local i
-    for i in "${@:2}"; do
-        [[ $1 = "$i" ]] && return
-    done
-}
-
-_pactl() {
-    local cur prev words cword preprev command
-    local comps
-    local flags='-h --help --version -s --server= --client-name='
-    local list_types='short sinks sources sink-inputs source outputs cards
-                    modules samples clients'
-    local commands=(stat info list exit upload-sample play-sample remove-sample
-                    load-module unload-module move-sink-input move-source-output
-                    suspend-sink suspend-source set-card-profile set-sink-port
-                    set-source-port set-sink-volume set-source-volume
-                    set-sink-input-volume set-source-output-volume set-sink-mute
-                    set-source-mute set-sink-input-mute set-source-output-mute
-                    set-sink-formats set-port-latency-offset subscribe help)
-
-    _init_completion -n = || return
-    preprev=${words[$cword-2]}
-
-    for word in "${COMP_WORDS[@]}"; do
-        if in_array "$word" "${commands[@]}"; then
-            command=$word
-            break
-        fi
-    done
-
-    case $preprev in
-        list) COMPREPLY=($(compgen -W 'short' -- "$cur")) ;;
-
-        play-sample)
-            comps=$(__sinks)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        move-sink-input)
-            comps=$(__sinks)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        move-source-output)
-            comps=$(__sources)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        set-card-profile)
-            comps=$(__profiles)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        set-*-port)
-            comps=$(__ports)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        set-*-mute) COMPREPLY=($(compgen -W 'true false toggle' -- "$cur")) ;;
-
-        set-sink-formats)
-            ;; #TODO
-
-        set-port-*)
-            comps=$(__ports)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-        --server)
-            compopt +o nospace
-            _known_hosts_real "$cur"
-            ;;
-    esac
-    [[ $COMPREPLY ]] && return 0
-
-    case $prev in
-        list) COMPREPLY=($(compgen -W '${list_types[*]}' -- "$cur")) ;;
-
-        stat) COMPREPLY=($(compgen -W 'short' -- "$cur")) ;;
-
-        upload-sample) _filedir ;;
-
-        play-sample) ;; # TODO
-
-        remove-sample) ;; # TODO
-
-        load-module)
-            comps=$(__all_modules)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        unload-module)
-            comps=$(__loaded_modules)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        set-card*)
-            comps=$(__cards)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        *sink-input*)
-            comps=$(__sink_inputs)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        *source-output*)
-            comps=$(__source_outputs)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        set-sink-formats)
-            comps=$(__sinks_idx)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        *sink*)
-            comps=$(__sinks)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        *source*)
-            comps=$(__sources)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        set-port*)
-            comps=$(__cards)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        -s)
-            _known_hosts_real "$cur" ;;
-    esac
-    [[ $COMPREPLY ]] && return 0
-
-    case $cur in
-        --server=*)
-            cur=${cur#*=}
-            _known_hosts_real "$cur"
-            ;;
-
-        -*)
-            COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur"))
-            [[ $COMPREPLY == *= ]] && compopt -o nospace
-            ;;
-
-        *)
-            [[ -z $command ]] && COMPREPLY=($(compgen -W '${commands[*]}' -- "$cur"))
-            ;;
-    esac
-}
-complete -F _pactl pactl
-
-_pacmd() {
-    local cur prev words cword preprev command
-    local comps
-    local flags='-h --help --version'
-    local commands=(exit help list-modules list-cards list-sinks list-sources list-clients
-                    list-samples list-sink-inputs list-source-outputs stat info
-                    load-module unload-module describe-module set-sink-volume
-                    set-source-volume set-sink-input-volume set-source-output-volume
-                    set-sink-mute set-source-mut set-sink-input-mute
-                    set-source-output-mute update-sink-proplist update-source-proplist
-                    update-sink-input-proplist update-source-output-proplist
-                    set-default-sink set-default-source kill-client kill-sink-input
-                    kill-source-output play-sample remove-sample load-sample
-                    load-sample-lazy load-sample-dir-lazy play-file dump
-                    move-sink-input move-source-output suspend-sink suspend-source
-                    suspend set-card-profile set-sink-port set-source-port
-                    set-port-latency-offset set-log-target set-log-level set-log-meta
-                    set-log-time set-log-backtrace)
-    _init_completion -n = || return
-    preprev=${words[$cword-2]}
-
-    for word in "${COMP_WORDS[@]}"; do
-        if in_array "$word" "${commands[@]}"; then
-            command=$word
-            break
-        fi
-    done
-
-    case $preprev in
-        play-sample|play-file)
-            comps=$(__sinks)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        load-sample*) _filedir ;;
-
-        move-sink-input)
-            comps=$(__sinks)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        move-source-output)
-            comps=$(__sources)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        set-card-profile)
-            comps=$(__profiles)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        set-*port*)
-            comps=$(__ports)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        set-*-mute) COMPREPLY=($(compgen -W 'true false' -- "$cur"));;
-
-        set-sink-formats)
-            ;; #TODO
-    esac
-
-    case $prev in
-        list-*) ;;
-        describe-module|load-module)
-            comps=$(__all_modules)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        unload-module)
-            comps=$(__loaded_modules)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        load-sample-dir-lazy) _filedir -d ;;
-        play-file) _filedir ;;
-
-        *sink-input*)
-            comps=$(__sink_inputs)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        *source-output*)
-            comps=$(__source_outputs)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        *sink*)
-            comps=$(__sinks)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        *source*)
-            comps=$(__sources)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        set-card*)
-            comps=$(__cards)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        set-port-*)
-            comps=$(__cards)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        set-log-target)
-            COMPREPLY=($(compgen -W 'auto syslog stderr file: newfile:' -- "$cur"))
-            ;;
-
-        set-log-level)
-            COMPREPLY=($(compgen -W '{0..4}' -- "$cur"))
-            ;;
-
-        set-log-meta|set-log-time|suspend)
-            COMPREPLY=($(compgen -W 'true false' -- "$cur"))
-            ;;
-    esac
-
-    case $cur in
-        -*) COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur")) ;;
-        suspend)
-            COMPREPLY=($(compgen -W 'suspend suspend-sink suspend-source' -- "$cur"))
-            ;;
-
-        load-sample)
-            COMPREPLY=($(compgen -W 'load-sample load-sample-lazy load-sample-dir-lazy' -- "$cur"))
-            ;;
-
-        *)
-            [[ -z $command ]] && COMPREPLY=($(compgen -W '${commands[*]}' -- "$cur"))
-            ;;
-    esac
-}
-complete -F _pacmd pacmd
-
-_pasuspender () {
-    local cur prev
-    local flags='-h --help --version -s --server='
-
-    _init_completion -n = || return
-
-    case $cur in
-        --server=*)
-            cur=${cur#*=}
-            _known_hosts_real "$cur"
-            ;;
-
-        -*)
-            COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur"))
-            [[ $COMPREPLY == *= ]] && compopt -o nospace
-            ;;
-    esac
-
-    case $prev in
-        -s) _known_hosts_real "$cur" ;;
-    esac
-}
-complete -F _pasuspender pasuspender
-
-_padsp () {
-    local cur prev
-    local flags='-h -s -n -m -M -S -D -d'
-
-    _get_comp_words_by_ref cur prev
-
-    case $cur in
-        -*) COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur")) ;;
-    esac
-
-    case $prev in
-        -s) _known_hosts_real "$cur" ;;
-    esac
-}
-complete -F _padsp padsp
-
-_pacat () {
-    local cur prev comps
-    local flags='-h --help --version -r --record -p --playback -v --verbose -s
-                --server= -d --device= -n --client-name= --stream-name= --volume=
-                --rate= --format= --channels= --channel-map= --fix-format --fix-rate
-                --fix-channels --no-remix --no-remap --latency= --process-time=
-                --latency-msec= --process-time-msec= --property= --raw --passthrough
-                --file-format= --list-file-formats --monitor-stream='
-
-    _init_completion -n = || return
-
-    case $cur in
-        --server=*)
-            cur=${cur#*=}
-            _known_hosts_real "$cur"
-            ;;
-
-        --device=*)
-            cur=${cur#*=}
-            comps=$(__sinks)
-            comps+=" "$(__sources)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        --monitor-stream=*)
-            cur=${cur#*=}
-            comps=$(__sink_inputs)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        --rate=*)
-            cur=${cur#*=}
-            COMPREPLY=($(compgen -W '32000 44100 48000 9600 192000' -- "$cur"))
-            ;;
-
-        --file-format=*)
-            cur=${cur#*=}
-            comps=$(_pacat_file_formats)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        --*=*)
-            ;;
-
-        -*)
-            COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur"))
-            [[ $COMPREPLY == *= ]] && compopt -o nospace
-            ;;
-        *) _filedir ;;
-    esac
-
-    case $prev in
-        -s) _known_hosts_real "$cur" ;;
-        -d)
-            comps=$(__sinks)
-            comps+=" "$(__sources)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-    esac
-}
-complete -F _pacat pacat paplay parecord
-
-_pulseaudio()
-{
-    local cur prev words cword
-    local flags='-h --help --version --dump-conf --dump-resample-methods --cleanup-shm
-                --start -k --kill --check --system= -D --daemonize= --fail= --high-priority=
-                --realtime= --disallow-module-loading= --disallow-exit= --exit-idle-time=
-                --scache-idle-time= --log-level= -v --log-target= --log-meta= --log-time=
-                --log-backtrace= -p --dl-search-path= --resample-method= --use-pit-file=
-                --no-cpu-limit= --disable-shm= -L --load= -F --file= -C -n'
-    _init_completion -n = || return
-
-    case $cur in
-        --system=*|--daemonize=*|--fail=*|--high-priority=*|--realtime=*| \
-            --disallow-*=*|--log-meta=*|--log-time=*|--use-pid-file=*| \
-            --no-cpu-limit=*|--disable-shm=*)
-            cur=${cur#*=}
-            COMPREPLY=($(compgen -W 'true false' -- "$cur"))
-            ;;
-
-        --log-target=*)
-            cur=${cur#*=}
-            COMPREPLY=($(compgen -W 'auto syslog stderr file: newfile:' -- "$cur"))
-            ;;
-
-        --log-level=*)
-            cur=${cur#*=}
-            COMPREPLY=($(compgen -W '{0..4}' -- "$cur"))
-            ;;
-
-        --dl-search-path=*)
-            cur=${cur#*=}
-            _filedir -d
-            ;;
-
-        --file=*)
-            cur=${cur#*=}
-            _filedir
-            ;;
-
-        --resample-method=*)
-            cur=${cur#*=}
-            comps=$(__resample_methods)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        --load=*)
-            cur=${cur#*=}
-            comps=$(__all_modules)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-
-        --*=*)
-            ;;
-
-        -*)
-            COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur"))
-            [[ $COMPREPLY == *= ]] && compopt -o nospace
-            ;;
-    esac
-
-    case $prev in
-        -D) COMPREPLY=($(compgen -W 'true false' -- "$cur")) ;;
-        -p) _filedir -d ;;
-        -F) _filedir ;;
-        -L)
-            cur=${cur#*=}
-            comps=$(__all_modules)
-            COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
-            ;;
-    esac
-}
-complete -F _pulseaudio pulseaudio
-
-#vim: set ft=zsh sw=4 ts=4 noet
diff --git a/conf.d/cpufrequtils b/conf.d/cpufrequtils
deleted file mode 100644 (file)
index 8959664..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-# /etc/conf.d/cpufrequtils: config file for /etc/init.d/cpufrequtils
-
-# Options when starting cpufreq (given to the `cpufreq-set` program)
-START_OPTS="--governor ondemand"
-
-# Options when stopping cpufreq (given to the `cpufreq-set` program)
-STOP_OPTS="--governor performance"
-
-# Extra settings to write to sysfs cpufreq values.
-#SYSFS_EXTRA="ondemand/ignore_nice_load=1 ondemand/up_threshold=70"
-
diff --git a/config-archive/etc/inittab.dist.new b/config-archive/etc/inittab.dist.new
deleted file mode 100644 (file)
index 2f6af66..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-#
-# /etc/inittab:  This file describes how the INIT process should set up
-#                the system in a certain run-level.
-#
-# Author:  Miquel van Smoorenburg, <miquels@cistron.nl>
-# Modified by:  Patrick J. Volkerding, <volkerdi@ftp.cdrom.com>
-# Modified by:  Daniel Robbins, <drobbins@gentoo.org>
-# Modified by:  Martin Schlemmer, <azarah@gentoo.org>
-# Modified by:  Mike Frysinger, <vapier@gentoo.org>
-# Modified by:  Robin H. Johnson, <robbat2@gentoo.org>
-#
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/files/inittab-2.87,v 1.1 2010/01/08 16:55:07 williamh Exp $
-
-# Default runlevel.
-id:3:initdefault:
-
-# System initialization, mount local filesystems, etc.
-si::sysinit:/sbin/rc sysinit
-
-# Further system initialization, brings up the boot runlevel.
-rc::bootwait:/sbin/rc boot
-
-l0:0:wait:/sbin/rc shutdown 
-l0s:0:wait:/sbin/halt -dhp
-l1:1:wait:/sbin/rc single
-l2:2:wait:/sbin/rc nonetwork
-l3:3:wait:/sbin/rc default
-l4:4:wait:/sbin/rc default
-l5:5:wait:/sbin/rc default
-l6:6:wait:/sbin/rc reboot
-l6r:6:wait:/sbin/reboot -dk
-#z6:6:respawn:/sbin/sulogin
-
-# new-style single-user
-su0:S:wait:/sbin/rc single
-su1:S:wait:/sbin/sulogin
-
-# TERMINALS
-c1:12345:respawn:/sbin/agetty 38400 tty1 linux
-c2:2345:respawn:/sbin/agetty 38400 tty2 linux
-c3:2345:respawn:/sbin/agetty 38400 tty3 linux
-c4:2345:respawn:/sbin/agetty 38400 tty4 linux
-c5:2345:respawn:/sbin/agetty 38400 tty5 linux
-c6:2345:respawn:/sbin/agetty 38400 tty6 linux
-
-# SERIAL CONSOLES
-#s0:12345:respawn:/sbin/agetty 115200 ttyS0 vt100
-#s1:12345:respawn:/sbin/agetty 115200 ttyS1 vt100
-
-# What to do at the "Three Finger Salute".
-ca:12345:ctrlaltdel:/sbin/shutdown -r now
-
-# Used by /etc/init.d/xdm to control DM startup.
-# Read the comments in /etc/init.d/xdm for more
-# info. Do NOT remove, as this will start nothing
-# extra at boot if /etc/init.d/xdm is not added
-# to the "default" runlevel.
-x:a:once:/etc/X11/startDM.sh
-
index 0407609c19d36c115ad40fcb4b18bca8dbda16d1..1318328aa0ff1771b88e634eaf4800960b85731b 100644 (file)
 
                 <allow send_destination="org.freedesktop.login1"
                        send_interface="org.freedesktop.login1.Manager"
-                       send_member="GetSeat"/>
+                       send_member="GetUserByPID"/>
 
                 <allow send_destination="org.freedesktop.login1"
                        send_interface="org.freedesktop.login1.Manager"
-                       send_member="ListSessions"/>
+                       send_member="GetSeat"/>
 
                 <allow send_destination="org.freedesktop.login1"
                        send_interface="org.freedesktop.login1.Manager"
-                       send_member="ListUsers"/>
+                       send_member="ListSessions"/>
 
                 <allow send_destination="org.freedesktop.login1"
                        send_interface="org.freedesktop.login1.Manager"
-                       send_member="ListMachines"/>
+                       send_member="ListUsers"/>
 
                 <allow send_destination="org.freedesktop.login1"
                        send_interface="org.freedesktop.login1.Manager"
                        send_interface="org.freedesktop.login1.Seat"
                        send_member="ActivateSession"/>
 
+                <allow send_destination="org.freedesktop.login1"
+                       send_interface="org.freedesktop.login1.Seat"
+                       send_member="SwitchTo"/>
+
+                <allow send_destination="org.freedesktop.login1"
+                       send_interface="org.freedesktop.login1.Seat"
+                       send_member="SwitchToPrevious"/>
+
+                <allow send_destination="org.freedesktop.login1"
+                       send_interface="org.freedesktop.login1.Seat"
+                       send_member="SwitchToNext"/>
+
                 <allow send_destination="org.freedesktop.login1"
                        send_interface="org.freedesktop.login1.Session"
                        send_member="Activate"/>
                        send_interface="org.freedesktop.login1.Session"
                        send_member="SetIdleHint"/>
 
+                <allow send_destination="org.freedesktop.login1"
+                       send_interface="org.freedesktop.login1.Session"
+                       send_member="TakeControl"/>
+
+                <allow send_destination="org.freedesktop.login1"
+                       send_interface="org.freedesktop.login1.Session"
+                       send_member="ReleaseControl"/>
+
+                <allow send_destination="org.freedesktop.login1"
+                       send_interface="org.freedesktop.login1.Session"
+                       send_member="TakeDevice"/>
+
+                <allow send_destination="org.freedesktop.login1"
+                       send_interface="org.freedesktop.login1.Session"
+                       send_member="ReleaseDevice"/>
+
+                <allow send_destination="org.freedesktop.login1"
+                       send_interface="org.freedesktop.login1.Session"
+                       send_member="PauseDeviceComplete"/>
+
                 <allow receive_sender="org.freedesktop.login1"/>
         </policy>
 
index b2d6df312165298d0a482b5ef7510f632f0158af..970ccd8d69d3a5fad72c1d804addce5df3cec5b4 100644 (file)
                        send_interface="org.freedesktop.machine1.Manager"
                        send_member="GetMachine"/>
 
+                <allow send_destination="org.freedesktop.machine1"
+                       send_interface="org.freedesktop.machine1.Manager"
+                       send_member="GetMachineByPID"/>
+
                 <allow receive_sender="org.freedesktop.machine1"/>
         </policy>
 
index fa5b5c62ea4fb6657e8765c33ab97928f71d64fb..9e2792fbf3630b7ff6e6593431cbda295d42eed0 100755 (executable)
@@ -29,7 +29,7 @@ filter_ignore() {
                                ;;
                        git)
                                git ls-files --others --ignore --exclude-standard --directory > "$listfile" || true
-                               grep -Fvf "$listfile"
+                               sed 's/^\.\///' | grep -xFvf "$listfile"
                                ;;
                esac
                rm -f "$listfile"
index 8a4d614253dcdf98ed7802908f11832e64b94fe2..3b368e8a261bdfff2c0c48f066ad116d0b90364e 100755 (executable)
@@ -101,7 +101,7 @@ writefile () {
                nl
        elif [ "$LOWLEVEL_PACKAGE_MANAGER" = "qlist" ]; then
                comment "new and old versions of conffiles, stored by emerge"
-               ignore "*.cfg_*"
+               ignore "*._cfg*"
                nl
        fi
        
index bd3bde63dda4ad25d1798f5d4e0fd5039aa02ab1..7028e3cb243da85a9b8b4419c85d0509cb944ea6 100644 (file)
@@ -2,7 +2,7 @@
 # Automatically generated file, do not edit
 # Created by gtk-query-immodules-2.0-32 from gtk+-2.24.22
 #
-# ModulesPath = /var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406/homedir/.gtk-2.0/2.10.0/i686-pc-linux-gnu/immodules:/var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406/homedir/.gtk-2.0/2.10.0/immodules:/var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406/homedir/.gtk-2.0/i686-pc-linux-gnu/immodules:/var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406/homedir/.gtk-2.0/immodules:/usr/lib32/gtk-2.0/2.10.0/i686-pc-linux-gnu/immodules:/usr/lib32/gtk-2.0/2.10.0/immodules:/usr/lib32/gtk-2.0/i686-pc-linux-gnu/immodules:/usr/lib32/gtk-2.0/immodules
+# ModulesPath = /var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406-r1/homedir/.gtk-2.0/2.10.0/i686-pc-linux-gnu/immodules:/var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406-r1/homedir/.gtk-2.0/2.10.0/immodules:/var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406-r1/homedir/.gtk-2.0/i686-pc-linux-gnu/immodules:/var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406-r1/homedir/.gtk-2.0/immodules:/usr/lib32/gtk-2.0/2.10.0/i686-pc-linux-gnu/immodules:/usr/lib32/gtk-2.0/2.10.0/immodules:/usr/lib32/gtk-2.0/i686-pc-linux-gnu/immodules:/usr/lib32/gtk-2.0/immodules
 #
 "/usr/lib32/gtk-2.0/2.10.0/immodules/im-ipa.so" 
 "ipa" "IPA" "gtk20" "/usr/share/locale" "" 
index 8a4675554697b05e12e910c5c18f592b331cbc48..503f0625b3dc885dddb64aceeddf3a41c0526dc3 100644 (file)
@@ -1,5 +1,5 @@
 # This file was automatically created based on description files (*.desc)
-# by sane-desc 3.5 from sane-backends 1.0.24 on Tue Jan 28 19:52:35 2014
+# by sane-desc 3.5 from sane-backends 1.0.24 on Tue Jun 17 19:41:14 2014
 #
 # The entries below are used to detect a USB device and change owner
 # and permissions on the "device node" used by libusb.
diff --git a/init.d/crypto-loop b/init.d/crypto-loop
deleted file mode 100755 (executable)
index 853bae2..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/files/crypto-loop.initd,v 1.4 2008/10/26 03:16:48 vapier Exp $
-
-depend() {
-       if [ -x /etc/init.d/root ]; then
-               need root
-       else
-               need checkroot
-       fi
-       need modules
-       before localmount
-}
-
-start() {
-       local status="0"
-
-       ebegin "Starting crypto loop devices"
-
-       if [ -e /etc/conf.d/crypto-loop ] ; then
-               egrep "^loop" /etc/conf.d/crypto-loop | \
-               while read loopline ; do
-                       eval ${loopline}
-
-                       local configured=$(awk -v MOUNT="${device}" \
-                               '($2 == MOUNT) { print "yes" }' /proc/mounts)
-
-                       if [ "${configured}" != "yes" ] ; then
-                               einfo "  Loop ${loop} on device ${device} (cipher ${cipher}, key size ${keysize}): "
-
-                               if [ -n "${hash}" ] ; then
-                                       /usr/sbin/hashalot -n ${keysize} ${hash} </dev/tty|\
-                                       /sbin/losetup -p 0 -e ${cipher}-${keysize} ${loop} ${device} ${other}
-                               else
-                                       /sbin/losetup -e ${cipher}-${keysize} ${loop} ${device} ${other}
-                               fi
-
-                               if [ $? -ne 0 ] ; then
-                                       ewarn "Failure configuring ${loop}.  Skipping."
-                                       status=1
-                               fi
-                       else
-                               ewarn "  Loop ${loop} on device ${device} are already configured"
-                       fi
-               done
-       fi
-       ewend ${status} "Failed to start some loop devices."
-
-       # We do not fail if some loop devices did not start ...
-       return 0
-}
-
-stop() {
-       local status="0"
-       for loop in $(ls /dev/loop[0-9] 2>/dev/null) ; do
-               losetup ${loop} > /dev/null 2>&1
-               if [ $? -eq 0 ] ; then
-                       ( umount ${loop} || swapoff "${loop}" ) >/dev/null 2>&1
-                       if ! /sbin/losetup -d ${loop} > /dev/null 2>&1; then
-                               ewarn "Failure deconfiguring ${loop}."
-                               status=1
-                       fi
-               fi
-       done
-       ewend ${status}
-}
-
-
-# vim:ts=4
index 5309423efb013cc68538e30e1dae47df6b6438a7..ed6fe0d00254dbae6330242cec637b6bc987bd95 100755 (executable)
@@ -463,7 +463,7 @@ _load_config()
                fi
        else
                if [ -z "$1" ]; then
-                       ewarn "No configuration specified; defaulting to DHCP"
+                       ewarn "config_${IFVAR} not specified; defaulting to DHCP"
                        config_0="dhcp"
                        config_index=1
                fi
diff --git a/inittab b/inittab
index ad7317fa23af24dfee819df5b67e45d4bb068d98..ab61c6308b38631604bc8164bdd685a3300232fb 100644 (file)
--- a/inittab
+++ b/inittab
@@ -9,7 +9,7 @@
 # Modified by:  Mike Frysinger, <vapier@gentoo.org>
 # Modified by:  Robin H. Johnson, <robbat2@gentoo.org>
 #
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/files/inittab-2.87,v 1.1 2010/01/08 16:55:07 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/files/inittab-2.87,v 1.2 2013/04/20 03:51:26 vapier Exp $
 
 # Default runlevel.
 id:3:initdefault:
@@ -44,8 +44,8 @@ c5:2345:respawn:/sbin/agetty 38400 tty5 linux
 c6:2345:respawn:/sbin/agetty 38400 tty6 linux
 
 # SERIAL CONSOLES
-#s0:12345:respawn:/sbin/agetty 115200 ttyS0 vt100
-#s1:12345:respawn:/sbin/agetty 115200 ttyS1 vt100
+#s0:12345:respawn:/sbin/agetty -L 115200 ttyS0 vt100
+#s1:12345:respawn:/sbin/agetty -L 115200 ttyS1 vt100
 
 # What to do at the "Three Finger Salute".
 ca:12345:ctrlaltdel:/sbin/shutdown -r now
@@ -56,4 +56,3 @@ ca:12345:ctrlaltdel:/sbin/shutdown -r now
 # extra at boot if /etc/init.d/xdm is not added
 # to the "default" runlevel.
 x:a:once:/etc/X11/startDM.sh
-
deleted file mode 120000 (symlink)
index 285b9129ce708d556deba0c9870cd7ec9de93bb6..0000000000000000000000000000000000000000
--- a/localtime
+++ /dev/null
@@ -1 +0,0 @@
-../usr/share/zoneinfo/Europe/Berlin
\ No newline at end of file
new file mode 100644 (file)
index 0000000000000000000000000000000000000000..96059c7854e1f571ddf97fd285a28df361c4c99d
Binary files /dev/null and b/localtime differ
index 49dc980c8f1bfb765db58b8d0c024030972ff772..18fe101b2dff8c43beaeb3c8b616f309d3a204f3 100644 (file)
@@ -55,6 +55,7 @@ ACCEPT_LICENSE=" \
         skype-eula \
         skype-4.0.0.7-copyright \
         Oracle-BCLA-JavaSE \
+       FraunhoferFDK \
 "
 
 #FETCHCOMMAND="/usr/bin/wget -t 5 --passive-ftp -P \${DISTDIR} \${URI}"
index 8e84c2f8664cfe12b6e35cd7863ae38618f9b3d2..45526ac8a543ef767a7671a173fd60b599d09da9 100644 (file)
@@ -24,6 +24,7 @@ app-text/docbook2odf-xsl-stylesheets
 
 ~dev-vcs/gitg-0.2.5
 
+~dev-db/sqlite-3.8.5
 ~dev-db/virtuoso-odbc-6.1.4
 ~dev-db/virtuoso-server-6.1.4
 
index 917a34763c344f44bf570d5f87774eece8de67b3..31792667a29dafce401f2ea9a250f5f0ef4a53fb 100644 (file)
@@ -28,7 +28,7 @@ app-misc/strigi                               hyperestraier inotify
 app-misc/tracker                       -xine
 app-misc/tomboy                                galago
 
-app-office/libreoffice                 nlpsolver
+app-office/libreoffice                 nlpsolver vlc
 
 app-portage/eix                                optimization strong-optimization
 
@@ -236,7 +236,7 @@ media-video/mjpegtools                  yv12
 media-video/mplayer                     3dnowext amrnb amrwb bs2b bl cpudetection dvdnav enca gmplayer live lzo md5sum mmxext mp2 nemesi nut opencore-amr pvr rar rtc srt teletext tga tivo xanim xvmc
 media-video/totem                       iplayer -tracker upnp-av
 media-video/transcode                   extrafilters fame lzo mjpeg network nuv postproc
-media-video/vlc                         atmo cdda cddax cdio corba daap dc1394 dirac egl fbosd fluidsynth gme growl httpd kate libass libcaca libtar libtiger libv4l libv4l2 linsys live matroska mod mpeg omxil portaudio rtsp schroedinger shine shout skins stream switcher taglib twolame vcdinfo vcdx vlm zvbi
+media-video/vlc                         atmo cdda cddax cdio chromaprint corba daap dc1394 dirac egl faad fbosd fluidsynth gme growl httpd kate libass libcaca libtar libtiger libv4l libv4l2 linsys live matroska mod mpeg omxil opencv portaudio rdp rtsp schroedinger sftp shine shout skins stream switcher taglib tremor twolame vcdinfo vcdx vlm zvbi
 
 net-analyzer/nagios-nrpe                command-args
 net-analyzer/nagios-plugins             nagios-dns nagios-ntp nagios-ping nagios-ssh
@@ -306,7 +306,7 @@ sys-apps/pciutils                       network-cron -zlib
 sys-apps/portage                        epydoc python3
 sys-apps/ppd                           development doc pb_pstorage
 sys-apps/usbutils                       network-cron
-sys-apps/util-linux                     ddate loop-aes
+sys-apps/util-linux                     ddate fdformat loop-aes tty-helpers
 sys-apps/vcb-python                    development vcb
 
 sys-auth/consolekit                     policykit
index 309815c63ca620c6edb1a2bdca290992f887efc1..59221b2b1cbb77aff37192c765f70f2600eb0b65 100644 (file)
@@ -1 +1 @@
-SEARCH_DIRS_MASK="/opt/icedtea-bin-6.1.12.7"
+SEARCH_DIRS_MASK="/opt/icedtea-bin-6.1.13.3"
index a0ed67e6e3e81367386c303f36e50b0141870199..832ba5fb6867208748f3351004cd5a5bc013cad9 100644 (file)
@@ -1 +1 @@
-SEARCH_DIRS_MASK="/opt/oracle-jdk-bin-1.7.0.55"
+SEARCH_DIRS_MASK="/opt/oracle-jdk-bin-1.7.0.60"
index 4fbb53f9f9eb4663a355b2b0b5dd8da1a63f6b0c..285ae3735e5b608ff99d8de4546dcdb8fd984ae4 100644 (file)
@@ -1 +1 @@
-SEARCH_DIRS_MASK="/opt/oracle-jre-bin-1.7.0.55"
+SEARCH_DIRS_MASK="/opt/oracle-jre-bin-1.7.0.60"
diff --git a/sane.d/canon_pp.conf b/sane.d/canon_pp.conf
deleted file mode 100644 (file)
index 14b3110..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-# Define which port to use if one isn't specified - you should only have 
-# one of these lines!
-# This is the default port to be used - others will be detected
-ieee1284 parport0
-
-
-# Define the location of our pixel weight file, can begin with ~/ if needed.
-# You can have as many of these as you like - lines with ports that don't exist
-# will be ignored.
-#
-# Parameters are:
-# calibrate /path/to/calibration-file port-name
-#
-# The format of port-name is dependant on your OS version.
-#
-# If a file isn't speficied, the default name will be
-# ~/.sane/canon_pp-calibration-[port-name]
-
-calibrate ~/.sane/canon_pp-calibration-pp0 parport0
-
-# calibrate /etc/sane/my_calibration parport1
-
-
-# Enable the next line if you're having trouble with ECP mode such as I/O 
-# errors.  Nibble mode is slower, but more reliable.
-
-#force_nibble
-
-# Set a default initialisation mode for each port.  Valid modes are:
-# AUTO         (attempts to automatically detect by trying both methods)
-# FB620P       (10101010 style.. also works for FB320P)
-# FB630P       (11001100 style.. also works for FB330P, N340P, N640P)
-
-init_mode AUTO parport0
-# init_mode FB620P parport0
-# init_mode FB630P parport0
diff --git a/sane.d/hpsj5s.conf b/sane.d/hpsj5s.conf
deleted file mode 100644 (file)
index 77fb4e4..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-#hpsj5s.conf
-#parport0
\ No newline at end of file
diff --git a/sane.d/mustek_pp.conf b/sane.d/mustek_pp.conf
deleted file mode 100644 (file)
index 17f0e26..0000000
+++ /dev/null
@@ -1,103 +0,0 @@
-# For documentation see sane-mustek_pp(5)
-
-# Global options:
-# ===============
-#
-# option no_epp
-#
-#          Disable parallel port mode EPP: works around a known bug in
-#          the Linux parport code. Enable this option, if the backend
-#          hangs when trying to access the parallel port in EPP mode:
-#
-#                # SANE_DEBUG_SANEI_PA4S2=128 scanimage -L
-#                ...
-#  hangs here  -> [sanei_pa4s2] sanei_pa4s2_readbyte: read in EPP mode
-#       
-# Scanner definition template:
-# ============================
-#
-#  scanner <name> <port> <type>
-#     option <optname> <optval>?
-#     option <optname> <optval>?
-#     ...
-#
-#  where:
-#
-#     <name> is an arbitrary name for the scanner (eg. Mustek-1200CP)
-#
-#     <port> is the parallel port to which the scanner is connected
-#            Possible values are 0x378, 0x278, and 0x3bc. For Linux, the
-#            mapping between ports an numbers is different for kernel
-#            version 2.2 and 2.4. Port 0x378 corresponds to lp0 on 2.4 kernel.
-#            If you are using libieee1284, you can as well use parport0, etc..
-#           If you use the magic value * the port is probed.
-#
-#     <type> is an identification of the scanner type.
-#            Possible values are:
-#              - cis600    (for Mustek 600CP & OEM versions),
-#              - cis1200   (for Mustek 1200CP & OEM versions),
-#              - cis1200+  (for Mustek 1200CP+ & OEM versions),
-#              - ccd300    (for Mustek 600 III EPP & OEM versions)
-#             - ... more types will be added in the future
-#     
-#     <optname> is a name of an option, and <optval> an optional value
-#               for the option.
-#               Currently available options for *CIS* type scanners are:
-#                 - top_adjust <value>: 
-#                      Vertical adjustment of origin, in millimeter.
-#                      Values between -5.0 and +5.0 mm are possible 
-#                      (floating point).
-#                      Default: 0.0
-#                 - slow_skip: 
-#                      Boolean option. Disables fast skipping to the start
-#                      of the scan region. May be necessary in case fast
-#                      skipping results in inaccuracies.
-#                      Default: fast skipping enabled             
-#                 - bw <value>:
-#                      Black/white discrimination value for lineart scans.
-#                      Pixel values below that value are considered black,
-#                      others are considered white. Range: 0-255.
-#                      Default: 127
-#
-#              Currently available options for *CCD* type scanners are:
-#                - wait_bank <value>
-#                     usecs to wait for a bank change. Positive integer
-#                     values are possible. You shouldn't mess with this
-#                     parameter.
-#                     Default: 700
-#                - bw <value>
-#                      Black/white discrimination value for lineart scans.
-#                      Pixel values below that value are considered black,
-#                      others are considered white. Range: 0-255.
-#                      Default: 127
-#                - top <value>
-#                     Scanlines to skip to the top area. Positive integer
-#                     values are possible. 47 and 56 are values I know of.
-#                     Default: 47
-#
-#
-# Example for a LifeTec LT9350 (Mustek 1200CP clone):
-#
-#    scanner LT9350 0x378 cis1200
-#       option top_adjust 0
-#       option bw 127
-#
-# Example for Mustek 6000P
-#
-#    scanner 6000P 0x378 ccd300
-#        option top 56
-#
-#
-# Uncomment/customize to your needs
-#
-# scanner Mustek-600CP 0x378 cis600
-# scanner Mustek-1200CP 0x378 cis1200
-# scanner Mustek-1200CP+ 0x378 cis1200+
-# scanner Mustek-600-IIIEP 0x378 ccd300
-#
-# auto probing:
-#
-# scanner mustek-cis600 * cis600
-# scanner mustek-cis1200 * cis1200
-# scanner mustek-cis1200+ * cis1200+
-# scanner mustek-ccd300 * ccd300
index 94e9a714d300424f4e6533358565fe99a4120507..9514165791f1dda859a3c9cc09a88446b53ac035 100644 (file)
@@ -5,7 +5,7 @@ description[ar]=أداة حالة البطارية
 description[as]=বেটাৰি'ৰ অৱস্থা নিৰীক্ষণৰ সৰঞ্জাম
 description[ast]=Utilidá d'estau de la batería
 description[az]=Batareya Vəziyyəti Tə'minatı
-description[be]=УÑ\82Ñ\83лка Ñ\81Ñ\82анÑ\83 Ð·Ð°Ñ\80аду батарэі
+description[be]=УÑ\82Ñ\8bлÑ\96Ñ\82а Ñ\81Ñ\82ану батарэі
 description[be@latin]=Pryłada adsočvańnia stanu akumulatara
 description[bg]=Инструмент за състоянието на батерията
 description[bn]=ব্যাটারি'র অবস্থা নিরীক্ষণের সরঞ্জাম
@@ -14,6 +14,7 @@ description[br]=Merour stad ar batiri
 description[bs]=Alatka za status baterije
 description[ca]=Utilitat de l'estat de la bateria
 description[ca@valencia]=Utilitat de l'estat de la bateria
+description[cmn]=電池狀態公用程式
 description[crh]=Pil Durumu Aracı
 description[cs]=Nástroj stavu baterie
 description[cy]=Cyfleuster Cyflwr Batri
@@ -65,7 +66,6 @@ description[ka]=ელემენტის მდგომარეობის
 description[kn]=ಬ್ಯಾಟರಿ ಸ್ಥಿತಿಯ ಸೌಲಭ್ಯ
 description[ko]=배터리 상태 유틸리티
 description[ku]=Amûra rewşa bataryayê
-description[ky]=Батарея Абалы Индикатору
 description[lt]=Baterijos būsenos pagalbinė programa
 description[lv]=Baterijas statusa utilīta
 description[mai]=बैटरी स्थिति उपयोगिता
@@ -100,6 +100,7 @@ description[th]=แอพเพล็ตแสดงสถานะแบตเ
 description[tr]=Pil Durumu Aracı
 description[ug]=باتارېيە ھالەت قورالى
 description[uk]=Утиліта індикації стану акумулятора
+description[ur]=بیٹری حالت سہولت
 description[vi]=Tiện ích xem trạng thái pin
 description[xh]=Isixhobo soBume beBhetri
 description[zh_CN]=电池状态工具
@@ -110,11 +111,12 @@ description[zh_TW]=電池狀態公用程式
 file=
 description=Battery power low
 description[af]=Battery amper pap
+description[am]=የባትሪው ሐይል ዝቅተኛ ነው 
 description[ar]=طاقة البطارية منخفضة
 description[as]=বেটাৰিৰ ক্ষমতা কম
 description[ast]=Batería baxa
 description[az]=Batareya həcmi alçaqdır
-description[be]=Ð\97аÑ\80ад Ð±Ð°Ñ\82аÑ\80Ñ\8dÑ\96 Ð½Ñ\96зкі
+description[be]=Ð\9cала Ñ\8dнеÑ\80гÑ\96Ñ\96 Ñ\9e Ð±Ð°Ñ\82аÑ\80Ñ\8dі
 description[be@latin]=Akumulatar razradžany
 description[bg]=Ниска мощност на батерията
 description[bn]=ব্যাটারির ক্ষমতা কম
@@ -123,6 +125,7 @@ description[br]=Izel youll ar pod-tredan
 description[bs]=Baterija skoro prazna
 description[ca]=Bateria amb càrrega baixa
 description[ca@valencia]=Bateria amb càrrega baixa
+description[cmn]=電池電量過低
 description[crh]=Pil gücü zayıf
 description[cs]=Téměř vybité baterie
 description[cy]=Mae pŵer y batri'n isel
@@ -173,7 +176,6 @@ description[ka]=დაბალი ძაბვა
 description[kn]=ಕೆಳಮಟ್ಟದಲ್ಲಿರುವ ಬ್ಯಾಟರಿ ವಿದ್ಯುಚ್ಚಕ್ತಿ
 description[ko]=배터리 전력이 부족합니다
 description[ku]=Hêza bataryayê qels e
-description[ky]=Батарея заряды толук түгөндү
 description[lt]=Baterija beveik išsikrovusi
 description[lv]=Baterijas enerģija zema
 description[mai]=बैटरी पावर कम
@@ -191,13 +193,13 @@ description[oc]=Batariá febla
 description[or]=ବ୍ଯାଟେରୀ  ବିଦ୍ଯୁତ କମ ଅଛି
 description[pa]=ਬੈਟਰੀ ਪਾਵਰ ਘੱਟ ਹੈ
 description[pl]=Akumulator jest na wyczerpaniu
-description[pt]=Bateria fraca
+description[pt]=Energia da bateria em baixo
 description[pt_BR]=Bateria fraca
 description[ro]=Acumulator pe terminate
 description[ru]=Батарея разряжена
 description[si]=වියළි කොෂ බලය අවම වී ඇත
 description[sk]=Batéria je slabá
-description[sl]=Baterija je skoraj prazna
+description[sl]=Napetost baterije je nizka
 description[sq]=Ngarkesë e ulët e baterisë
 description[sr]=Батерија слаба
 description[sr@latin]=Baterija slaba
@@ -208,6 +210,7 @@ description[th]=แบตเตอรี่ใกล้หมด
 description[tr]=Pil gücü zayıf
 description[ug]=باتارېيىدە توك ئاز قالدى
 description[uk]=Акумулятор розряджений
+description[ur]=بیٹری کی توانائی پست ہے
 description[vi]=Pin thấp
 description[wa]=Li batreye est flåwe
 description[xh]=Amandla ebhetri asezantsi
@@ -219,11 +222,11 @@ description[zh_TW]=電池電量過低
 file=
 description=Battery fully re-charged
 description[af]=Battery ten volle gelaai
-description[ar]=أُعيد شحن البطارية تماما
+description[ar]=أُعيد شحن البطارية تمامًا
 description[as]=বেটাৰি সম্পূৰ্ণৰূপে চাৰ্জ কৰা হৈছে
 description[ast]=Batería llena
 description[az]=Batareya tamamilə dolduruldu
-description[be]=Батарэя поўнасьцю перазараджана
+description[be]=Батарэя цалкам перанасілкована
 description[be@latin]=Akumulatar całkam zaradžany
 description[bg]=Батерията е напълно презаредена
 description[bn]=ব্যাটারি সম্পূর্ণরূপে চার্জ করা হয়েছে
@@ -232,6 +235,7 @@ description[br]=Pod-tredan adleuniet penn da benn
 description[bs]=Baterija je napunjena
 description[ca]=La bateria està completament carregada
 description[ca@valencia]=La bateria està completament carregada
+description[cmn]=電池電量全滿
 description[crh]=Pil tamamen doldu
 description[cs]=Baterie jsou plně nabity
 description[cy]=Mae'r batri wedi ail-drydanu’n llwyr
@@ -282,7 +286,6 @@ description[ka]=ელემენტი ბოლომდეა დამუ
 description[kn]=ಸಂಪೂರ್ಣವಾಗಿ ಮರು-ಚಾರ್ಜ್ ಆದಂತಹ ಬ್ಯಾಟರಿ
 description[ko]=배터리가 완전히 충전되었습니다!
 description[ku]=Batarya bi tevahî şarj bû
-description[ky]=Батарея толук заряддалды
 description[lt]=Baterija yra pilnai įkrauta.
 description[lv]=Baterija pilnīgi uzlādēta
 description[mai]=बैटरी पूर्णतः पुनः चार्ज
@@ -291,7 +294,7 @@ description[mk]=Батеријата е целосно наполнета
 description[ml]=ബാറ്ററി ചാര്‍ജ്ജ് നിറഞ്ഞു
 description[mn]=Зай дахин бүрэн цэнэглэгдлээ!
 description[mr]=बॅटरी पूर्णतः पुनःभारित
-description[ms]=Bateri dicas sepenuhnya
+description[ms]=Bateri dicas-semula sepenuhnya
 description[nb]=Batteriet er fullt oppladet
 description[ne]=ब्याट्री पूरा रिचार्ज भयो
 description[nl]=Accu is volledig opgeladen
@@ -300,13 +303,13 @@ description[oc]=Batariá completament recargada
 description[or]=ବ୍ଯାଟେରୀ  ପୂର୍ଣ୍ଣ ଭାବରେ ପୁନଃ-ଚାର୍ଜ ହୋଇଛି
 description[pa]=ਬੈਟਰੀ ਪੂਰੀ ਮੁੜ-ਚਾਰਜ ਹੋ ਗਈ ਹੈ
 description[pl]=Akumulator jest w pełni naładowany
-description[pt]=Bateria completamente carregada
+description[pt]=Bateria completamente recarregada
 description[pt_BR]=A bateria está totalmente recarregada
 description[ro]=Acumulator complet reîncărcat
 description[ru]=Батарея полностью заряжена
 description[si]=වියළි කෝෂය සම්පූර්ණයෙන්ම බලගැන්වී ඇත
 description[sk]=Batéria je plne nabitá
-description[sl]=Baterija je znova povsem napolnjena.
+description[sl]=Baterija je znova povsem napolnjena
 description[sq]=Bateria e ringarkuar plot
 description[sr]=Батерија у потпуности напуњена
 description[sr@latin]=Baterija u potpunosti napunjena
@@ -316,7 +319,8 @@ description[te]=బాటరీ పూర్తిగా తిరిగి ఛ
 description[th]=แบตเตอรี่อัดเต็มแล้ว
 description[tr]=Pil tamamen doldu
 description[ug]=باتارېيە زەرەتلىنىپ بولدى
-description[uk]=Акумулятор повністю перезаряджено
+description[uk]=Акумулятор повністю заряджено
+description[ur]=بیٹری مکمل طور پر دوبارہ چارج ہوگئی ہے
 description[vi]=Pin đã được sạc đầy.
 description[wa]=Li batreye est tcherdjeye a make
 description[xh]=Ibhetri sele igcwaliswe ngokupheleleyo kwakhona
diff --git a/sysstat b/sysstat
index 348add68a433b4313978e2bdb5eada9efcece4a8..8694e31debcd142f775f2c7900ccf2be615def45 100644 (file)
--- a/sysstat
+++ b/sysstat
@@ -1,4 +1,4 @@
-# sysstat-10.2.0 configuration file.
+# sysstat-10.2.1 configuration file.
 
 # How long to keep log files (in days).
 # If value is greater than 28, then log files are kept in
index 54f6833a175aa256742f50110e6bd618eabcb208..d106d00b5ecd7586ffbb99d97cdaca7f97cba06f 100644 (file)
 #ForwardToSyslog=yes
 #ForwardToKMsg=no
 #ForwardToConsole=no
+#ForwardToWall=yes
 #TTYPath=/dev/console
 #MaxLevelStore=debug
 #MaxLevelSyslog=debug
 #MaxLevelKMsg=notice
 #MaxLevelConsole=info
+#MaxLevelWall=emerg
index c0abf01b0c0eb3e8be16347bb3e9b21b60353753..79f96ec05bb366dd3fd89a723ba393032ef491f8 100644 (file)
@@ -24,3 +24,5 @@
 #LidSwitchIgnoreInhibited=yes
 #IdleAction=ignore
 #IdleActionSec=30min
+#RuntimeDirectorySize=10%
+#RemoveIPC=yes
index 7b03c8782bcf35a094da40330afc97039729accc..65a35a06896db476af1dcf25d04092271b74709e 100644 (file)
 #ShowStatus=yes
 #CrashChVT=1
 #CPUAffinity=1 2
-#DefaultStandardOutput=journal
-#DefaultStandardError=inherit
 #JoinControllers=cpu,cpuacct net_cls,net_prio
 #RuntimeWatchdogSec=0
 #ShutdownWatchdogSec=10min
 #CapabilityBoundingSet=
+#SystemCallArchitectures=
 #TimerSlackNSec=
+#DefaultTimerAccuracySec=1min
+#DefaultStandardOutput=journal
+#DefaultStandardError=inherit
+#DefaultTimeoutStartSec=90s
+#DefaultTimeoutStopSec=90s
+#DefaultRestartSec=100ms
+#DefaultStartLimitInterval=10s
+#DefaultStartLimitBurst=5
 #DefaultEnvironment=
+#DefaultCPUAccounting=no
+#DefaultBlockIOAccounting=no
+#DefaultMemoryAccounting=no
 #DefaultLimitCPU=
 #DefaultLimitFSIZE=
 #DefaultLimitDATA=
index 7bfe0808b1e27cf0174f12063eb6a963e881441e..baabfc6a1b29d999daf5ae2e2187c8f5449fa2bb 120000 (symlink)
@@ -1 +1 @@
-/usr/lib/systemd/system/getty@.service
\ No newline at end of file
+../../../../usr/lib/systemd/system/getty@.service
\ No newline at end of file
index 2bc8b1cc5059694d36e9c3e2f18d243ceda60c09..e6177c7f10086143393a43bff27f759767b1d044 120000 (symlink)
@@ -1 +1 @@
-/usr/lib/systemd/system/remote-fs.target
\ No newline at end of file
+../../../../usr/lib/systemd/system/remote-fs.target
\ No newline at end of file
index 4a0129a98484740d6f98aa5704abf36b3f6706eb..8c7ecde727a622cca2a026702355978181c86d2a 100644 (file)
 #LogTarget=console
 #LogColor=yes
 #LogLocation=no
+#SystemCallArchitectures=
+#TimerSlackNSec=
+#DefaultTimerAccuracySec=1min
 #DefaultStandardOutput=inherit
 #DefaultStandardError=inherit
+#DefaultTimeoutStartSec=90s
+#DefaultTimeoutStopSec=90s
+#DefaultRestartSec=100ms
+#DefaultStartLimitInterval=10s
+#DefaultStartLimitBurst=5
+#DefaultEnvironment=
+#DefaultLimitCPU=
+#DefaultLimitFSIZE=
+#DefaultLimitDATA=
+#DefaultLimitSTACK=
+#DefaultLimitCORE=
+#DefaultLimitRSS=
+#DefaultLimitNOFILE=
+#DefaultLimitAS=
+#DefaultLimitNPROC=
+#DefaultLimitMEMLOCK=
+#DefaultLimitLOCKS=
+#DefaultLimitSIGPENDING=
+#DefaultLimitMSGQUEUE=
+#DefaultLimitNICE=
+#DefaultLimitRTPRIO=
+#DefaultLimitRTTIME=
index 2051dbc23b2a313b42796d6e315ea8fbd8d28d12..b57a28c53b1bf21311cf71a5538d5b12d8f87b35 100644 (file)
@@ -16,7 +16,7 @@ OnlyShowIn=MATE;
 X-MATE-Bugzilla-Bugzilla=MATE
 X-MATE-Bugzilla-Product=mate-power-manager
 X-MATE-Bugzilla-Component=mate-power-manager
-X-MATE-Bugzilla-Version=1.6.3
+X-MATE-Bugzilla-Version=1.8.0
 X-MATE-Bugzilla-ExtraInfoScript=mate-power-bugreport.sh
 #X-MATE-AutoRestart=true
 
index 80e56d41f107a2ece0f2c1fd88b53edac081e18a..3709cdea5a3bb4fc5d92a32adc1ffbaacf4d420a 100644 (file)
@@ -17,4 +17,4 @@ X-MATE-Autostart-Notify=true
 X-MATE-Bugzilla-Bugzilla=MATE
 X-MATE-Bugzilla-Product=mate-screensaver
 X-MATE-Bugzilla-Component=general
-X-MATE-Bugzilla-Version=1.6.1
+X-MATE-Bugzilla-Version=1.8.0
index 230662d9aa2937c571ec93c81cecd31f13e5a76d..500ed8972a38f42d8ae3b6f02269274de59d41d9 100644 (file)
@@ -1,8 +1,12 @@
 [Desktop Entry]
 Name=PolicyKit Authentication Agent
-Name[de]=Legitimationsdienst von PolicyKit
+Name[de]=PolicyKit-Legitimationsagent
 Name[en_GB]=PolicyKit Authentication Agent
+Name[ru]=Агент аутентификации PolicyKit
 Comment=PolicyKit Authentication Agent for the MATE Desktop
+Comment[de]=PolicyKit-Legitimationsagent für die MATE-Arbeitsumgebung
+Comment[en_GB]=PolicyKit Authentication Agent for the MATE Desktop
+Comment[ru]=Агент аутентификации PolicyKit для рабочей среды MATE
 Exec=/usr/libexec/polkit-mate-authentication-agent-1
 Terminal=false
 Type=Application
index 2b917cc1da556d9d3cbb7cb628d5f677ca8f1021..258494b23a2bd9635ee45d386f2ccb9ba744b454 100644 (file)
@@ -17,6 +17,7 @@
 
   <!-- Read in overrides and child menus from applications-merged/ -->
   <DefaultMergeDirs/>
+  <MergeDir>applications-merged</MergeDir>
 
   <!-- Accessories submenu -->
   <Menu>
index 18b7e17c3d75241ac82269600d86f76ffdb2002b..29e07b79f00edc60b4d9d2280a0a7f0a0eb3248a 100644 (file)
@@ -12,6 +12,7 @@
 
   <!-- Read in overrides and child menus from applications-merged/ -->
   <DefaultMergeDirs/>
+  <MergeDir>preferences-merged</MergeDir>
 
   <!-- Add a link to the control center -->
   <Include>
@@ -33,6 +34,7 @@
         </Not>
       </And>
     </Include>
+    <MergeFile>mate-preferences-categories.menu</MergeFile>
   </Menu>
 
   <!-- System Settings -->
index 3bc1f8c6ada1a7509c14dcb7c2996f337125c43d..1c75bd3092df4cf38d2fb31c9219fb4d3a1befe5 120000 (symlink)
@@ -1 +1 @@
-/etc/systemd/user
\ No newline at end of file
+../../systemd/user
\ No newline at end of file
diff --git a/xinetd.d/cvspserver b/xinetd.d/cvspserver
deleted file mode 100644 (file)
index 0f2edb0..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-service cvspserver
-{
-       disable         = yes
-       socket_type     = stream
-       wait            = no
-       user            = root
-       log_type        = FILE /var/log/cvspserver
-       protocol        = tcp
-       env             = HOME=/var/cvsroot
-       log_on_failure  += USERID
-       port            = 2401
-       server          = /usr/bin/cvs
-       server_args     = -f --allow-root=/var/cvsroot pserver
-}