public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-02-07 23:22 Manuel Nickschas
  0 siblings, 0 replies; 131+ messages in thread
From: Manuel Nickschas @ 2011-02-07 23:22 UTC (permalink / raw
  To: gentoo-commits

commit:     c0c828b78cd2de6880e75d15b007381686a12ce1
Author:     Manuel Nickschas <sputnick <AT> quassel-irc <DOT> org>
AuthorDate: Mon Feb  7 23:18:32 2011 +0000
Commit:     Manuel Nickschas <sputnick <AT> quassel-irc <DOT> org>
CommitDate: Mon Feb  7 23:21:42 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=c0c828b7

Add a list of packages with conditional inherits

For now, only konsole is problematic in that it is no longer part kdebase-apps,
but has its own repo. Since it will apparently end up in the kdebase tarbell for
releases, we need to make the kde4-base inherit conditional.

---
 Documentation/inherit_fu_pkgs |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/Documentation/inherit_fu_pkgs b/Documentation/inherit_fu_pkgs
new file mode 100644
index 0000000..33c7a2a
--- /dev/null
+++ b/Documentation/inherit_fu_pkgs
@@ -0,0 +1,6 @@
+The listed packages have moved out of their module into standalone git repos
+and now need to inherit from kde4-base instead of -meta in the live version.
+For now, we use a conditional inherit until we know in which tarballs they're
+going to end up in stable releases.
+
+kde-base/konsole



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-02-09 14:29 Steffen Stramm
  0 siblings, 0 replies; 131+ messages in thread
From: Steffen Stramm @ 2011-02-09 14:29 UTC (permalink / raw
  To: gentoo-commits

commit:     ba3446325cbc30fbdff8f6cbaeabda943fac70e6
Author:     krytzz <krytzz <AT> soylent <DOT> eu>
AuthorDate: Wed Feb  9 14:28:41 2011 +0000
Commit:     Steffen Stramm <krytzz <AT> soylent <DOT> eu>
CommitDate: Wed Feb  9 14:28:41 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=ba344632

[Documentation] added kwrite,kate to fu_pkgs

---
 Documentation/inherit_fu_pkgs |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/Documentation/inherit_fu_pkgs b/Documentation/inherit_fu_pkgs
index 33c7a2a..cd69cdc 100644
--- a/Documentation/inherit_fu_pkgs
+++ b/Documentation/inherit_fu_pkgs
@@ -3,4 +3,6 @@ and now need to inherit from kde4-base instead of -meta in the live version.
 For now, we use a conditional inherit until we know in which tarballs they're
 going to end up in stable releases.
 
+kde-base/kate
 kde-base/konsole
+kde-base/kwrite



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-02-11  9:34 Dennis Schridde
  0 siblings, 0 replies; 131+ messages in thread
From: Dennis Schridde @ 2011-02-11  9:34 UTC (permalink / raw
  To: gentoo-commits

commit:     b9e5a05733bc2d085a1719a7831569582237ea8f
Author:     Dennis Schridde <devurandom <AT> gmx <DOT> net>
AuthorDate: Fri Feb 11 08:23:23 2011 +0000
Commit:     Dennis Schridde <devurandom <AT> gmx <DOT> net>
CommitDate: Fri Feb 11 09:34:31 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b9e5a057

[Documentation/metadata-mirror-update.sh] More sophisticated version of the script, preserves filetimes for git+svn

---
 Documentation/metadata-mirror-update.sh |   39 +++++++++++++++++++++++--------
 1 files changed, 29 insertions(+), 10 deletions(-)

diff --git a/Documentation/metadata-mirror-update.sh b/Documentation/metadata-mirror-update.sh
old mode 100644
new mode 100755
index 6ae9e1b..74f83e3
--- a/Documentation/metadata-mirror-update.sh
+++ b/Documentation/metadata-mirror-update.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 # Run this script via cronjob to update your metadata mirror
 
@@ -18,19 +18,38 @@ METADATA_MIRROR_DIR=/path/to/your/mirror/dir
 #    portdbapi.auxdbmodule = portage.cache.sqlite.database
 
 die() {
-        echo "Usage: $0 <overlay>" 1>&2
-        echo "ERROR: $@" 1>&2
-        exit 255
+	echo "USAGE: $0 <overlay>" 1>&2
+	echo "ERROR: $@" 1>&2
+	exit 255
 }
 
 [[ "$1" ]] || die 'overlay'
 overlay="$1" ; shift
 
-case $overlay in
-	kde) update="cd $METADATA_MIRROR_DIR/kde/repo/ && git pull" ;;
-	*) die "unknown overlay: $overlay" ;;
+if [ -e "$METADATA_MIRROR_DIR/$overlay/repo/.svn" ] ; then
+	type=svn
+elif [ -e "$METADATA_MIRROR_DIR/$overlay/repo/.git" ] ; then
+	type=git
+else
+	die "Unable to determine overlay type for $overlay"
+fi
+
+cd $METADATA_MIRROR_DIR/$overlay/repo || cd "failed to cd to $METADATA_MIRROR_DIR/$overlay/repo"
+
+case "$type" in
+	svn)
+		if ! grep "^use-commit-times = yes" $HOME/.subversion/config ; then
+			mkdir -p $HOME/.subversion
+			echo -e "[miscellany]\nuse-commit-times = yes" >> $HOME/.subversion/config || die 'enabling file time preservation failed'
+		fi
+		svn cleanup && svn update --force || die 'svn update failed'
+		;;
+	git)
+		git pull || die 'git update failed'
+		/usr/local/bin/git-set-file-times || die 'setting file times failed'
+		;;
+	*)
+		die "Unsupported overlay type '$type' for $overlay"
 esac
 
-if $update || die 'update failed' ; then
-	exec egencache --config-root=$METADATA_MIRROR_DIR/$overlay/ --cache-dir=$METADATA_MIRROR_DIR/cache/ --repo=$overlay --update
-fi
+exec egencache --config-root=$METADATA_MIRROR_DIR/$overlay/ --cache-dir=$METADATA_MIRROR_DIR/cache/ --repo=$overlay --update



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-02-11  9:39 Dennis Schridde
  0 siblings, 0 replies; 131+ messages in thread
From: Dennis Schridde @ 2011-02-11  9:39 UTC (permalink / raw
  To: gentoo-commits

commit:     c5f6b96ea5009b70419a2d98ded204a353790b80
Author:     Dennis Schridde <devurandom <AT> gmx <DOT> net>
AuthorDate: Fri Feb 11 09:38:41 2011 +0000
Commit:     Dennis Schridde <devurandom <AT> gmx <DOT> net>
CommitDate: Fri Feb 11 09:38:41 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=c5f6b96e

[Documentation/metadata-mirror-update.sh] Exchange config-file-editing hack against pure commandline variant

---
 Documentation/metadata-mirror-update.sh |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/Documentation/metadata-mirror-update.sh b/Documentation/metadata-mirror-update.sh
index 74f83e3..fc2b7b7 100755
--- a/Documentation/metadata-mirror-update.sh
+++ b/Documentation/metadata-mirror-update.sh
@@ -38,11 +38,7 @@ cd $METADATA_MIRROR_DIR/$overlay/repo || cd "failed to cd to $METADATA_MIRROR_DI
 
 case "$type" in
 	svn)
-		if ! grep "^use-commit-times = yes" $HOME/.subversion/config ; then
-			mkdir -p $HOME/.subversion
-			echo -e "[miscellany]\nuse-commit-times = yes" >> $HOME/.subversion/config || die 'enabling file time preservation failed'
-		fi
-		svn cleanup && svn update --force || die 'svn update failed'
+		svn cleanup && svn update --force --config-option=config:miscellany:use-commit-times=yes || die 'svn update failed'
 		;;
 	git)
 		git pull || die 'git update failed'



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-02-27  9:45 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-02-27  9:45 UTC (permalink / raw
  To: gentoo-commits

commit:     9be6cd68cbd6d89ffe4b887efc6b615601697698
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Sun Feb 27 09:45:50 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Feb 27 09:45:50 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=9be6cd68

[maintainers] Added upgrade notes

---
 Documentation/Upgrade-4.4-4.6-Notes |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/Documentation/Upgrade-4.4-4.6-Notes b/Documentation/Upgrade-4.4-4.6-Notes
new file mode 100644
index 0000000..ac52edf
--- /dev/null
+++ b/Documentation/Upgrade-4.4-4.6-Notes
@@ -0,0 +1,5 @@
+
+* kbluetooth needs to be removed from world
+* digikam and kipi-plugins upgrade to 1.8.0 (current stable does not build anymore)
+
+



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-03-12 17:45 Jonathan Callen
  0 siblings, 0 replies; 131+ messages in thread
From: Jonathan Callen @ 2011-03-12 17:45 UTC (permalink / raw
  To: gentoo-commits

commit:     6e03831088a7cd883630741257d1c278f89c209b
Author:     abcd <abcd <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 12 17:45:45 2011 +0000
Commit:     Jonathan Callen <abcd <AT> gentoo <DOT> org>
CommitDate: Sat Mar 12 17:45:45 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=6e038310

[Documentation] Add most of kdegraphics to the "bad list"

---
 Documentation/inherit_fu_pkgs |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/Documentation/inherit_fu_pkgs b/Documentation/inherit_fu_pkgs
index c233108..629fd8f 100644
--- a/Documentation/inherit_fu_pkgs
+++ b/Documentation/inherit_fu_pkgs
@@ -7,3 +7,19 @@ kde-base/kate
 kde-base/konsole
 kde-base/kwrite
 kde-base/katepart
+
+kde-base/gwenview
+kde-base/kamera
+kde-base/kcolorchooser
+kde-base/kdegraphics-strigi-analyzer
+kde-base/kgamma
+kde-base/koulorpaint
+kde-base/kruler
+kde-base/ksaneplugin
+kde-base/ksnapshot
+kde-base/libkdcraw
+kde-base/libkexiv2
+kde-base/libkipi
+kde-base/libksane
+kde-base/svgpart
+kde-base/thumbnailers



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-10 22:50 Alexey Shvetsov
  0 siblings, 0 replies; 131+ messages in thread
From: Alexey Shvetsov @ 2011-04-10 22:50 UTC (permalink / raw
  To: gentoo-commits

commit:     d39c10345bfd556fc039e38d32edb1264383aca3
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 10 22:49:45 2011 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Sun Apr 10 22:49:45 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=d39c1034

Update inherit_fu list

---
 Documentation/inherit_fu_pkgs |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/Documentation/inherit_fu_pkgs b/Documentation/inherit_fu_pkgs
index 629fd8f..943965c 100644
--- a/Documentation/inherit_fu_pkgs
+++ b/Documentation/inherit_fu_pkgs
@@ -23,3 +23,25 @@ kde-base/libkipi
 kde-base/libksane
 kde-base/svgpart
 kde-base/thumbnailers
+kde-base/blinken
+kde-base/cantor
+kde-base/kalgebra
+kde-base/kalzium
+kde-base/kanagram
+kde-base/kbruch
+kde-base/kgeography
+kde-base/khangman
+kde-base/kig
+kde-base/kiten
+kde-base/klettres
+kde-base/kmplot
+kde-base/kstars
+kde-base/ktouch
+kde-base/kturtle
+kde-base/kwordquiz
+kde-base/libkdeedu
+kde-base/marble
+kde-base/parley
+kde-base/rocs
+kde-base/step
+



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-17 20:30 Theo Chatzimichos
  0 siblings, 0 replies; 131+ messages in thread
From: Theo Chatzimichos @ 2011-04-17 20:30 UTC (permalink / raw
  To: gentoo-commits

commit:     e57c01ba05bbff60acb843a0c8f3cda36fab125a
Author:     Theo Chatzimichos <tampakrap <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 17 20:30:49 2011 +0000
Commit:     Theo Chatzimichos <tampakrap <AT> gentoo <DOT> org>
CommitDate: Sun Apr 17 20:30:49 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e57c01ba

Initial commit of the KDE/Qt stabilization list

---
 Documentation/kde46_stable_list |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
new file mode 100644
index 0000000..134b334
--- /dev/null
+++ b/Documentation/kde46_stable_list
@@ -0,0 +1,17 @@
+# Put here any KDE / Qt packages that should be stabilized
+# The list should include core KDE and Qt packages, their depedencies and extragear/misc KDE/Qt apps as well
+# Please:
+# - Keep the list sorted
+# - Include exact revision of the package
+# - Put the package under the according category
+
+# Qt 4.7 and deps
+
+
+# KDE 4.6 and deps
+
+
+# Misc Qt apps and deps
+
+
+# Misc/Extragear KDE apps and deps



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-17 22:45 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-17 22:45 UTC (permalink / raw
  To: gentoo-commits

commit:     759d039d85b950bc45f4f99a4102f18567161725
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Sun Apr 17 22:47:58 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Apr 17 22:47:58 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=759d039d

[stablelist] added digikam plus deps

---
 Documentation/kde46_stable_list |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index 134b334..4efb697 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -15,3 +15,11 @@
 
 
 # Misc/Extragear KDE apps and deps
+
+# digikam
+=dev-libs/libf2c-20090407-r1
+=media-gfx/digikam-1.9.0
+=media-plugins/kipi-plugins-1.9.0
+=media-libs/lensfun-0.2.5-r1
+=sci-libs/clapack-3.2.1-r3
+



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-18 11:20 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-18 11:20 UTC (permalink / raw
  To: gentoo-commits

commit:     d1bab23de48b3af306aaacfebbac9ca123bfc186
Author:     Andreas K. Huettel <andreas.huettel <AT> physik <DOT> uni-r <DOT> de>
AuthorDate: Mon Apr 18 11:18:25 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Apr 18 11:18:25 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=d1bab23d

[stablelist] Added bug numbers for dep stablereqs

---
 Documentation/kde46_stable_list |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index 4efb697..35ad988 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -17,9 +17,9 @@
 # Misc/Extragear KDE apps and deps
 
 # digikam
-=dev-libs/libf2c-20090407-r1
+# =dev-libs/libf2c-20090407-r1 (filed as bug 364011)
 =media-gfx/digikam-1.9.0
 =media-plugins/kipi-plugins-1.9.0
 =media-libs/lensfun-0.2.5-r1
-=sci-libs/clapack-3.2.1-r3
+# =sci-libs/clapack-3.2.1-r3 (filed as bug 364013)
 



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-19 21:53 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-19 21:53 UTC (permalink / raw
  To: gentoo-commits

commit:     417da9933581547703d4b97beb2b5418adb58cb0
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Tue Apr 19 21:56:01 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue Apr 19 21:56:01 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=417da993

[stablelist] update

---
 Documentation/kde46_stable_list |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index 35ad988..25a94ad 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -16,10 +16,11 @@
 
 # Misc/Extragear KDE apps and deps
 
-# digikam
-# =dev-libs/libf2c-20090407-r1 (filed as bug 364011)
 =media-gfx/digikam-1.9.0
 =media-plugins/kipi-plugins-1.9.0
-=media-libs/lensfun-0.2.5-r1
+
+
+# =dev-libs/libf2c-20090407-r1 (filed as bug 364011)
+# =media-libs/lensfun-0.2.5-r1 (filed as bug 364173)
 # =sci-libs/clapack-3.2.1-r3 (filed as bug 364013)
 



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-19 22:20 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-19 22:20 UTC (permalink / raw
  To: gentoo-commits

commit:     7d1338ae1fac142137fa1e03d82678d716a92527
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Tue Apr 19 22:23:20 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue Apr 19 22:23:20 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=7d1338ae

[stablelist] update

---
 Documentation/kde46_stable_list |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index 25a94ad..20f9d05 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -11,6 +11,14 @@
 # KDE 4.6 and deps
 
 
+# phonon (filed as bug 364175)
+# media-libs/phonon
+# media-libs/phonon-gstreamer
+# media-libs/phonon-vlc
+# media-libs/phonon-xine
+
+
+
 # Misc Qt apps and deps
 
 



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-22 18:33 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-22 18:33 UTC (permalink / raw
  To: gentoo-commits

commit:     5298e76c257f2c247ae317b3b89dbc25bd0910ee
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Fri Apr 22 18:36:08 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Apr 22 18:36:08 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=5298e76c

[stablelist] update

---
 Documentation/kde46_stable_list |   64 ++++++++++++++++++++++++++++++++++----
 1 files changed, 57 insertions(+), 7 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index 20f9d05..c888673 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -11,11 +11,47 @@
 # KDE 4.6 and deps
 
 
-# phonon (filed as bug 364175)
-# media-libs/phonon
-# media-libs/phonon-gstreamer
-# media-libs/phonon-vlc
-# media-libs/phonon-xine
+=app-office/akonadi-server-1.5.2
+=dev-libs/libattica-0.2.0
+=dev-libs/soprano-2.6.0 
+=kde-misc/polkit-kde-kcmodules-0.98_pre20101127
+# media-libs/phonon (filed as bug 364175)
+# media-libs/phonon-gstreamer (filed as bug 364175)
+# media-libs/phonon-vlc (filed as bug 364175)
+# media-libs/phonon-xine (filed as bug 364175)
+=sys-auth/polkit-kde-agent-0.99.0
+=sys-auth/polkit-qt-0.99.0
+
+
+# KDEPIM 4.4.11.1 and deps
+
+
+=kde-base/akonadi-4.4.11.1
+=kde-base/akregator-4.4.11.1
+=kde-base/blogilo-4.4.11.1
+=kde-base/kabcclient-4.4.11.1
+=kde-base/kaddressbook-4.4.11.1
+=kde-base/kalarm-4.4.11.1
+=kde-base/kdepim-icons-4.4.11.1
+=kde-base/kdepim-kresources-4.4.11.1
+=kde-base/kdepim-meta-4.4.11.1
+=kde-base/kdepim-strigi-analyzer-4.4.11.1
+=kde-base/kdepim-runtime-4.4.11.1
+=kde-base/kdepim-wizards-4.4.11.1
+=kde-base/kjots-4.4.11.1
+=kde-base/kleopatra-4.4.11.1
+=kde-base/kmail-4.4.11.1
+=kde-base/knode-4.4.11.1
+=kde-base/knotes-4.4.11.1
+=kde-base/konsolekalendar-4.4.11.1
+=kde-base/kontact-4.4.11.1
+=kde-base/korganizer-4.4.11.1
+=kde-base/ktimetracker-4.4.11.1
+=kde-base/libkdepim-4.4.11.1
+=kde-base/libkleo-4.4.11.1
+=kde-base/libkpgp-4.4.11.1
+=kde-base/kdepim-l10n-4.4.11.1
+
 
 
 
@@ -24,11 +60,25 @@
 
 # Misc/Extragear KDE apps and deps
 
+# digikam
+
 =media-gfx/digikam-1.9.0
 =media-plugins/kipi-plugins-1.9.0
-
-
 # =dev-libs/libf2c-20090407-r1 (filed as bug 364011)
 # =media-libs/lensfun-0.2.5-r1 (filed as bug 364173)
 # =sci-libs/clapack-3.2.1-r3 (filed as bug 364013)
 
+# koffice
+
+=app-office/karbon-2.3.3
+=app-office/kexi-2.3.3
+=app-office/koffice-data-2.3.3
+=app-office/koffice-l10n-2.3.3
+=app-office/koffice-libs-2.3.3
+=app-office/koffice-meta-2.3.3
+=app-office/kplato-2.3.3
+=app-office/kpresenter-2.3.3
+=app-office/krita-2.3.3
+=app-office/kspread-2.3.3
+=app-office/kword-2.3.3
+



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-22 20:18 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-22 20:18 UTC (permalink / raw
  To: gentoo-commits

commit:     d4882bae19c0d7c6ecfa31eb684fc3d5149b0a61
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Fri Apr 22 20:20:47 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Apr 22 20:20:47 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=d4882bae

[stablelist] update

---
 Documentation/kde46_stable_list |   15 ++++++++++++++-
 1 files changed, 14 insertions(+), 1 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index c888673..3e56da3 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -13,14 +13,22 @@
 
 =app-office/akonadi-server-1.5.2
 =dev-libs/libattica-0.2.0
+=dev-libs/shared-desktop-ontologies-0.5
 =dev-libs/soprano-2.6.0 
-=kde-misc/polkit-kde-kcmodules-0.98_pre20101127
+=dev-python/PyQt4-4.8.3					# 10 open bugs
+=dev-python/sip-4.12.1
+=kde-misc/polkit-kde-kcmodules-0.98_pre20101127		# 1 open bug
+=kde-misc/kwebkitpart-0.9.6				# 1 OPEN SEC BUG
 # media-libs/phonon (filed as bug 364175)
 # media-libs/phonon-gstreamer (filed as bug 364175)
 # media-libs/phonon-vlc (filed as bug 364175)
 # media-libs/phonon-xine (filed as bug 364175)
+=net-libs/libbluedevil-1.8.1
+=net-wireless/bluedevil-1.1
 =sys-auth/polkit-kde-agent-0.99.0
 =sys-auth/polkit-qt-0.99.0
+=x11-misc/google-gadgets-0.11.2				# 3 open bugs
+
 
 
 # KDEPIM 4.4.11.1 and deps
@@ -82,3 +90,8 @@
 =app-office/kspread-2.3.3
 =app-office/kword-2.3.3
 
+# kdevelop
+
+=dev-util/kdevelop-4.2.2
+=dev-util/kdevplatform-1.2.2
+



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-22 22:08 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-22 22:08 UTC (permalink / raw
  To: gentoo-commits

commit:     f37fefad24417f388ea02026c17c199e7c2f7437
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Fri Apr 22 22:10:40 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Apr 22 22:10:40 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f37fefad

[stablelist] added qt; added kde (work in progress)

---
 Documentation/kde46_stable_list |  318 ++++++++++++++++++++++++++++++++++++++-
 1 files changed, 315 insertions(+), 3 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index 3e56da3..e0d16b6 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -5,10 +5,318 @@
 # - Include exact revision of the package
 # - Put the package under the according category
 
-# Qt 4.7 and deps
 
+# Qt 4.7
 
-# KDE 4.6 and deps
+
+=x11-libs/qt-assistant-4.7.2
+=x11-libs/qt-core-4.7.2-r1
+=x11-libs/qt-dbus-4.7.2
+=x11-libs/qt-declarative-4.7.2-r1
+=x11-libs/qt-demo-4.7.2
+=x11-libs/qt-gui-4.7.2
+=x11-libs/qt-multimedia-4.7.2
+=x11-libs/qt-opengl-4.7.2
+=x11-libs/qt-qt3support-4.7.2
+=x11-libs/qt-script-4.7.2
+=x11-libs/qt-sql-4.7.2
+=x11-libs/qt-svg-4.7.2
+=x11-libs/qt-test-4.7.2
+=x11-libs/qt-webkit-4.7.2
+=x11-libs/qt-xmlpatterns-4.7.2
+
+
+# Qt 4.7 deps
+
+
+# KDE 4.6
+
+
+=kde-base/activitymanager-4.6.2
+=kde-base/amor-4.6.2
+=kde-base/ark-4.6.2
+=kde-base/attica-4.6.2
+=kde-base/blinken-4.6.2
+=kde-base/bomber-4.6.2
+=kde-base/bovo-4.6.2
+=kde-base/cantor-4.6.2
+=kde-base/cervisia-4.6.2
+=kde-base/dolphin-4.6.2
+=kde-base/dolphin-plugins-4.6.2
+=kde-base/dragonplayer-4.6.2
+=kde-base/drkonqi-4.6.2
+
+####### checked up to here, work in progress #######
+
+=kde-base/ffmpegthumbs-4.6.2
+=kde-base/filelight-4.6.2
+=kde-base/freespacenotifier-4.6.2
+=kde-base/granatier-4.6.2
+=kde-base/gwenview-4.6.2
+=kde-base/jovie-4.6.2
+=kde-base/juk-4.6.2
+=kde-base/kabcclient-4.6.2
+=kde-base/kaccessible-4.6.2
+=kde-base/kaddressbook-4.6.2
+=kde-base/kajongg-4.6.2
+=kde-base/kalarm-4.6.2
+=kde-base/kalgebra-4.6.2
+=kde-base/kalzium-4.6.2
+=kde-base/kamera-4.6.2
+=kde-base/kanagram-4.6.2
+=kde-base/kapman-4.6.2
+=kde-base/kapptemplate-4.6.2
+=kde-base/kate-4.6.2
+=kde-base/katomic-4.6.2
+=kde-base/kbattleship-4.6.2
+=kde-base/kblackbox-4.6.2
+=kde-base/kblocks-4.6.2
+=kde-base/kbounce-4.6.2
+=kde-base/kbreakout-4.6.2
+=kde-base/kbruch-4.6.2
+=kde-base/kcachegrind-4.6.2
+=kde-base/kcalc-4.6.2
+=kde-base/kcharselect-4.6.2
+=kde-base/kcheckpass-4.6.2
+=kde-base/kcminit-4.6.2
+=kde-base/kcmshell-4.6.2
+=kde-base/kcolorchooser-4.6.2
+=kde-base/kcontrol-4.6.2
+=kde-base/kcron-4.6.2
+=kde-base/kde-env-4.6.2
+=kde-base/kde-l10n-4.6.2
+=kde-base/kde-meta-4.6.2
+=kde-base/kdeaccessibility-colorschemes-4.6.2
+=kde-base/kdeaccessibility-iconthemes-4.6.2
+=kde-base/kdeaccessibility-meta-4.6.2
+=kde-base/kdeaccounts-plugin-4.6.2
+=kde-base/kdeadmin-meta-4.6.2
+=kde-base/kdeartwork-colorschemes-4.6.2
+=kde-base/kdeartwork-desktopthemes-4.6.2
+=kde-base/kdeartwork-emoticons-4.6.2
+=kde-base/kdeartwork-iconthemes-4.6.2
+=kde-base/kdeartwork-kscreensaver-4.6.2
+=kde-base/kdeartwork-meta-4.6.2
+=kde-base/kdeartwork-sounds-4.6.2
+=kde-base/kdeartwork-styles-4.6.2
+=kde-base/kdeartwork-wallpapers-4.6.2
+=kde-base/kdeartwork-weatherwallpapers-4.6.2
+=kde-base/kdebase-cursors-4.6.2
+=kde-base/kdebase-data-4.6.2
+=kde-base/kdebase-desktoptheme-4.6.2
+=kde-base/kdebase-kioslaves-4.6.2
+=kde-base/kdebase-menu-4.6.2
+=kde-base/kdebase-menu-icons-4.6.2
+=kde-base/kdebase-meta-4.6.2
+=kde-base/kdebase-runtime-meta-4.6.2
+=kde-base/kdebase-startkde-4.6.2
+=kde-base/kdebase-wallpapers-4.6.2
+=kde-base/kdebindings-csharp-4.6.2
+=kde-base/kdebindings-meta-4.6.2
+=kde-base/kdebindings-perl-4.6.2
+=kde-base/kdebindings-ruby-4.6.2
+=kde-base/kdebugdialog-4.6.2
+=kde-base/kdeedu-meta-4.6.2
+=kde-base/kdegames-meta-4.6.2
+=kde-base/kdegraphics-meta-4.6.2
+=kde-base/kdegraphics-strigi-analyzer-4.6.2
+=kde-base/kdelibs-4.6.2
+=kde-base/kdemultimedia-kioslaves-4.6.2
+=kde-base/kdemultimedia-meta-4.6.2
+=kde-base/kdenetwork-filesharing-4.6.2
+=kde-base/kdenetwork-meta-4.6.2
+=kde-base/kdepasswd-4.6.2
+=kde-base/kdepim-common-libs-4.6.2
+=kde-base/kdepim-icons-4.6.2
+=kde-base/kdepim-kresources-4.6.2
+=kde-base/kdepim-meta-4.6.2
+=kde-base/kdepim-runtime-4.6.2
+=kde-base/kdepim-strigi-analyzer-4.6.2
+=kde-base/kdepim-wizards-4.6.2
+=kde-base/kdepimlibs-4.6.2
+=kde-base/kdeplasma-addons-4.6.2
+=kde-base/kdesdk-kioslaves-4.6.2
+=kde-base/kdesdk-meta-4.6.2
+=kde-base/kdesdk-misc-4.6.2
+=kde-base/kdesdk-scripts-4.6.2
+=kde-base/kdesdk-strigi-analyzer-4.6.2
+=kde-base/kdesu-4.6.2
+=kde-base/kdetoys-meta-4.6.2
+=kde-base/kdeutils-meta-4.6.2
+=kde-base/kdewebdev-meta-4.6.2
+=kde-base/kdf-4.6.2
+=kde-base/kdialog-4.6.2
+=kde-base/kdiamond-4.6.2
+=kde-base/kdm-4.6.2
+=kde-base/kdnssd-4.6.2
+=kde-base/kdontchangethehostname-4.6.2
+=kde-base/keditbookmarks-4.6.2
+=kde-base/keditfiletype-4.6.2
+=kde-base/kephal-4.6.2
+=kde-base/kfile-4.6.2
+=kde-base/kfilereplace-4.6.2
+=kde-base/kfind-4.6.2
+=kde-base/kfloppy-4.6.2
+=kde-base/kfmclient-4.6.2
+=kde-base/kfourinline-4.6.2
+=kde-base/kgamma-4.6.2
+=kde-base/kgeography-4.6.2
+=kde-base/kget-4.6.2
+=kde-base/kglobalaccel-4.6.2
+=kde-base/kgoldrunner-4.6.2
+=kde-base/kgpg-4.6.2
+=kde-base/khangman-4.6.2
+=kde-base/khelpcenter-4.6.2
+=kde-base/khotkeys-4.6.2
+=kde-base/kiconfinder-4.6.2
+=kde-base/kig-4.6.2
+=kde-base/kigo-4.6.2
+=kde-base/killbots-4.6.2
+=kde-base/kimagemapeditor-4.6.2
+=kde-base/kinfocenter-4.6.2
+=kde-base/kioclient-4.6.2
+=kde-base/kiriki-4.6.2
+=kde-base/kiten-4.6.2
+=kde-base/kjots-4.6.2
+=kde-base/kjumpingcube-4.6.2
+=kde-base/kleopatra-4.6.2
+=kde-base/klettres-4.6.2
+=kde-base/klickety-4.6.2
+=kde-base/klines-4.6.2
+=kde-base/klinkstatus-4.6.2
+=kde-base/klipper-4.6.2
+=kde-base/kmag-4.6.2
+=kde-base/kmahjongg-4.6.2
+=kde-base/kmail-4.6.2
+=kde-base/kmenuedit-4.6.2
+=kde-base/kmimetypefinder-4.6.2
+=kde-base/kmines-4.6.2
+=kde-base/kmix-4.6.2
+=kde-base/kmousetool-4.6.2
+=kde-base/kmouth-4.6.2
+=kde-base/kmplot-4.6.2
+=kde-base/knetattach-4.6.2
+=kde-base/knetwalk-4.6.2
+=kde-base/knewstuff-4.6.2
+=kde-base/knode-4.6.2
+=kde-base/knotes-4.6.2
+=kde-base/knotify-4.6.2
+=kde-base/kolf-4.6.2
+=kde-base/kollision-4.6.2
+=kde-base/kolourpaint-4.6.2
+=kde-base/kommander-4.6.2
+=kde-base/kompare-4.6.2
+=kde-base/konqueror-4.6.2
+=kde-base/konquest-4.6.2
+=kde-base/konsole-4.6.2
+=kde-base/konsolekalendar-4.6.2
+=kde-base/kontact-4.6.2
+=kde-base/kopete-4.6.2
+=kde-base/korganizer-4.6.2
+=kde-base/kpasswdserver-4.6.2
+=kde-base/kpat-4.6.2
+=kde-base/kppp-4.6.2
+=kde-base/kquitapp-4.6.2
+=kde-base/krdc-4.6.2
+=kde-base/kreadconfig-4.6.2
+=kde-base/kremotecontrol-4.6.2
+=kde-base/kreversi-4.6.2
+=kde-base/krfb-4.6.2
+=kde-base/krossjava-4.6.2
+=kde-base/krosspython-4.6.2
+=kde-base/kruler-4.6.2
+=kde-base/krunner-4.6.2
+=kde-base/ksaneplugin-4.6.2
+=kde-base/kscd-4.6.2
+=kde-base/kscreensaver-4.6.2
+=kde-base/kshisen-4.6.2
+=kde-base/ksirk-4.6.2
+=kde-base/ksmserver-4.6.2
+=kde-base/ksnapshot-4.6.2
+=kde-base/kspaceduel-4.6.2
+=kde-base/ksplash-4.6.2
+=kde-base/ksquares-4.6.2
+=kde-base/kstars-4.6.2
+=kde-base/kstart-4.6.2
+=kde-base/kstartperf-4.6.2
+=kde-base/kstartupconfig-4.6.2
+=kde-base/kstyles-4.6.2
+=kde-base/ksudoku-4.6.2
+=kde-base/ksysguard-4.6.2
+=kde-base/ksystemlog-4.6.2
+=kde-base/ksystraycmd-4.6.2
+=kde-base/kteatime-4.6.2
+=kde-base/ktimer-4.6.2
+=kde-base/ktimetracker-4.6.2
+=kde-base/ktimezoned-4.6.2
+=kde-base/ktouch-4.6.2
+=kde-base/ktraderclient-4.6.2
+=kde-base/ktron-4.6.2
+=kde-base/ktuberling-4.6.2
+=kde-base/kturtle-4.6.2
+=kde-base/ktux-4.6.2
+=kde-base/kubrick-4.6.2
+=kde-base/kuiserver-4.6.2
+=kde-base/kuiviewer-4.6.2
+=kde-base/kurifilter-plugins-4.6.2
+=kde-base/kuser-4.6.2
+=kde-base/kvtml-data-4.6.2
+=kde-base/kwallet-4.6.2
+=kde-base/kwalletd-4.6.2
+=kde-base/kwin-4.6.2
+=kde-base/kwordquiz-4.6.2
+=kde-base/kwrite-4.6.2
+=kde-base/kwrited-4.6.2
+=kde-base/libkcddb-4.6.2
+=kde-base/libkcompactdisc-4.6.2
+=kde-base/libkdcraw-4.6.2
+=kde-base/libkdeedu-4.6.2
+=kde-base/libkdegames-4.6.2
+=kde-base/libkexiv2-4.6.2
+=kde-base/libkipi-4.6.2
+=kde-base/libkmahjongg-4.6.2
+=kde-base/libkonq-4.6.2
+=kde-base/libksane-4.6.2
+=kde-base/libkworkspace-4.6.2
+=kde-base/liboxygenstyle-4.6.2
+=kde-base/libplasmaclock-4.6.2
+=kde-base/libplasmagenericshell-4.6.2
+=kde-base/libtaskmanager-4.6.2
+=kde-base/lokalize-4.6.2
+=kde-base/lskat-4.6.2
+=kde-base/marble-4.6.2
+=kde-base/mplayerthumbs-4.6.2
+=kde-base/nepomuk-4.6.2
+=kde-base/nsplugins-4.6.2
+=kde-base/okteta-4.6.2
+=kde-base/okular-4.6.2
+=kde-base/oxygen-icons-4.6.2
+=kde-base/palapeli-4.6.2
+=kde-base/parley-4.6.2
+=kde-base/phonon-kde-4.6.2
+=kde-base/plasma-apps-4.6.2
+=kde-base/plasma-runtime-4.6.2
+=kde-base/plasma-workspace-4.6.2
+=kde-base/powerdevil-4.6.2
+=kde-base/printer-applet-4.6.2
+=kde-base/pykde4-4.6.2
+=kde-base/qguiplatformplugin_kde-4.6.2
+=kde-base/renamedlg-plugins-4.6.2
+=kde-base/rocs-4.6.2
+=kde-base/smoke-4.6.2
+=kde-base/solid-4.6.2
+=kde-base/solid-runtime-4.6.2
+=kde-base/step-4.6.2
+=kde-base/superkaramba-4.6.2
+=kde-base/svgpart-4.6.2
+=kde-base/sweeper-4.6.2
+=kde-base/system-config-printer-kde-4.6.2
+=kde-base/systemsettings-4.6.2
+=kde-base/thumbnailers-4.6.2
+=kde-base/umbrello-4.6.2
+
+
+# KDE 4.6 deps
 
 
 =app-office/akonadi-server-1.5.2
@@ -31,7 +339,7 @@
 
 
 
-# KDEPIM 4.4.11.1 and deps
+# KDEPIM 4.4.11.1
 
 
 =kde-base/akonadi-4.4.11.1
@@ -61,6 +369,8 @@
 =kde-base/kdepim-l10n-4.4.11.1
 
 
+# KDEPIM 4.4.11.1 deps
+
 
 
 # Misc Qt apps and deps
@@ -68,10 +378,12 @@
 
 # Misc/Extragear KDE apps and deps
 
+
 # digikam
 
 =media-gfx/digikam-1.9.0
 =media-plugins/kipi-plugins-1.9.0
+
 # =dev-libs/libf2c-20090407-r1 (filed as bug 364011)
 # =media-libs/lensfun-0.2.5-r1 (filed as bug 364173)
 # =sci-libs/clapack-3.2.1-r3 (filed as bug 364013)



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-22 23:13 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-22 23:13 UTC (permalink / raw
  To: gentoo-commits

commit:     025fdbcc42a9ccd0afe47b660266347501879a9b
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Fri Apr 22 23:16:07 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Apr 22 23:16:07 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=025fdbcc

[stablelist] Added konq-plugins

---
 Documentation/Upgrade-4.4-4.6-Notes |    5 -----
 Documentation/kde46_stable_list     |    3 +++
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/Documentation/Upgrade-4.4-4.6-Notes b/Documentation/Upgrade-4.4-4.6-Notes
deleted file mode 100644
index ac52edf..0000000
--- a/Documentation/Upgrade-4.4-4.6-Notes
+++ /dev/null
@@ -1,5 +0,0 @@
-
-* kbluetooth needs to be removed from world
-* digikam and kipi-plugins upgrade to 1.8.0 (current stable does not build anymore)
-
-

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index e0d16b6..f8da801 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -407,3 +407,6 @@
 =dev-util/kdevelop-4.2.2
 =dev-util/kdevplatform-1.2.2
 
+# etc
+
+=kde-misc/konq-plugins-4.6.1



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-23 16:43 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-23 16:43 UTC (permalink / raw
  To: gentoo-commits

commit:     f5daa442ac1b013e2c201652e6f2077543d921fa
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Sat Apr 23 16:46:15 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Apr 23 16:46:15 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f5daa442

[stablelist] Update

---
 Documentation/kde46_stable_list |   20 +++++---------------
 1 files changed, 5 insertions(+), 15 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index f8da801..22fde1c 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -45,9 +45,6 @@
 =kde-base/dolphin-plugins-4.6.2
 =kde-base/dragonplayer-4.6.2
 =kde-base/drkonqi-4.6.2
-
-####### checked up to here, work in progress #######
-
 =kde-base/ffmpegthumbs-4.6.2
 =kde-base/filelight-4.6.2
 =kde-base/freespacenotifier-4.6.2
@@ -55,11 +52,8 @@
 =kde-base/gwenview-4.6.2
 =kde-base/jovie-4.6.2
 =kde-base/juk-4.6.2
-=kde-base/kabcclient-4.6.2
 =kde-base/kaccessible-4.6.2
-=kde-base/kaddressbook-4.6.2
 =kde-base/kajongg-4.6.2
-=kde-base/kalarm-4.6.2
 =kde-base/kalgebra-4.6.2
 =kde-base/kalzium-4.6.2
 =kde-base/kamera-4.6.2
@@ -120,21 +114,17 @@
 =kde-base/kdegames-meta-4.6.2
 =kde-base/kdegraphics-meta-4.6.2
 =kde-base/kdegraphics-strigi-analyzer-4.6.2
-=kde-base/kdelibs-4.6.2
+=kde-base/kdelibs-4.6.2-r2
 =kde-base/kdemultimedia-kioslaves-4.6.2
 =kde-base/kdemultimedia-meta-4.6.2
 =kde-base/kdenetwork-filesharing-4.6.2
 =kde-base/kdenetwork-meta-4.6.2
 =kde-base/kdepasswd-4.6.2
-=kde-base/kdepim-common-libs-4.6.2
-=kde-base/kdepim-icons-4.6.2
-=kde-base/kdepim-kresources-4.6.2
-=kde-base/kdepim-meta-4.6.2
-=kde-base/kdepim-runtime-4.6.2
-=kde-base/kdepim-strigi-analyzer-4.6.2
-=kde-base/kdepim-wizards-4.6.2
-=kde-base/kdepimlibs-4.6.2
+=kde-base/kdepimlibs-4.6.2-r1
 =kde-base/kdeplasma-addons-4.6.2
+
+####### checked up to here, work in progress #######
+
 =kde-base/kdesdk-kioslaves-4.6.2
 =kde-base/kdesdk-meta-4.6.2
 =kde-base/kdesdk-misc-4.6.2



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-23 18:01 Christian Schmitt
  0 siblings, 0 replies; 131+ messages in thread
From: Christian Schmitt @ 2011-04-23 18:01 UTC (permalink / raw
  To: gentoo-commits

commit:     b369f0cfef069312d919ee4dd0a1683d89371070
Author:     Christian Schmitt <chris <AT> ilovelinux <DOT> de>
AuthorDate: Sat Apr 23 18:02:28 2011 +0000
Commit:     Christian Schmitt <chris <AT> ilovelinux <DOT> de>
CommitDate: Sat Apr 23 18:02:28 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b369f0cf

KDE 4.6 needs a newer version of kde-misc/knetworkmanager

---
 Documentation/kde46_stable_list |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index 22fde1c..645ab0c 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -368,6 +368,8 @@
 
 # Misc/Extragear KDE apps and deps
 
+=kde-misc/knetworkmanager-4.4.0_p20110415
+
 
 # digikam
 



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-23 20:38 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-23 20:38 UTC (permalink / raw
  To: gentoo-commits

commit:     03bb0598f5d5f5cc3d6793b2625b195db4e57b33
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Sat Apr 23 17:21:16 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Apr 23 20:40:34 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=03bb0598

[stablelist] update

---
 Documentation/kde46_stable_list |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index 645ab0c..c2868c6 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -122,9 +122,6 @@
 =kde-base/kdepasswd-4.6.2
 =kde-base/kdepimlibs-4.6.2-r1
 =kde-base/kdeplasma-addons-4.6.2
-
-####### checked up to here, work in progress #######
-
 =kde-base/kdesdk-kioslaves-4.6.2
 =kde-base/kdesdk-meta-4.6.2
 =kde-base/kdesdk-misc-4.6.2
@@ -137,10 +134,13 @@
 =kde-base/kdf-4.6.2
 =kde-base/kdialog-4.6.2
 =kde-base/kdiamond-4.6.2
-=kde-base/kdm-4.6.2
+=kde-base/kdm-4.6.2-r1
 =kde-base/kdnssd-4.6.2
 =kde-base/kdontchangethehostname-4.6.2
 =kde-base/keditbookmarks-4.6.2
+
+####### checked up to here, work in progress #######
+
 =kde-base/keditfiletype-4.6.2
 =kde-base/kephal-4.6.2
 =kde-base/kfile-4.6.2



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-23 20:38 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-23 20:38 UTC (permalink / raw
  To: gentoo-commits

commit:     b07392cca4faf14f4cc556841b8581cf784f3e21
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Sat Apr 23 20:39:58 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Apr 23 20:40:34 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b07392cc

[stablelist] Version for general review

---
 Documentation/kde46_stable_list |   40 ++++++++++++--------------------------
 1 files changed, 13 insertions(+), 27 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index c2868c6..e0244f9 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -17,6 +17,7 @@
 =x11-libs/qt-gui-4.7.2
 =x11-libs/qt-multimedia-4.7.2
 =x11-libs/qt-opengl-4.7.2
+=x11-libs/qt-phonon-4.7.2
 =x11-libs/qt-qt3support-4.7.2
 =x11-libs/qt-script-4.7.2
 =x11-libs/qt-sql-4.7.2
@@ -138,9 +139,6 @@
 =kde-base/kdnssd-4.6.2
 =kde-base/kdontchangethehostname-4.6.2
 =kde-base/keditbookmarks-4.6.2
-
-####### checked up to here, work in progress #######
-
 =kde-base/keditfiletype-4.6.2
 =kde-base/kephal-4.6.2
 =kde-base/kfile-4.6.2
@@ -167,9 +165,7 @@
 =kde-base/kioclient-4.6.2
 =kde-base/kiriki-4.6.2
 =kde-base/kiten-4.6.2
-=kde-base/kjots-4.6.2
 =kde-base/kjumpingcube-4.6.2
-=kde-base/kleopatra-4.6.2
 =kde-base/klettres-4.6.2
 =kde-base/klickety-4.6.2
 =kde-base/klines-4.6.2
@@ -177,7 +173,6 @@
 =kde-base/klipper-4.6.2
 =kde-base/kmag-4.6.2
 =kde-base/kmahjongg-4.6.2
-=kde-base/kmail-4.6.2
 =kde-base/kmenuedit-4.6.2
 =kde-base/kmimetypefinder-4.6.2
 =kde-base/kmines-4.6.2
@@ -188,8 +183,6 @@
 =kde-base/knetattach-4.6.2
 =kde-base/knetwalk-4.6.2
 =kde-base/knewstuff-4.6.2
-=kde-base/knode-4.6.2
-=kde-base/knotes-4.6.2
 =kde-base/knotify-4.6.2
 =kde-base/kolf-4.6.2
 =kde-base/kollision-4.6.2
@@ -199,10 +192,6 @@
 =kde-base/konqueror-4.6.2
 =kde-base/konquest-4.6.2
 =kde-base/konsole-4.6.2
-=kde-base/konsolekalendar-4.6.2
-=kde-base/kontact-4.6.2
-=kde-base/kopete-4.6.2
-=kde-base/korganizer-4.6.2
 =kde-base/kpasswdserver-4.6.2
 =kde-base/kpat-4.6.2
 =kde-base/kppp-4.6.2
@@ -222,7 +211,7 @@
 =kde-base/kshisen-4.6.2
 =kde-base/ksirk-4.6.2
 =kde-base/ksmserver-4.6.2
-=kde-base/ksnapshot-4.6.2
+=kde-base/ksnapshot-4.6.2-r1
 =kde-base/kspaceduel-4.6.2
 =kde-base/ksplash-4.6.2
 =kde-base/ksquares-4.6.2
@@ -232,12 +221,11 @@
 =kde-base/kstartupconfig-4.6.2
 =kde-base/kstyles-4.6.2
 =kde-base/ksudoku-4.6.2
-=kde-base/ksysguard-4.6.2
+=kde-base/ksysguard-4.6.2-r1
 =kde-base/ksystemlog-4.6.2
 =kde-base/ksystraycmd-4.6.2
 =kde-base/kteatime-4.6.2
 =kde-base/ktimer-4.6.2
-=kde-base/ktimetracker-4.6.2
 =kde-base/ktimezoned-4.6.2
 =kde-base/ktouch-4.6.2
 =kde-base/ktraderclient-4.6.2
@@ -274,7 +262,7 @@
 =kde-base/libtaskmanager-4.6.2
 =kde-base/lokalize-4.6.2
 =kde-base/lskat-4.6.2
-=kde-base/marble-4.6.2
+=kde-base/marble-4.6.2-r1
 =kde-base/mplayerthumbs-4.6.2
 =kde-base/nepomuk-4.6.2
 =kde-base/nsplugins-4.6.2
@@ -286,7 +274,7 @@
 =kde-base/phonon-kde-4.6.2
 =kde-base/plasma-apps-4.6.2
 =kde-base/plasma-runtime-4.6.2
-=kde-base/plasma-workspace-4.6.2
+=kde-base/plasma-workspace-4.6.2-r1
 =kde-base/powerdevil-4.6.2
 =kde-base/printer-applet-4.6.2
 =kde-base/pykde4-4.6.2
@@ -313,20 +301,19 @@
 =dev-libs/libattica-0.2.0
 =dev-libs/shared-desktop-ontologies-0.5
 =dev-libs/soprano-2.6.0 
-=dev-python/PyQt4-4.8.3					# 10 open bugs
+=dev-python/PyQt4-4.8.3
 =dev-python/sip-4.12.1
-=kde-misc/polkit-kde-kcmodules-0.98_pre20101127		# 1 open bug
-=kde-misc/kwebkitpart-0.9.6				# 1 OPEN SEC BUG
-# media-libs/phonon (filed as bug 364175)
-# media-libs/phonon-gstreamer (filed as bug 364175)
-# media-libs/phonon-vlc (filed as bug 364175)
-# media-libs/phonon-xine (filed as bug 364175)
+=kde-misc/polkit-kde-kcmodules-0.98_pre20101127
+=kde-misc/kwebkitpart-0.9.6
+# =media-libs/phonon-4.5.0 (filed as bug 364175)
+# =media-libs/phonon-gstreamer-4.5.0 (filed as bug 364175)
+# =media-libs/phonon-vlc-0.3.2 (filed as bug 364175)
+# =media-libs/phonon-xine-4.4.4 (filed as bug 364175)
 =net-libs/libbluedevil-1.8.1
 =net-wireless/bluedevil-1.1
 =sys-auth/polkit-kde-agent-0.99.0
 =sys-auth/polkit-qt-0.99.0
-=x11-misc/google-gadgets-0.11.2				# 3 open bugs
-
+=x11-misc/google-gadgets-0.11.2
 
 
 # KDEPIM 4.4.11.1
@@ -362,7 +349,6 @@
 # KDEPIM 4.4.11.1 deps
 
 
-
 # Misc Qt apps and deps
 
 



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-24 12:54 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-24 12:54 UTC (permalink / raw
  To: gentoo-commits

commit:     b17c0ab930b24d357de1247eb534c7ad0346bf4c
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Sun Apr 24 12:56:30 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Apr 24 12:56:30 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b17c0ab9

[stablelist] bump bluedevil / libbluedevil version

---
 Documentation/kde46_stable_list |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index e0244f9..9dae520 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -309,8 +309,8 @@
 # =media-libs/phonon-gstreamer-4.5.0 (filed as bug 364175)
 # =media-libs/phonon-vlc-0.3.2 (filed as bug 364175)
 # =media-libs/phonon-xine-4.4.4 (filed as bug 364175)
-=net-libs/libbluedevil-1.8.1
-=net-wireless/bluedevil-1.1
+=net-libs/libbluedevil-1.9
+=net-wireless/bluedevil-1.1-r1
 =sys-auth/polkit-kde-agent-0.99.0
 =sys-auth/polkit-qt-0.99.0
 =x11-misc/google-gadgets-0.11.2



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-25 19:19 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-25 19:19 UTC (permalink / raw
  To: gentoo-commits

commit:     1cd3093c2468e4a67e8d298e66ef842d967ca494
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Mon Apr 25 19:21:13 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Apr 25 19:21:13 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=1cd3093c

[stablelist] Cleanup for attaching to bug

---
 Documentation/kde46_stable_list |   37 ++++++++++++++-----------------------
 1 files changed, 14 insertions(+), 23 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index 9dae520..9287527 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -1,12 +1,15 @@
-# Put here any KDE / Qt packages that should be stabilized
-# The list should include core KDE and Qt packages, their depedencies and extragear/misc KDE/Qt apps as well
-# Please:
-# - Keep the list sorted
-# - Include exact revision of the package
-# - Put the package under the according category
+# KDE / Qt packages that should be stabilized
+# The list includes core KDE and Qt packages, their depedencies and extragear/misc KDE/Qt apps as well
 
+# If a stablerequest has already been filed for some package, then this is indicated with the
+# respective bug number. Nevertheless these packages should be stabilized at the same time
+# as the rest of the list here.
 
-# Qt 4.7
+# Stabilization is here requested for "amd64 ppc x86"
+# For other arches (e.g. qt-*), please use a separate bug.
+
+
+# Qt 4.7.2
 
 
 =x11-libs/qt-assistant-4.7.2
@@ -27,10 +30,7 @@
 =x11-libs/qt-xmlpatterns-4.7.2
 
 
-# Qt 4.7 deps
-
-
-# KDE 4.6
+# KDE 4.6.2
 
 
 =kde-base/activitymanager-4.6.2
@@ -294,7 +294,7 @@
 =kde-base/umbrello-4.6.2
 
 
-# KDE 4.6 deps
+# KDE 4.6.2 dependencies
 
 
 =app-office/akonadi-server-1.5.2
@@ -346,22 +346,16 @@
 =kde-base/kdepim-l10n-4.4.11.1
 
 
-# KDEPIM 4.4.11.1 deps
-
-
-# Misc Qt apps and deps
+# Misc/Extragear KDE applications and dependencies
 
 
-# Misc/Extragear KDE apps and deps
-
 =kde-misc/knetworkmanager-4.4.0_p20110415
-
+=kde-misc/konq-plugins-4.6.1
 
 # digikam
 
 =media-gfx/digikam-1.9.0
 =media-plugins/kipi-plugins-1.9.0
-
 # =dev-libs/libf2c-20090407-r1 (filed as bug 364011)
 # =media-libs/lensfun-0.2.5-r1 (filed as bug 364173)
 # =sci-libs/clapack-3.2.1-r3 (filed as bug 364013)
@@ -385,6 +379,3 @@
 =dev-util/kdevelop-4.2.2
 =dev-util/kdevplatform-1.2.2
 
-# etc
-
-=kde-misc/konq-plugins-4.6.1



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-27 16:01 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-27 16:01 UTC (permalink / raw
  To: gentoo-commits

commit:     fbb1986b94933a28691a0d08c728c68b6800cb4d
Author:     Andreas K. Huettel <andreas.huettel <AT> physik <DOT> uni-r <DOT> de>
AuthorDate: Wed Apr 27 16:00:48 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Wed Apr 27 16:00:48 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=fbb1986b

[stablelist] Add some apps

---
 Documentation/kde46_stable_list |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index 9287527..3f081b6 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -379,3 +379,10 @@
 =dev-util/kdevelop-4.2.2
 =dev-util/kdevplatform-1.2.2
 
+# still needs to be checked:
+
+=media-sound/amarok-2.4.0
+=media-video/kaffeine-1.2.1
+=net-p2p/ktorrent-4.0.5
+=net-im/choqok-1.1
+=www-client/rekonq-0.7.0



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-27 17:30 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-27 17:30 UTC (permalink / raw
  To: gentoo-commits

commit:     ec325ee3b5b9536897c602902109840dedbd26ec
Author:     Andreas K. Huettel <andreas.huettel <AT> physik <DOT> uni-r <DOT> de>
AuthorDate: Wed Apr 27 17:30:05 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Wed Apr 27 17:30:05 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=ec325ee3

[stablelist] more stuff

---
 Documentation/kde46_stable_list |   36 ++++++++++++++++++++++++++++++------
 1 files changed, 30 insertions(+), 6 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index 3f081b6..f24da7f 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -275,7 +275,7 @@
 =kde-base/plasma-apps-4.6.2
 =kde-base/plasma-runtime-4.6.2
 =kde-base/plasma-workspace-4.6.2-r1
-=kde-base/powerdevil-4.6.2
+=kde-base/powerdevil-4.6.2-r1
 =kde-base/printer-applet-4.6.2
 =kde-base/pykde4-4.6.2
 =kde-base/qguiplatformplugin_kde-4.6.2
@@ -320,7 +320,7 @@
 
 
 =kde-base/akonadi-4.4.11.1
-=kde-base/akregator-4.4.11.1
+=kde-base/akregator-4.4.11.1-r1
 =kde-base/blogilo-4.4.11.1
 =kde-base/kabcclient-4.4.11.1
 =kde-base/kaddressbook-4.4.11.1
@@ -346,10 +346,11 @@
 =kde-base/kdepim-l10n-4.4.11.1
 
 
-# Misc/Extragear KDE applications and dependencies
+# Misc/Extragear Qt and KDE applications and dependencies
 
 
 =kde-misc/knetworkmanager-4.4.0_p20110415
+
 =kde-misc/konq-plugins-4.6.1
 
 # digikam
@@ -379,10 +380,33 @@
 =dev-util/kdevelop-4.2.2
 =dev-util/kdevplatform-1.2.2
 
-# still needs to be checked:
+# amarok (check bugs!)
 
 =media-sound/amarok-2.4.0
-=media-video/kaffeine-1.2.1
+=media-libs/liblastfm-0.3.3
+
+# kaffeine (check bugs!)
+
+=media-video/kaffeine-1.2.2
+
+# ktorrent (check bugs!)
+
 =net-p2p/ktorrent-4.0.5
-=net-im/choqok-1.1
+=net-libs/libktorrent-1.1.0
+
+# rekonq (check bugs!)
+
 =www-client/rekonq-0.7.0
+
+# yakuake (check bugs!)
+
+=kde-misc/yakuake-2.9.8
+
+# ebook-tools (check bugs!)
+
+=app-text/ebook-tools-0.2.1
+
+# qt-creator (check bugs!)
+
+=dev-util/qt-creator-2.1.0
+



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-27 20:05 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-27 20:05 UTC (permalink / raw
  To: gentoo-commits

commit:     562d7a84194996fb298c03f3474c6818b72cfc56
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Wed Apr 27 20:06:13 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Wed Apr 27 20:06:13 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=562d7a84

[stablelist] Final version

---
 Documentation/kde46_stable_list |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
index f24da7f..b8ee9c4 100644
--- a/Documentation/kde46_stable_list
+++ b/Documentation/kde46_stable_list
@@ -380,33 +380,33 @@
 =dev-util/kdevelop-4.2.2
 =dev-util/kdevplatform-1.2.2
 
-# amarok (check bugs!)
+# amarok
 
 =media-sound/amarok-2.4.0
 =media-libs/liblastfm-0.3.3
 
-# kaffeine (check bugs!)
+# kaffeine
 
 =media-video/kaffeine-1.2.2
 
-# ktorrent (check bugs!)
+# ktorrent
 
 =net-p2p/ktorrent-4.0.5
 =net-libs/libktorrent-1.1.0
 
-# rekonq (check bugs!)
+# rekonq
 
 =www-client/rekonq-0.7.0
 
-# yakuake (check bugs!)
+# yakuake
 
 =kde-misc/yakuake-2.9.8
 
-# ebook-tools (check bugs!)
+# ebook-tools
 
 =app-text/ebook-tools-0.2.1
 
-# qt-creator (check bugs!)
+# qt-creator
 
 =dev-util/qt-creator-2.1.0
 



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-04-27 20:05 Andreas K. Huettel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas K. Huettel @ 2011-04-27 20:05 UTC (permalink / raw
  To: gentoo-commits

commit:     f2ae47e36f3ff63bb063ad8f3434821620730466
Author:     Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Wed Apr 27 20:07:08 2011 +0000
Commit:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Wed Apr 27 20:07:08 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f2ae47e3

[stablelist] Deadline's over

---
 Documentation/kde46_stable_list |  412 ---------------------------------------
 1 files changed, 0 insertions(+), 412 deletions(-)

diff --git a/Documentation/kde46_stable_list b/Documentation/kde46_stable_list
deleted file mode 100644
index b8ee9c4..0000000
--- a/Documentation/kde46_stable_list
+++ /dev/null
@@ -1,412 +0,0 @@
-# KDE / Qt packages that should be stabilized
-# The list includes core KDE and Qt packages, their depedencies and extragear/misc KDE/Qt apps as well
-
-# If a stablerequest has already been filed for some package, then this is indicated with the
-# respective bug number. Nevertheless these packages should be stabilized at the same time
-# as the rest of the list here.
-
-# Stabilization is here requested for "amd64 ppc x86"
-# For other arches (e.g. qt-*), please use a separate bug.
-
-
-# Qt 4.7.2
-
-
-=x11-libs/qt-assistant-4.7.2
-=x11-libs/qt-core-4.7.2-r1
-=x11-libs/qt-dbus-4.7.2
-=x11-libs/qt-declarative-4.7.2-r1
-=x11-libs/qt-demo-4.7.2
-=x11-libs/qt-gui-4.7.2
-=x11-libs/qt-multimedia-4.7.2
-=x11-libs/qt-opengl-4.7.2
-=x11-libs/qt-phonon-4.7.2
-=x11-libs/qt-qt3support-4.7.2
-=x11-libs/qt-script-4.7.2
-=x11-libs/qt-sql-4.7.2
-=x11-libs/qt-svg-4.7.2
-=x11-libs/qt-test-4.7.2
-=x11-libs/qt-webkit-4.7.2
-=x11-libs/qt-xmlpatterns-4.7.2
-
-
-# KDE 4.6.2
-
-
-=kde-base/activitymanager-4.6.2
-=kde-base/amor-4.6.2
-=kde-base/ark-4.6.2
-=kde-base/attica-4.6.2
-=kde-base/blinken-4.6.2
-=kde-base/bomber-4.6.2
-=kde-base/bovo-4.6.2
-=kde-base/cantor-4.6.2
-=kde-base/cervisia-4.6.2
-=kde-base/dolphin-4.6.2
-=kde-base/dolphin-plugins-4.6.2
-=kde-base/dragonplayer-4.6.2
-=kde-base/drkonqi-4.6.2
-=kde-base/ffmpegthumbs-4.6.2
-=kde-base/filelight-4.6.2
-=kde-base/freespacenotifier-4.6.2
-=kde-base/granatier-4.6.2
-=kde-base/gwenview-4.6.2
-=kde-base/jovie-4.6.2
-=kde-base/juk-4.6.2
-=kde-base/kaccessible-4.6.2
-=kde-base/kajongg-4.6.2
-=kde-base/kalgebra-4.6.2
-=kde-base/kalzium-4.6.2
-=kde-base/kamera-4.6.2
-=kde-base/kanagram-4.6.2
-=kde-base/kapman-4.6.2
-=kde-base/kapptemplate-4.6.2
-=kde-base/kate-4.6.2
-=kde-base/katomic-4.6.2
-=kde-base/kbattleship-4.6.2
-=kde-base/kblackbox-4.6.2
-=kde-base/kblocks-4.6.2
-=kde-base/kbounce-4.6.2
-=kde-base/kbreakout-4.6.2
-=kde-base/kbruch-4.6.2
-=kde-base/kcachegrind-4.6.2
-=kde-base/kcalc-4.6.2
-=kde-base/kcharselect-4.6.2
-=kde-base/kcheckpass-4.6.2
-=kde-base/kcminit-4.6.2
-=kde-base/kcmshell-4.6.2
-=kde-base/kcolorchooser-4.6.2
-=kde-base/kcontrol-4.6.2
-=kde-base/kcron-4.6.2
-=kde-base/kde-env-4.6.2
-=kde-base/kde-l10n-4.6.2
-=kde-base/kde-meta-4.6.2
-=kde-base/kdeaccessibility-colorschemes-4.6.2
-=kde-base/kdeaccessibility-iconthemes-4.6.2
-=kde-base/kdeaccessibility-meta-4.6.2
-=kde-base/kdeaccounts-plugin-4.6.2
-=kde-base/kdeadmin-meta-4.6.2
-=kde-base/kdeartwork-colorschemes-4.6.2
-=kde-base/kdeartwork-desktopthemes-4.6.2
-=kde-base/kdeartwork-emoticons-4.6.2
-=kde-base/kdeartwork-iconthemes-4.6.2
-=kde-base/kdeartwork-kscreensaver-4.6.2
-=kde-base/kdeartwork-meta-4.6.2
-=kde-base/kdeartwork-sounds-4.6.2
-=kde-base/kdeartwork-styles-4.6.2
-=kde-base/kdeartwork-wallpapers-4.6.2
-=kde-base/kdeartwork-weatherwallpapers-4.6.2
-=kde-base/kdebase-cursors-4.6.2
-=kde-base/kdebase-data-4.6.2
-=kde-base/kdebase-desktoptheme-4.6.2
-=kde-base/kdebase-kioslaves-4.6.2
-=kde-base/kdebase-menu-4.6.2
-=kde-base/kdebase-menu-icons-4.6.2
-=kde-base/kdebase-meta-4.6.2
-=kde-base/kdebase-runtime-meta-4.6.2
-=kde-base/kdebase-startkde-4.6.2
-=kde-base/kdebase-wallpapers-4.6.2
-=kde-base/kdebindings-csharp-4.6.2
-=kde-base/kdebindings-meta-4.6.2
-=kde-base/kdebindings-perl-4.6.2
-=kde-base/kdebindings-ruby-4.6.2
-=kde-base/kdebugdialog-4.6.2
-=kde-base/kdeedu-meta-4.6.2
-=kde-base/kdegames-meta-4.6.2
-=kde-base/kdegraphics-meta-4.6.2
-=kde-base/kdegraphics-strigi-analyzer-4.6.2
-=kde-base/kdelibs-4.6.2-r2
-=kde-base/kdemultimedia-kioslaves-4.6.2
-=kde-base/kdemultimedia-meta-4.6.2
-=kde-base/kdenetwork-filesharing-4.6.2
-=kde-base/kdenetwork-meta-4.6.2
-=kde-base/kdepasswd-4.6.2
-=kde-base/kdepimlibs-4.6.2-r1
-=kde-base/kdeplasma-addons-4.6.2
-=kde-base/kdesdk-kioslaves-4.6.2
-=kde-base/kdesdk-meta-4.6.2
-=kde-base/kdesdk-misc-4.6.2
-=kde-base/kdesdk-scripts-4.6.2
-=kde-base/kdesdk-strigi-analyzer-4.6.2
-=kde-base/kdesu-4.6.2
-=kde-base/kdetoys-meta-4.6.2
-=kde-base/kdeutils-meta-4.6.2
-=kde-base/kdewebdev-meta-4.6.2
-=kde-base/kdf-4.6.2
-=kde-base/kdialog-4.6.2
-=kde-base/kdiamond-4.6.2
-=kde-base/kdm-4.6.2-r1
-=kde-base/kdnssd-4.6.2
-=kde-base/kdontchangethehostname-4.6.2
-=kde-base/keditbookmarks-4.6.2
-=kde-base/keditfiletype-4.6.2
-=kde-base/kephal-4.6.2
-=kde-base/kfile-4.6.2
-=kde-base/kfilereplace-4.6.2
-=kde-base/kfind-4.6.2
-=kde-base/kfloppy-4.6.2
-=kde-base/kfmclient-4.6.2
-=kde-base/kfourinline-4.6.2
-=kde-base/kgamma-4.6.2
-=kde-base/kgeography-4.6.2
-=kde-base/kget-4.6.2
-=kde-base/kglobalaccel-4.6.2
-=kde-base/kgoldrunner-4.6.2
-=kde-base/kgpg-4.6.2
-=kde-base/khangman-4.6.2
-=kde-base/khelpcenter-4.6.2
-=kde-base/khotkeys-4.6.2
-=kde-base/kiconfinder-4.6.2
-=kde-base/kig-4.6.2
-=kde-base/kigo-4.6.2
-=kde-base/killbots-4.6.2
-=kde-base/kimagemapeditor-4.6.2
-=kde-base/kinfocenter-4.6.2
-=kde-base/kioclient-4.6.2
-=kde-base/kiriki-4.6.2
-=kde-base/kiten-4.6.2
-=kde-base/kjumpingcube-4.6.2
-=kde-base/klettres-4.6.2
-=kde-base/klickety-4.6.2
-=kde-base/klines-4.6.2
-=kde-base/klinkstatus-4.6.2
-=kde-base/klipper-4.6.2
-=kde-base/kmag-4.6.2
-=kde-base/kmahjongg-4.6.2
-=kde-base/kmenuedit-4.6.2
-=kde-base/kmimetypefinder-4.6.2
-=kde-base/kmines-4.6.2
-=kde-base/kmix-4.6.2
-=kde-base/kmousetool-4.6.2
-=kde-base/kmouth-4.6.2
-=kde-base/kmplot-4.6.2
-=kde-base/knetattach-4.6.2
-=kde-base/knetwalk-4.6.2
-=kde-base/knewstuff-4.6.2
-=kde-base/knotify-4.6.2
-=kde-base/kolf-4.6.2
-=kde-base/kollision-4.6.2
-=kde-base/kolourpaint-4.6.2
-=kde-base/kommander-4.6.2
-=kde-base/kompare-4.6.2
-=kde-base/konqueror-4.6.2
-=kde-base/konquest-4.6.2
-=kde-base/konsole-4.6.2
-=kde-base/kpasswdserver-4.6.2
-=kde-base/kpat-4.6.2
-=kde-base/kppp-4.6.2
-=kde-base/kquitapp-4.6.2
-=kde-base/krdc-4.6.2
-=kde-base/kreadconfig-4.6.2
-=kde-base/kremotecontrol-4.6.2
-=kde-base/kreversi-4.6.2
-=kde-base/krfb-4.6.2
-=kde-base/krossjava-4.6.2
-=kde-base/krosspython-4.6.2
-=kde-base/kruler-4.6.2
-=kde-base/krunner-4.6.2
-=kde-base/ksaneplugin-4.6.2
-=kde-base/kscd-4.6.2
-=kde-base/kscreensaver-4.6.2
-=kde-base/kshisen-4.6.2
-=kde-base/ksirk-4.6.2
-=kde-base/ksmserver-4.6.2
-=kde-base/ksnapshot-4.6.2-r1
-=kde-base/kspaceduel-4.6.2
-=kde-base/ksplash-4.6.2
-=kde-base/ksquares-4.6.2
-=kde-base/kstars-4.6.2
-=kde-base/kstart-4.6.2
-=kde-base/kstartperf-4.6.2
-=kde-base/kstartupconfig-4.6.2
-=kde-base/kstyles-4.6.2
-=kde-base/ksudoku-4.6.2
-=kde-base/ksysguard-4.6.2-r1
-=kde-base/ksystemlog-4.6.2
-=kde-base/ksystraycmd-4.6.2
-=kde-base/kteatime-4.6.2
-=kde-base/ktimer-4.6.2
-=kde-base/ktimezoned-4.6.2
-=kde-base/ktouch-4.6.2
-=kde-base/ktraderclient-4.6.2
-=kde-base/ktron-4.6.2
-=kde-base/ktuberling-4.6.2
-=kde-base/kturtle-4.6.2
-=kde-base/ktux-4.6.2
-=kde-base/kubrick-4.6.2
-=kde-base/kuiserver-4.6.2
-=kde-base/kuiviewer-4.6.2
-=kde-base/kurifilter-plugins-4.6.2
-=kde-base/kuser-4.6.2
-=kde-base/kvtml-data-4.6.2
-=kde-base/kwallet-4.6.2
-=kde-base/kwalletd-4.6.2
-=kde-base/kwin-4.6.2
-=kde-base/kwordquiz-4.6.2
-=kde-base/kwrite-4.6.2
-=kde-base/kwrited-4.6.2
-=kde-base/libkcddb-4.6.2
-=kde-base/libkcompactdisc-4.6.2
-=kde-base/libkdcraw-4.6.2
-=kde-base/libkdeedu-4.6.2
-=kde-base/libkdegames-4.6.2
-=kde-base/libkexiv2-4.6.2
-=kde-base/libkipi-4.6.2
-=kde-base/libkmahjongg-4.6.2
-=kde-base/libkonq-4.6.2
-=kde-base/libksane-4.6.2
-=kde-base/libkworkspace-4.6.2
-=kde-base/liboxygenstyle-4.6.2
-=kde-base/libplasmaclock-4.6.2
-=kde-base/libplasmagenericshell-4.6.2
-=kde-base/libtaskmanager-4.6.2
-=kde-base/lokalize-4.6.2
-=kde-base/lskat-4.6.2
-=kde-base/marble-4.6.2-r1
-=kde-base/mplayerthumbs-4.6.2
-=kde-base/nepomuk-4.6.2
-=kde-base/nsplugins-4.6.2
-=kde-base/okteta-4.6.2
-=kde-base/okular-4.6.2
-=kde-base/oxygen-icons-4.6.2
-=kde-base/palapeli-4.6.2
-=kde-base/parley-4.6.2
-=kde-base/phonon-kde-4.6.2
-=kde-base/plasma-apps-4.6.2
-=kde-base/plasma-runtime-4.6.2
-=kde-base/plasma-workspace-4.6.2-r1
-=kde-base/powerdevil-4.6.2-r1
-=kde-base/printer-applet-4.6.2
-=kde-base/pykde4-4.6.2
-=kde-base/qguiplatformplugin_kde-4.6.2
-=kde-base/renamedlg-plugins-4.6.2
-=kde-base/rocs-4.6.2
-=kde-base/smoke-4.6.2
-=kde-base/solid-4.6.2
-=kde-base/solid-runtime-4.6.2
-=kde-base/step-4.6.2
-=kde-base/superkaramba-4.6.2
-=kde-base/svgpart-4.6.2
-=kde-base/sweeper-4.6.2
-=kde-base/system-config-printer-kde-4.6.2
-=kde-base/systemsettings-4.6.2
-=kde-base/thumbnailers-4.6.2
-=kde-base/umbrello-4.6.2
-
-
-# KDE 4.6.2 dependencies
-
-
-=app-office/akonadi-server-1.5.2
-=dev-libs/libattica-0.2.0
-=dev-libs/shared-desktop-ontologies-0.5
-=dev-libs/soprano-2.6.0 
-=dev-python/PyQt4-4.8.3
-=dev-python/sip-4.12.1
-=kde-misc/polkit-kde-kcmodules-0.98_pre20101127
-=kde-misc/kwebkitpart-0.9.6
-# =media-libs/phonon-4.5.0 (filed as bug 364175)
-# =media-libs/phonon-gstreamer-4.5.0 (filed as bug 364175)
-# =media-libs/phonon-vlc-0.3.2 (filed as bug 364175)
-# =media-libs/phonon-xine-4.4.4 (filed as bug 364175)
-=net-libs/libbluedevil-1.9
-=net-wireless/bluedevil-1.1-r1
-=sys-auth/polkit-kde-agent-0.99.0
-=sys-auth/polkit-qt-0.99.0
-=x11-misc/google-gadgets-0.11.2
-
-
-# KDEPIM 4.4.11.1
-
-
-=kde-base/akonadi-4.4.11.1
-=kde-base/akregator-4.4.11.1-r1
-=kde-base/blogilo-4.4.11.1
-=kde-base/kabcclient-4.4.11.1
-=kde-base/kaddressbook-4.4.11.1
-=kde-base/kalarm-4.4.11.1
-=kde-base/kdepim-icons-4.4.11.1
-=kde-base/kdepim-kresources-4.4.11.1
-=kde-base/kdepim-meta-4.4.11.1
-=kde-base/kdepim-strigi-analyzer-4.4.11.1
-=kde-base/kdepim-runtime-4.4.11.1
-=kde-base/kdepim-wizards-4.4.11.1
-=kde-base/kjots-4.4.11.1
-=kde-base/kleopatra-4.4.11.1
-=kde-base/kmail-4.4.11.1
-=kde-base/knode-4.4.11.1
-=kde-base/knotes-4.4.11.1
-=kde-base/konsolekalendar-4.4.11.1
-=kde-base/kontact-4.4.11.1
-=kde-base/korganizer-4.4.11.1
-=kde-base/ktimetracker-4.4.11.1
-=kde-base/libkdepim-4.4.11.1
-=kde-base/libkleo-4.4.11.1
-=kde-base/libkpgp-4.4.11.1
-=kde-base/kdepim-l10n-4.4.11.1
-
-
-# Misc/Extragear Qt and KDE applications and dependencies
-
-
-=kde-misc/knetworkmanager-4.4.0_p20110415
-
-=kde-misc/konq-plugins-4.6.1
-
-# digikam
-
-=media-gfx/digikam-1.9.0
-=media-plugins/kipi-plugins-1.9.0
-# =dev-libs/libf2c-20090407-r1 (filed as bug 364011)
-# =media-libs/lensfun-0.2.5-r1 (filed as bug 364173)
-# =sci-libs/clapack-3.2.1-r3 (filed as bug 364013)
-
-# koffice
-
-=app-office/karbon-2.3.3
-=app-office/kexi-2.3.3
-=app-office/koffice-data-2.3.3
-=app-office/koffice-l10n-2.3.3
-=app-office/koffice-libs-2.3.3
-=app-office/koffice-meta-2.3.3
-=app-office/kplato-2.3.3
-=app-office/kpresenter-2.3.3
-=app-office/krita-2.3.3
-=app-office/kspread-2.3.3
-=app-office/kword-2.3.3
-
-# kdevelop
-
-=dev-util/kdevelop-4.2.2
-=dev-util/kdevplatform-1.2.2
-
-# amarok
-
-=media-sound/amarok-2.4.0
-=media-libs/liblastfm-0.3.3
-
-# kaffeine
-
-=media-video/kaffeine-1.2.2
-
-# ktorrent
-
-=net-p2p/ktorrent-4.0.5
-=net-libs/libktorrent-1.1.0
-
-# rekonq
-
-=www-client/rekonq-0.7.0
-
-# yakuake
-
-=kde-misc/yakuake-2.9.8
-
-# ebook-tools
-
-=app-text/ebook-tools-0.2.1
-
-# qt-creator
-
-=dev-util/qt-creator-2.1.0
-



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-06-28 19:10 Andreas Hüttel
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Hüttel @ 2011-06-28 19:10 UTC (permalink / raw
  To: gentoo-commits

commit:     f969be834e1b13c5d3d2991bae6ceb44fe58df8a
Author:     Andreas K. Huettel (dilfridge) <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 26 15:07:39 2011 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue Jun 28 19:10:10 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f969be83

[Documentation] remove devs from HACKERS file

---
 Documentation/HACKERS |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/Documentation/HACKERS b/Documentation/HACKERS
index 3090ee4..10096e5 100644
--- a/Documentation/HACKERS
+++ b/Documentation/HACKERS
@@ -1,6 +1,5 @@
 # list of KDE team trusted contributors, HTs or apprentices for HT
 # sorted by the moment they hit mine mind
-reavertm
 Sput
 krytzz
 dagger
@@ -9,4 +8,3 @@ Phlogi
 Dessa
 lxnay
 wohnout
-dilfridge



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2011-08-01 11:14 Theo Chatzimichos
  0 siblings, 0 replies; 131+ messages in thread
From: Theo Chatzimichos @ 2011-08-01 11:14 UTC (permalink / raw
  To: gentoo-commits

commit:     53caf9e140434ba634ae848043642693c3e7b4c7
Author:     Theo Chatzimichos <tampakrap <AT> gentoo <DOT> org>
AuthorDate: Mon Aug  1 11:13:36 2011 +0000
Commit:     Theo Chatzimichos <tampakrap <AT> gentoo <DOT> org>
CommitDate: Mon Aug  1 11:13:36 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=53caf9e1

Remove TODO, we have bugzie for that
Remove README, we have a nice guide instead

---
 Documentation/README |   41 -----------------------------------------
 Documentation/TODO   |   41 -----------------------------------------
 2 files changed, 0 insertions(+), 82 deletions(-)

diff --git a/Documentation/README b/Documentation/README
deleted file mode 100644
index 3b3714c..0000000
--- a/Documentation/README
+++ /dev/null
@@ -1,41 +0,0 @@
-Hi. Welcome to the kde overlay.
-
-This overlay is a testing ground for the kde team. This is where
-we'll test new ideas before applying them in the tree. It is also
-the main repository for KDE live ebuilds and weekly snapshots.
-
-Installation instructions (and a full Gentoo KDE guide) can be
-found at http://kde.gentoo.org/kde4-guide.xml
-
-
-== EIX ==
-
-We all know that eix takes a long time to complete.
-I set up a server who generates metadata-cache, you can use it to speed up update-eix drastically.
-
-ATTENTION: Perhaps your overlay path may vary!
-
-Put this into /etc/eix-sync.conf:
-	@cd /var/lib/layman/kde/Documentation && sh ./metadata-sync
-
-Your local git copy will almost always be newer than what the metadata-mirror-server had.
-	Hence in addition to the above, you might want to put this into .git/hooks/post-checkout:
-		#!/bin/sh
-		cd $GIT_DIR
-		/usr/local/bin/git-set-file-times
-	You can get git-set-file-times from Git Wiki:
-		https://git.wiki.kernel.org/index.php/ExampleScripts#Setting_the_timestamps_of_the_files_to_the_commit_timestamp_of_the_commit_which_last_touched_them
-	WARNING: Doing this is usually considered DANGEROUS and can break stuff in unexpected ways!
-
-
-== IMPORTANT NOTE FOR >=KDE-4.2.65 AND LIVE KDE4 USERS ==
-
-Some packages (notably kde-base/pykde4:4.3 and kde-base/pykde4:live) require some yet unreleased packages:
-- dev-python/sip
-- dev-python/PyQt4
-They are maintaned in Official Qt Team Overlay (qting-edge), so please grab them from there.
-
-layman -a qting-edge (or use your favourite method to do it)
-
-For more info about qting-edge overlay, visit:
-http://github.com/gentoo-qt/qting-edge/tree/master/Documentation

diff --git a/Documentation/TODO b/Documentation/TODO
deleted file mode 100644
index 4d98e7e..0000000
--- a/Documentation/TODO
+++ /dev/null
@@ -1,41 +0,0 @@
-TODO list:
-
-doc useflags
- - needs to be tested that for handbook the linguas detection is working fine.
-
-KDE upstream tracking map.
- - some application that would show us what parts of kde we dont have implemented yet. So we could see what ebuilds we need to add.
-
-dev-util/kdevelop:
- - KDevelop uses dev-libs/check and dev-util/cppunit if available (for plugin/xtest)
-   * does not use the usual macro_optional_add stuff, so we can't use the cmake stuff in our eclasses to select
-   * if pkgs are not available at compile time, xtest is not built
-   * should we make that a USE? Or just always depend on those? Patching CMakeLists.txt to not include them if not wanted?
-
-kdebindings:
- - create new ebuilds for all various things.
- - php, java, c#...
-
-kdepim:
-- do something with nepomuk_email_feeder and ontologies (moved away from kdepim-runtime)
-- do something with examples
-- add kdepim-runtime as RDEPEND-only to some kdepim packages
-
-ebuilds:
- - check missing ebuilds in live slot (comparing cmakelists probably)
- - kapptemplate needs to be checked again when kbindings is available?
- - kdesdk-kioslaves, i dont know about the dev-vcs/kdesvn collision
- - kdesdk-misc, kpalettes doesnt do anything, scheck disabled in cmakelists.txt
-
-TESTS:
- - run test for each application and coordinate with upstream if fails
- - don't add RESTRICT=test to ebuild, remove it from the ones which fail currently
-   and add codeblock to eclass where it will be added to all relevant PNs
-
-SHINY:
- - write some application that could be run on d.ge.o and show the state of ebuilds (compiled fine/died)
- - generate some nice look&feel - icons/themes/kdm
- - create some reasonable default config for kde, when user first log in so he has configured it a bit (ie. create icons on desktop onto some gentoo sites)
-
-Periodic work:
- - each month check if there are new applications in live that need packaging



^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2012-08-30 10:52 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2012-08-30 10:52 UTC (permalink / raw
  To: gentoo-commits

commit:     22cf7cc8746dd18f455a93e3292e7b16af5b8180
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 30 10:51:23 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu Aug 30 10:51:23 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=22cf7cc8

[Documentation] CODE moved to the wiki, removed duplicated content.

---
 Documentation/CODE |  171 +---------------------------------------------------
 1 files changed, 2 insertions(+), 169 deletions(-)

diff --git a/Documentation/CODE b/Documentation/CODE
index 2500461..112b5f7 100644
--- a/Documentation/CODE
+++ b/Documentation/CODE
@@ -1,174 +1,7 @@
 WHAT RULES I SHOULD FOLLOW WHEN I WANT TO WORK ON SOMETHING FOR KDE TEAM?
-If you asked this question you are reading the right file.
-
-KDE4 policies:
-
- - NEVER EVER COMMIT NEW REVBUMPS NOR MAJOR CHANGES TO TREE DIRECTLY - ALWAYS USE overlay
-   first so that more pairs of eyes can spot issues. Especially anything in kde-base.
-
- - append valid metadata.xml - not necessarily with <herd>kde</herd> if you're proxy
-   maintaining some ebuild. Never append ChangeLog because file/folder history is determined by commit log.
-
- - NEVER EVER commit anything that can break metadata cache. Check every commit at least with repoman -v -d full!
-
- - always separate DEPEND and RDEPEND properly (adding COMMON_DEPEND if needed)
-
- - always use kde4-* eclasses. kde4-base for applications with main CMakeLists.txt in toplevel
-   source directory, kde4-meta for applications hidden deeper in source code directory structure
-   and requiring common CMakeLists.txt from toplevel directory.
-   See also KMEXTRA, KMEXTRACTONLY, KMCOMPILEONLY eclass variables.
-   NEVER FORGET TO INVOKE kde4-{base,meta}_${phase_function} when overriding ebuild phase!
-
- - always report CMake issues about everything directly to upstream and backport their fix.
-
- - never use -j1 in ebuilds. Always report the issue upstream and wait for the resolution or fix yourself
-
- - double check handbook support in your package. For kde4-meta style ebuilds - look for doc/${PN}
-   or similar directory. Sometimes application handbooks are not trivial to assign (for example
-   kde-base/khelpcenter ebuild), in such case ask Gentoo KDE team/HT members or contact upstream.
-   To enable handbook support, set KDE_HANDBOOK=1 before inheriting kde eclasses.
-
- - think about adding debug USE flag to your package. Do not add debug USE flag for artwork-only and
-   python-only KDE packages. And don't forget to write metadata.xml entries for new local USE flags.
-
- - do not enable USE flags by default (IUSE="+useflag") with no *good* reason. "Because I use it" is
-   not enough. If uncertain - discuss it with the rest of the team. USE flags that are considered as
-   commonly used, known to work and not pulling any dependencies, can be enabled by default right away.
-
- - always check for linguas and add them to the KDE_LINGUAS variable.
-
- - always fix automagic packages with macro_optional_ prefixing and report it upstream with patch.
-
- - check your apps deps with dynlink-scanner in Documentation/maintainers folder. Be aware, that this tool does not
-   return complete runtime dependency chain, still it will find most automagic linking dependencies.
-
- - if you want our herd in the application and you are not Gentoo KDE team/HT member - ask us first.
-
- - all kde4 and kde-live misc applications should be in SLOT="4". Feel free to fix packages that don't
-   follow this, and always add the correct blockers (be carefull not to block kde3 packages)
-
- - if you revbump some snapshots of yet-not-released packages (like phonon, soprano, eigen etc), always ensure
-   it's visible *only* for those users that really need it and not for every ~arch users. For KDE dependencies,
-   there are kdedeps-${SLOT} sets created for this purpose. regenerate-files tool will mask those ebuilds
-   for everyone except those using kde-${SLOT} umask file helper, so those dependencies will be available
-   only for them.
-
- - use the add_blocker function to add blocks. This ensures that the blocks are only added to RDEPEND.
-
-Examples:
-
-   # Block all versions of kdelibs <=4.1.80
-   add_blocker kdelibs 4.1.80
-
-   # Block all versions of kdelibs <4.2.0
-   add_blocker kdelibs '<4.2.0'
-
-   # Block all versions of kde-menu (replaced by kdebase-menu)
-   add_blocker kde-menu
-
-   # Block all versions of kdelibs in KDE 4.1 or prior
-   add_blocker kdelibs 4.1.50
-
-   For more details, read the comments in kde4-functions.eclass
-
- - comment any new blockers you add
-
-
-Commiting:
-
- - always run repoman full on ebuild subtree you're working on before commiting *anything*
-
- - try to keep one commit per change if possible. If more appropriate - one commit per feature.
-
- - all commit messages must look like this:
-
-   [<category/pn>] <detailed message describing what you did>
-   Also append package version, when needed.
-
-Examples:
-
-   [kde-base/kdelibs-4.2.3] Synced with tree: fixed bug #333452, removed unnecessary solid patch, added debug to IUSE.
-
-   [kde-base/kdelibs-4.2.3] Moved to tree.
-
- - when you commit something related to existing bugzilla bug, add inOverlay to keywords to that bug,
-   so that developers know about it. Also add [overlay-name] to bug summary.
-
- - if you refactor ebuild names in kde-base, *always* synchronize those changes in following locations
-   if applicable:
-
-   * sets/
-
-   * Documentation/package.keywords/
-
-   * Documentation/package.unmask/
-
-   Remember to do not edit autogenerated files, as your changes will be lost in next
-   regenerate-files tool run.
-
-QA:
-
-   - keep ebuilds clean, look at recommended ebuild formatting rules below (obligatory for kde-base).
-     Use existing ebuilds (like kdelibs) for reference.
-
-   * sort dependencies alphabetically - it makes it easier to manage them later
-
-	>=app-misc/strigi-0.6.3[dbus,qt4]
-	dev-libs/libpcre
-	dev-libs/libxml2
-
-   * try to separate KEYWORDS and IUSE with some usually invariant variable (like LICENSE) - it makes
-     it easier to merge changes between live and tagged ebuilds using GUI diff/merge tools.
-     Always *avoid* merging/synchronizing ebuilds manually if possible - it's error prone.
-     Use kompare <srcfile> <destfile> for it.
-
-KEYWORDS="~amd64 ~x86"
-LICENSE="LGPL-2.1"
-IUSE="3dnow acl alsa altivec bindist +bzip2 debug doc fam jpeg2k kerberos
-mmx nls openexr +semantic-desktop spell sse sse2 ssl zeroconf"
-
-   * put blocks at the begin of RDEPEND section, !useflag? ( ) preferably before useflag? ( ) -
-     - it's easier to spot them when they're in expected location
-
-RDEPEND="${DEPEND}
-	!kdeprefix? ( !dev-libs/libconvert )
-"
-
-   * put optional dependencies after obligatory ones - again - improves readability
-
-	x11-proto/renderproto
-	xinerama? ( x11-proto/xineramaproto )
-
-   * avoid single line expressions - they are utterly unreadable
-
-	ssl? ( dev-libs/openssl )
-	zeroconf? (
-		|| (
-			net-dns/avahi[mdnsresponder-compat]
-			!bindist? ( net-misc/mDNSResponder )
-		)
-	)
-
-   * always indent dependencies with <tab> characters from new line (including other variable like
-     ${COMMONDEPEND} may be exception here) and always break line *after* dependency - it makes it easier to
-     synchronize such deps semi-automatically between ebuilds using GUI diff/merge tools (less conflicts).
-     The same applies to PATCHES as well.
-
-COMMONDEPEND="
-	>=app-misc/strigi-0.6.3[dbus,qt4]
-"
-# sth? ( dev/foo ) - re-add when in tree
-DEPEND="${COMMONDEPEND}
-	doc? ( app-doc/doxygen )
-	nls? ( virtual/libintl )
-"
-
-PATCHES=(
-	"${FILESDIR}/dist/09_disable_debug_messages_if_not_explicitly_enabled.patch"
-	"${FILESDIR}/dist/20_use_dejavu_as_default_font.patch"
-	"${FILESDIR}/dist/23_solid_no_double_build.patch"
-)
+If you asked this question, you want to read:
 
+http://wiki.gentoo.org/wiki/Project:KDE/Coding_style 
 
 # NOT FOLLOWING THESE RULES WILL BE PUNISHED!
 # No cookies for week!


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2014-04-28 14:01 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2014-04-28 14:01 UTC (permalink / raw
  To: gentoo-commits

commit:     783b4707923bdb53b1970b5d387e5253935860bd
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 28 14:01:10 2014 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Mon Apr 28 14:01:10 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=783b4707

[Documentation] Regenerate files.

---
 Documentation/CONTRIBUTORS | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index fed3262..3a57b3c 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -2,7 +2,7 @@
 Alex Alexander <wired@gentoo.org>
 Alex Turbov <i.zaufi@gmail.com>
 Alexey Shvetsov <alexxy@gentoo.org>
-Andreas K. Huettel <dilfridge@gentoo.org>
+Andreas K. Hüettel <dilfridge@gentoo.org>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
 Ben de Groot <yngwin@gentoo.org>
 Chris Reffett <creffett@gentoo.org>
@@ -25,6 +25,7 @@ George Kiagiadakis <kiagiadakis.george@gmail.com>
 Giorgos Tsiapaliwkas <terietor@gmail.com>
 Ian Delaney <idell5@iinet.com.au>
 Ian Whyman <thev00d00@gentoo.org>
+Jakub Caban <kuba@whyblack.pl>
 Jan Kundrát <jkt@flaska.net>
 Jason A. Donenfeld <Jason@zx2c4.com>
 Jean-Baptiste Rouault <jbrouault@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2014-04-28 14:38 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2014-04-28 14:38 UTC (permalink / raw
  To: gentoo-commits

commit:     e0af862fcca01ba979b701c1f8fcc3a6817a883f
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 28 14:38:00 2014 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Mon Apr 28 14:38:00 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e0af862f

[Documentation] Regenerate files.

---
 Documentation/CONTRIBUTORS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 3a57b3c..edbbe51 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -2,7 +2,7 @@
 Alex Alexander <wired@gentoo.org>
 Alex Turbov <i.zaufi@gmail.com>
 Alexey Shvetsov <alexxy@gentoo.org>
-Andreas K. Hüettel <dilfridge@gentoo.org>
+Andreas K. Hüttel <dilfridge@gentoo.org>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
 Ben de Groot <yngwin@gentoo.org>
 Chris Reffett <creffett@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2014-05-25 14:41 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2014-05-25 14:41 UTC (permalink / raw
  To: gentoo-commits

commit:     4dedfc99f3833262203b00c2ceb776730836aa55
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun May 25 14:41:01 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun May 25 14:41:01 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=4dedfc99

[Documentation] Update CONTRIBUTORS

---
 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index edbbe51..52fc5cf 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -1,6 +1,7 @@
 # Autogenerated by regenerate-files, DO NOT EDIT.
 Alex Alexander <wired@gentoo.org>
 Alex Turbov <i.zaufi@gmail.com>
+Alexandr Akulich <akulichalexander@gmail.com>
 Alexey Shvetsov <alexxy@gentoo.org>
 Andreas K. Hüttel <dilfridge@gentoo.org>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2014-07-15 17:51 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2014-07-15 17:51 UTC (permalink / raw
  To: gentoo-commits

commit:     02728ef2301859ad5abf04b15c46e3ef7755e87f
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 15 15:50:50 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Tue Jul 15 15:51:14 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=02728ef2

[Documentation] Update CONTRIBUTORS

---
 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 4be0b2e..339f8b3 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -3,6 +3,7 @@ Alex Alexander <wired@gentoo.org>
 Alex Turbov <i.zaufi@gmail.com>
 Alexandr Akulich <akulichalexander@gmail.com>
 Alexey Shvetsov <alexxy@gentoo.org>
+Andreas Eckstein <andreas.eckstein@gmx.net>
 Andreas K. Hüttel <dilfridge@gentoo.org>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
 Ben de Groot <yngwin@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2014-08-06 15:47 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2014-08-06 15:47 UTC (permalink / raw
  To: gentoo-commits

commit:     95f2e4ae93a6a2862aa8f26ff72d9db0a509e835
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  6 15:47:07 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Aug  6 15:47:07 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=95f2e4ae

[Documentation] Update CONTRIBUTORS

---
 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 339f8b3..892fb97 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -5,6 +5,7 @@ Alexandr Akulich <akulichalexander@gmail.com>
 Alexey Shvetsov <alexxy@gentoo.org>
 Andreas Eckstein <andreas.eckstein@gmx.net>
 Andreas K. Hüttel <dilfridge@gentoo.org>
+Andreas Sturmlechner <andreas.sturmlechner@gmail.com>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
 Ben de Groot <yngwin@gentoo.org>
 Chris Reffett <creffett@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2014-08-09 19:57 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2014-08-09 19:57 UTC (permalink / raw
  To: gentoo-commits

commit:     6afd8a20e2c24b4ad01e7469d6c0d3826c62f648
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sat Aug  9 17:56:33 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sat Aug  9 17:56:33 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=6afd8a20

[Documentation] Update CONTRIBUTORS

---
 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 892fb97..0da5cfc 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -48,6 +48,7 @@ Marek Hakala (Greg) <hakala.marek@gmail.com>
 Markos Chandras <hwoarang@gentoo.org>
 Markus Ullmann <jokey@gentoo.org>
 Martin Jansa <Martin.Jansa@gmail.com>
+Matthew Dawson <matthew@mjdsystems.ca>
 Michael Palimaka <kensington@gentoo.org>
 Michael Skiba <opensource@michael-skiba.de>
 My Th <rei4dan@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2014-08-14 15:29 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2014-08-14 15:29 UTC (permalink / raw
  To: gentoo-commits

commit:     adb4cea53306f29d5d5b5648315e4ba13dab2397
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 14 15:28:44 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu Aug 14 15:28:44 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=adb4cea5

Update CONTRIBUTORS

---
 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 0da5cfc..af6806d 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -23,6 +23,7 @@ Dror Levin <spatz@gentoo.org>
 Elias Probst <mail@eliasprobst.eu>
 Enrico Tagliavini <enrico.tagliavini@gmail.com>
 Fabio Erculiani <lxnay@gentoo.org>
+Franz Fellner <alpine.art.de@gmail.com>
 Friedrich Kröner <twinbase@gmail.com>
 George Kiagiadakis <kiagiadakis.george@gmail.com>
 Giorgos Tsiapaliwkas <terietor@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2014-08-24  8:46 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2014-08-24  8:46 UTC (permalink / raw
  To: gentoo-commits

commit:     70197127c726171e16919e1abcfe1244eca18d50
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 24 08:45:03 2014 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Aug 24 08:45:25 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=70197127

[Documentation] Update CONTRIBUTORS.

---
 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index af6806d..042d10e 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -6,6 +6,7 @@ Alexey Shvetsov <alexxy@gentoo.org>
 Andreas Eckstein <andreas.eckstein@gmx.net>
 Andreas K. Hüttel <dilfridge@gentoo.org>
 Andreas Sturmlechner <andreas.sturmlechner@gmail.com>
+Anthony Basile <blueness@gentoo.org>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
 Ben de Groot <yngwin@gentoo.org>
 Chris Reffett <creffett@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2014-09-14 10:46 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2014-09-14 10:46 UTC (permalink / raw
  To: gentoo-commits

commit:     2387cc78524fd5e4415b6f2454ec1a57a05ecbf3
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 14 10:45:28 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Sep 14 10:45:59 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=2387cc78

[Documentation] Update CONTRIBUTORS

---
 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 042d10e..2615145 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -35,6 +35,7 @@ Jan Kundrát <jkt@flaska.net>
 Jason A. Donenfeld <Jason@zx2c4.com>
 Jean-Baptiste Rouault <jbrouault@gmail.com>
 Jekyll Wu <adaptee@gmail.com>
+Joao Carreira <jfmcarreira@gmail.com>
 Johannes Huber <johu@gentoo.org>
 Jonathan Callen <jcallen@gentoo.org>
 Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2014-10-10 16:09 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2014-10-10 16:09 UTC (permalink / raw
  To: gentoo-commits

commit:     1c3ee3d91bd6c57b58165851b12e4deded9fc538
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 10 16:09:41 2014 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Oct 10 16:09:41 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=1c3ee3d9

[Documentation] Update COTRIBUTORS.

---
 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 2615145..a4b6364 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -39,6 +39,7 @@ Joao Carreira <jfmcarreira@gmail.com>
 Johannes Huber <johu@gentoo.org>
 Jonathan Callen <jcallen@gentoo.org>
 Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
+Karol Herbst <git@karolherbst.de>
 Lars Wendler <polynomial-c@gentoo.org>
 Locke Shinseiko <wizzleby@gmail.com>
 Maciej Mrozowski <reavertm@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-01-04 10:12 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2015-01-04 10:12 UTC (permalink / raw
  To: gentoo-commits

commit:     f2d070042884792cb49ba44c80c1eca26342b713
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  4 10:02:58 2015 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Jan  4 10:02:58 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f2d07004

Update CONTRIBUTORS

---
 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 1b31483..8037770 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -30,6 +30,7 @@ Franz Fellner <alpine.art.de@gmail.com>
 Friedrich Kröner <twinbase@gmail.com>
 George Kiagiadakis <kiagiadakis.george@gmail.com>
 Giorgos Tsiapaliwkas <terietor@gmail.com>
+Gustaw Smolarczyk <wielkiegie@gmail.com>
 Ian Delaney <idell5@iinet.com.au>
 Ian Whyman <thev00d00@gentoo.org>
 Jakub Caban <kuba@whyblack.pl>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-01-09 16:31 Manuel Rüger
  0 siblings, 0 replies; 131+ messages in thread
From: Manuel Rüger @ 2015-01-09 16:31 UTC (permalink / raw
  To: gentoo-commits

commit:     e8cf6f45a82e83d6ca511c8fb9ecad70584217af
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  9 16:31:41 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Jan  9 16:31:41 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e8cf6f45

[Documentation] Update contributors.

---
 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 8037770..e31a052 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -87,3 +87,4 @@ krytzz <krytzz@soylent.eu>
 puchu <puchu@gmx.at>
 travlr <vel.accel@gmail.com>
 zaufi <i.zaufi@gmail.com>
+Øystein S. Haaland <Oystein.S.Haaland@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-01-28 21:59 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2015-01-28 21:59 UTC (permalink / raw
  To: gentoo-commits

commit:     f0fab5fe950dc5248dc68c6b59967fb8839501ae
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 28 21:58:32 2015 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Jan 28 21:58:32 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f0fab5fe

[Documenation] Update CONTRIBUTORS

---
 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index e31a052..d69c3b0 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -25,6 +25,7 @@ Dominik Kapusta <d@ayoy.net>
 Dror Levin <spatz@gentoo.org>
 Elias Probst <mail@eliasprobst.eu>
 Enrico Tagliavini <enrico.tagliavini@gmail.com>
+Eugene Shalygin <eugene.shalygin@gmail.com>
 Fabio Erculiani <lxnay@gentoo.org>
 Franz Fellner <alpine.art.de@gmail.com>
 Friedrich Kröner <twinbase@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-03-28 22:05 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2015-03-28 22:05 UTC (permalink / raw
  To: gentoo-commits

commit:     2e12797fba83b9caa9b117efa97b228c7f8bec16
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 28 22:04:34 2015 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sat Mar 28 22:04:34 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=2e12797f

[Documentation] Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index d69c3b0..db7be5e 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -67,6 +67,7 @@ Pavlos Ratis <dastergon@gentoo.org>
 Petteri Räty <betelgeuse@gentoo.org>
 Přemysl Vohout <premek@vohnout.cz>
 Richard Yao <ryao@cs.stonybrook.edu>
+Rinaldus <forreg@rinaldus.ru>
 Robert Förster <Dessa@gmake.de>
 Robert Piasek <dagger@gentoo.org>
 Romain Perier <mrpouet@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-04-08 19:28 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2015-04-08 19:28 UTC (permalink / raw
  To: gentoo-commits

commit:     939d2a201e715a012a951d5e4340bd0eaa7a8323
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  8 19:25:07 2015 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Apr  8 19:25:07 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=939d2a20

[Documentation] Remove HACKERS file

Completly outdated and superseded by autogenerated CONTRIBUTORS file.

 Documentation/HACKERS | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/Documentation/HACKERS b/Documentation/HACKERS
deleted file mode 100644
index 10096e5..0000000
--- a/Documentation/HACKERS
+++ /dev/null
@@ -1,10 +0,0 @@
-# list of KDE team trusted contributors, HTs or apprentices for HT
-# sorted by the moment they hit mine mind
-Sput
-krytzz
-dagger
-papillon81
-Phlogi
-Dessa
-lxnay
-wohnout


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-04-28 13:00 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2015-04-28 13:00 UTC (permalink / raw
  To: gentoo-commits

commit:     7feb5f5ccb7847b56474877acbb8347ea147a740
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 28 13:00:33 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Tue Apr 28 13:00:33 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=7feb5f5c

[Documentation] Update CONTRIBUTORS.

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index db7be5e..d6a1c77 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -76,6 +76,7 @@ Samuli Suominen <ssuominen@gentoo.org>
 Scarlett Clark <scarlett@scarlettgatelyclark.com>
 Steffen Stramm <krytzz@soylent.eu>
 Theo Chatzimichos <tampakrap@gentoo.org>
+Till Schäfer <till2.schaefer@uni-dortmund.de>
 Tobias Heinlein <keytoaster@gentoo.org>
 Tomáš Chvátal <scarabeus@gentoo.org>
 Torgny Nyblom <kde@nyblom.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-05-29 20:07 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2015-05-29 20:07 UTC (permalink / raw
  To: gentoo-commits

commit:     b11a875ceda6fdaf856f3e28751ca43d4d113f16
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Fri May 29 19:50:51 2015 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Fri May 29 19:50:51 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=b11a875c

[Documentation] Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index d6a1c77..2af7864 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -58,6 +58,7 @@ Markus Ullmann <jokey@gentoo.org>
 Martin Jansa <Martin.Jansa@gmail.com>
 Matthew Dawson <matthew@mjdsystems.ca>
 Michael Palimaka <kensington@gentoo.org>
+Michael Seifert <mseifert@error-reports.org>
 Michael Skiba <opensource@michael-skiba.de>
 My Th <rei4dan@gmail.com>
 Oldřich Jedlička <oldium.pro@seznam.cz>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-06-05 17:46 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2015-06-05 17:46 UTC (permalink / raw
  To: gentoo-commits

commit:     9011f0e427863260f231b02558d77a45405aa6b7
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  5 17:46:16 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Jun  5 17:46:16 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=9011f0e4

[Documentation] Update CONTRIBUTORS.

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 2af7864..5406b9d 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -34,6 +34,7 @@ Giorgos Tsiapaliwkas <terietor@gmail.com>
 Gustaw Smolarczyk <wielkiegie@gmail.com>
 Ian Delaney <idell5@iinet.com.au>
 Ian Whyman <thev00d00@gentoo.org>
+Ilya Tumaykin <itumaykin@gmail.com>
 Jakub Caban <kuba@whyblack.pl>
 Jan Kundrát <jkt@flaska.net>
 Jason A. Donenfeld <Jason@zx2c4.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-06-11 16:48 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2015-06-11 16:48 UTC (permalink / raw
  To: gentoo-commits

commit:     05b54cfe3c6fb8b4f94a37cad46dda6963aa1a69
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 11 16:48:18 2015 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu Jun 11 16:48:18 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=05b54cfe

[Documentation] Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 5406b9d..6613b07 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -10,6 +10,7 @@ Andrius Štikonas <andrius@stikonas.eu>
 Anthony Basile <blueness@gentoo.org>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
 Ben de Groot <yngwin@gentoo.org>
+CapitalLetterC <zarathustra.zoroaster@gmail.com>
 Chris Reffett <creffett@gentoo.org>
 Christian Ruppert <idl0r@gentoo.org>
 Christian Schmitt <chris@ilovelinux.de>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-10-10 12:26 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2015-10-10 12:26 UTC (permalink / raw
  To: gentoo-commits

commit:     17760ca6389fa7bec39deef63d7fd29d7fc351bb
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sat Oct 10 12:13:50 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sat Oct 10 12:26:14 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=17760ca6

Documentation: Update contributors

 Documentation/CONTRIBUTORS | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 6613b07..7c542ff 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -6,6 +6,7 @@ Alexey Shvetsov <alexxy@gentoo.org>
 Andreas Eckstein <andreas.eckstein@gmx.net>
 Andreas K. Hüttel <dilfridge@gentoo.org>
 Andreas Sturmlechner <andreas.sturmlechner@gmail.com>
+Andrew Wilcox <AWilcox@Wilcox-Tech.com>
 Andrius Štikonas <andrius@stikonas.eu>
 Anthony Basile <blueness@gentoo.org>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
@@ -37,7 +38,9 @@ Ian Delaney <idell5@iinet.com.au>
 Ian Whyman <thev00d00@gentoo.org>
 Ilya Tumaykin <itumaykin@gmail.com>
 Jakub Caban <kuba@whyblack.pl>
+James Le Cuirot <chewi@gentoo.org>
 Jan Kundrát <jkt@flaska.net>
+Jan Kundrát <jkt@kde.org>
 Jason A. Donenfeld <Jason@zx2c4.com>
 Jean-Baptiste Rouault <jbrouault@gmail.com>
 Jekyll Wu <adaptee@gmail.com>
@@ -48,6 +51,7 @@ Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
 Karol Herbst <git@karolherbst.de>
 Lars Wendler <polynomial-c@gentoo.org>
 Locke Shinseiko <wizzleby@gmail.com>
+Lorenzo Porta <Vindex17@users.noreply.github.com>
 Maciej Mrozowski <reavertm@gentoo.org>
 Magnus Kessler <Magnus.Kessler@gmx.net>
 Manuel Nickschas <sputnick@quassel-irc.org>
@@ -86,6 +90,7 @@ Torgny Nyblom <kde@nyblom.org>
 Unknown <root@localhost>
 Uwe L. Korn <uwelk@xhochy.com>
 Vadim A. Misbakh-Soloviev <mva@mva.name>
+Vadim A. Misbakh-Soloviov <git@mva.name>
 Vladimir Civil Smirnov <civil.over@gmail.com>
 Vladimir Smirnov <civil.over@gmail.com>
 kensington <kensington@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-10-15 16:32 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2015-10-15 16:32 UTC (permalink / raw
  To: gentoo-commits

commit:     89a3abe1e2d0fbeee2b32dfd58a90e2a7a0e117f
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 15 16:31:58 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Oct 15 16:32:30 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=89a3abe1

Documentation: Update contributors

 Documentation/CONTRIBUTORS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 7c542ff..8d9cb38 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -51,7 +51,7 @@ Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
 Karol Herbst <git@karolherbst.de>
 Lars Wendler <polynomial-c@gentoo.org>
 Locke Shinseiko <wizzleby@gmail.com>
-Lorenzo Porta <Vindex17@users.noreply.github.com>
+Lorenzo Porta <vindex17@outlook.it>
 Maciej Mrozowski <reavertm@gentoo.org>
 Magnus Kessler <Magnus.Kessler@gmx.net>
 Manuel Nickschas <sputnick@quassel-irc.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-10-27 16:03 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2015-10-27 16:03 UTC (permalink / raw
  To: gentoo-commits

commit:     36e2f8e4796bedbf5385c258000134ee003fb247
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 27 15:58:43 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Tue Oct 27 16:03:27 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=36e2f8e4

Documentation: Update contributors

 Documentation/CONTRIBUTORS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 8d9cb38..6f08d48 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -48,6 +48,7 @@ Joao Carreira <jfmcarreira@gmail.com>
 Johannes Huber <johu@gentoo.org>
 Jonathan Callen <jcallen@gentoo.org>
 Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
+Julian Ospald <hasufell@gentoo.org>
 Karol Herbst <git@karolherbst.de>
 Lars Wendler <polynomial-c@gentoo.org>
 Locke Shinseiko <wizzleby@gmail.com>
@@ -69,6 +70,7 @@ Michael Skiba <opensource@michael-skiba.de>
 My Th <rei4dan@gmail.com>
 Oldřich Jedlička <oldium.pro@seznam.cz>
 Ondrej Sukup <mimi.vx@gmail.com>
+Pablo Cholaky <waltercool@slash.cl>
 Patrick Lauer <patrick@gentoo.org>
 Pavlos Ratis <dastergon@gentoo.org>
 Petteri Räty <betelgeuse@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-11-13 16:30 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2015-11-13 16:30 UTC (permalink / raw
  To: gentoo-commits

commit:     c98d78fc1297a27a8361453b4e740792fe2aa112
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 13 15:33:50 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Nov 13 16:29:40 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=c98d78fc

Documentation: update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 6f08d48..762251e 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -59,6 +59,7 @@ Manuel Nickschas <sputnick@quassel-irc.org>
 Manuel Rüger <mrueg@gentoo.org>
 Marc Schiffbauer <mschiff@gentoo.org>
 Marcus D. Hanwell <cryos@gentoo.org>
+Marek Behun <kabel@blackhole.sk>
 Marek Hakala (Greg) <hakala.marek@gmail.com>
 Markos Chandras <hwoarang@gentoo.org>
 Markus Ullmann <jokey@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-11-19 16:23 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2015-11-19 16:23 UTC (permalink / raw
  To: gentoo-commits

commit:     5f605dc6736b9a26cf4d8d834e93239c64458118
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 19 16:23:15 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Nov 19 16:23:15 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=5f605dc6

Documentation: update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 762251e..8ef325f 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -69,6 +69,7 @@ Michael Palimaka <kensington@gentoo.org>
 Michael Seifert <mseifert@error-reports.org>
 Michael Skiba <opensource@michael-skiba.de>
 My Th <rei4dan@gmail.com>
+Nikoli <nikoli@gmx.us>
 Oldřich Jedlička <oldium.pro@seznam.cz>
 Ondrej Sukup <mimi.vx@gmail.com>
 Pablo Cholaky <waltercool@slash.cl>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-12-06  9:49 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2015-12-06  9:49 UTC (permalink / raw
  To: gentoo-commits

commit:     2a80cf25e01a87b2ced37d0ad2ea48f5b970d27c
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Fri Dec  4 00:08:35 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Dec  6 09:49:07 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=2a80cf25

Documentation: Update contributors

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 8ef325f..9f66d3f 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -28,6 +28,7 @@ Dror Levin <spatz@gentoo.org>
 Elias Probst <mail@eliasprobst.eu>
 Enrico Tagliavini <enrico.tagliavini@gmail.com>
 Eugene Shalygin <eugene.shalygin@gmail.com>
+Fabian Köster <fabian.koester@bringnow.com>
 Fabio Erculiani <lxnay@gentoo.org>
 Franz Fellner <alpine.art.de@gmail.com>
 Friedrich Kröner <twinbase@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2015-12-10  6:41 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2015-12-10  6:41 UTC (permalink / raw
  To: gentoo-commits

commit:     12fba3b0c1927e6c0eb3a8be014fd240cee4b83b
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Wed Dec  9 21:35:26 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Dec  9 22:09:19 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=12fba3b0

Documentation: Update contributors

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 9f66d3f..9c49898 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -17,6 +17,7 @@ Christian Ruppert <idl0r@gentoo.org>
 Christian Schmitt <chris@ilovelinux.de>
 Christoph Junghans <ottxor@gentoo.org>
 Cyrill Helg <bugs@phlogi.net>
+Daniel Scharrer <daniel@constexpr.org>
 David E. Narvaez <david.narvaez@computer.org>
 David E. Narváez <david.narvaez@computer.org>
 David Heidelberger <david.heidelberger@ixit.cz>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-02-09 10:55 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2016-02-09 10:55 UTC (permalink / raw
  To: gentoo-commits

commit:     2b19ebcdd2998afb8495ce19b1a0793bd4ed366d
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Wed Feb  3 00:33:26 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Tue Feb  9 10:55:20 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=2b19ebcd

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 9c49898..deba8ec 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -51,6 +51,7 @@ Johannes Huber <johu@gentoo.org>
 Jonathan Callen <jcallen@gentoo.org>
 Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
 Julian Ospald <hasufell@gentoo.org>
+Justin Lecher <jlec@gentoo.org>
 Karol Herbst <git@karolherbst.de>
 Lars Wendler <polynomial-c@gentoo.org>
 Locke Shinseiko <wizzleby@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-02-14 15:28 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2016-02-14 15:28 UTC (permalink / raw
  To: gentoo-commits

commit:     bfe3c514ffceb3e1e187c3aab95f43340c829fce
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sun Feb 14 00:04:45 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Feb 14 01:38:21 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=bfe3c514

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index deba8ec..8229556 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -71,6 +71,7 @@ Matthew Dawson <matthew@mjdsystems.ca>
 Michael Palimaka <kensington@gentoo.org>
 Michael Seifert <mseifert@error-reports.org>
 Michael Skiba <opensource@michael-skiba.de>
+Mike Frysinger <vapier@gentoo.org>
 My Th <rei4dan@gmail.com>
 Nikoli <nikoli@gmx.us>
 Oldřich Jedlička <oldium.pro@seznam.cz>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-03-02 17:37 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-03-02 17:37 UTC (permalink / raw
  To: gentoo-commits

commit:     293b24ecbf297e5ada9250682bd4704620591e9b
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  2 17:36:56 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Mar  2 17:36:56 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=293b24ec

Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 8229556..06e7b1d 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -31,6 +31,7 @@ Enrico Tagliavini <enrico.tagliavini@gmail.com>
 Eugene Shalygin <eugene.shalygin@gmail.com>
 Fabian Köster <fabian.koester@bringnow.com>
 Fabio Erculiani <lxnay@gentoo.org>
+Felix Leif Keppmann <felix.leif@keppmann.de>
 Franz Fellner <alpine.art.de@gmail.com>
 Friedrich Kröner <twinbase@gmail.com>
 George Kiagiadakis <kiagiadakis.george@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-03-26 10:43 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-03-26 10:43 UTC (permalink / raw
  To: gentoo-commits

commit:     98f7fce903cbd4421d960867c3c6f5997f18b272
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 26 10:43:07 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sat Mar 26 10:43:07 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=98f7fce9

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 06e7b1d..1e07f2a 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -9,6 +9,7 @@ Andreas Sturmlechner <andreas.sturmlechner@gmail.com>
 Andrew Wilcox <AWilcox@Wilcox-Tech.com>
 Andrius Štikonas <andrius@stikonas.eu>
 Anthony Basile <blueness@gentoo.org>
+Anthony Ryan <anthonyryan1@gmail.com>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
 Ben de Groot <yngwin@gentoo.org>
 CapitalLetterC <zarathustra.zoroaster@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-03-31 18:16 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-03-31 18:16 UTC (permalink / raw
  To: gentoo-commits

commit:     b9d0aa4ea0323df95972daf57cb2a5941d5a7bc9
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 31 18:04:03 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu Mar 31 18:04:03 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=b9d0aa4e

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 1e07f2a..ae2fc6d 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -62,6 +62,7 @@ Maciej Mrozowski <reavertm@gentoo.org>
 Magnus Kessler <Magnus.Kessler@gmx.net>
 Manuel Nickschas <sputnick@quassel-irc.org>
 Manuel Rüger <mrueg@gentoo.org>
+Marc Joliet <marcec@gmx.de>
 Marc Schiffbauer <mschiff@gentoo.org>
 Marcus D. Hanwell <cryos@gentoo.org>
 Marek Behun <kabel@blackhole.sk>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-04-04 17:43 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-04-04 17:43 UTC (permalink / raw
  To: gentoo-commits

commit:     6861555a572cb648396d391513b82a406ab0d0b6
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  4 17:43:07 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon Apr  4 17:43:07 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=6861555a

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index ae2fc6d..271a664 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -70,6 +70,7 @@ Marek Hakala (Greg) <hakala.marek@gmail.com>
 Markos Chandras <hwoarang@gentoo.org>
 Markus Ullmann <jokey@gentoo.org>
 Martin Jansa <Martin.Jansa@gmail.com>
+Matthew Brewer <tomboy64@sina.cn>
 Matthew Dawson <matthew@mjdsystems.ca>
 Michael Palimaka <kensington@gentoo.org>
 Michael Seifert <mseifert@error-reports.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-04-04 17:46 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-04-04 17:46 UTC (permalink / raw
  To: gentoo-commits

commit:     dcbc7d2b94e5c0bfe61323d95fd80853e5272e28
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  4 17:46:08 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon Apr  4 17:46:08 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=dcbc7d2b

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 271a664..de380b6 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -94,6 +94,7 @@ Ronan Arraes Jardim Chagas <ronisbr@gmail.com>
 Samuli Suominen <ssuominen@gentoo.org>
 Scarlett Clark <scarlett@scarlettgatelyclark.com>
 Steffen Stramm <krytzz@soylent.eu>
+Tamas Jantvik <tsjk@hotmail.com>
 Theo Chatzimichos <tampakrap@gentoo.org>
 Till Schäfer <till2.schaefer@uni-dortmund.de>
 Tobias Heinlein <keytoaster@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-04-07 19:30 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-04-07 19:30 UTC (permalink / raw
  To: gentoo-commits

commit:     12c808021f9778602ade1afb56d5fb77cbf97f46
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu Apr  7 19:29:49 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu Apr  7 19:29:49 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=12c80802

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index de380b6..7bacee2 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -106,6 +106,7 @@ Vadim A. Misbakh-Soloviev <mva@mva.name>
 Vadim A. Misbakh-Soloviov <git@mva.name>
 Vladimir Civil Smirnov <civil.over@gmail.com>
 Vladimir Smirnov <civil.over@gmail.com>
+frames <markkuehn@outlook.com>
 kensington <kensington@gentoo.org>
 krytzz <krytzz@soylent.eu>
 puchu <puchu@gmx.at>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-04-14 20:19 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-04-14 20:19 UTC (permalink / raw
  To: gentoo-commits

commit:     2be1e04dfef779b8dc4ff3f9bfc61d18df28a482
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 14 20:19:33 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu Apr 14 20:19:33 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=2be1e04d

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 7bacee2..0270263 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -106,6 +106,7 @@ Vadim A. Misbakh-Soloviev <mva@mva.name>
 Vadim A. Misbakh-Soloviov <git@mva.name>
 Vladimir Civil Smirnov <civil.over@gmail.com>
 Vladimir Smirnov <civil.over@gmail.com>
+William <William@undefined.re>
 frames <markkuehn@outlook.com>
 kensington <kensington@gentoo.org>
 krytzz <krytzz@soylent.eu>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-04-16 17:23 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-04-16 17:23 UTC (permalink / raw
  To: gentoo-commits

commit:     bbe8c99b1d11a1f7f2da0d455eb1643e5415704a
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 16 17:22:20 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sat Apr 16 17:22:20 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=bbe8c99b

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 0270263..139a5c3 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -6,6 +6,7 @@ Alexey Shvetsov <alexxy@gentoo.org>
 Andreas Eckstein <andreas.eckstein@gmx.net>
 Andreas K. Hüttel <dilfridge@gentoo.org>
 Andreas Sturmlechner <andreas.sturmlechner@gmail.com>
+Andrej Rode <mail@andrejro.de>
 Andrew Wilcox <AWilcox@Wilcox-Tech.com>
 Andrius Štikonas <andrius@stikonas.eu>
 Anthony Basile <blueness@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-05-05 10:28 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-05-05 10:28 UTC (permalink / raw
  To: gentoo-commits

commit:     7168edaa5757b03eb50eebbfe45b0a2bffd9667c
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu May  5 10:28:15 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu May  5 10:28:15 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=7168edaa

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 664a66c..49802a5 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -70,6 +70,7 @@ Marek Hakala (Greg) <hakala.marek@gmail.com>
 Markos Chandras <hwoarang@gentoo.org>
 Markus Ullmann <jokey@gentoo.org>
 Martin Jansa <Martin.Jansa@gmail.com>
+Matt Whitlock <gentoo@mattwhitlock.name>
 Matthew Brewer <tomboy64@sina.cn>
 Matthew Dawson <matthew@mjdsystems.ca>
 Michael Palimaka <kensington@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-05-17  7:06 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-05-17  7:06 UTC (permalink / raw
  To: gentoo-commits

commit:     bdb7c78990348993b0a668852abc67e31221b8e8
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Tue May 17 07:06:25 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Tue May 17 07:06:25 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=bdb7c789

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 49802a5..a1819de 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -55,6 +55,7 @@ Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
 Julian Ospald <hasufell@gentoo.org>
 Justin Lecher <jlec@gentoo.org>
 Karol Herbst <git@karolherbst.de>
+Krzysztof Nowicki <krissn@op.pl>
 Lars Wendler <polynomial-c@gentoo.org>
 Locke Shinseiko <wizzleby@gmail.com>
 Lorenzo Porta <vindex17@outlook.it>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-05-26  8:17 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-05-26  8:17 UTC (permalink / raw
  To: gentoo-commits

commit:     0e0b9b8fd4db262ee98cac7d2087fe04f48ccaed
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu May 26 08:17:25 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu May 26 08:17:25 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=0e0b9b8f

Documentation: CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index a1819de..161e66f 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -77,6 +77,7 @@ Matthew Dawson <matthew@mjdsystems.ca>
 Michael Palimaka <kensington@gentoo.org>
 Michael Seifert <mseifert@error-reports.org>
 Michael Skiba <opensource@michael-skiba.de>
+Michał Górny <mgorny@gentoo.org>
 Mike Frysinger <vapier@gentoo.org>
 My Th <rei4dan@gmail.com>
 Nikoli <nikoli@gmx.us>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-06-02 14:11 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-06-02 14:11 UTC (permalink / raw
  To: gentoo-commits

commit:     a4f5d1740a965fc2635025085436b402b5841c0f
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  2 14:11:02 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu Jun  2 14:11:02 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=a4f5d174

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 161e66f..33b5848 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -96,6 +96,7 @@ Romain Perier <mrpouet@gentoo.org>
 Ronan Arraes Jardim Chagas <ronisbr@gmail.com>
 Samuli Suominen <ssuominen@gentoo.org>
 Scarlett Clark <scarlett@scarlettgatelyclark.com>
+Sergey Alirzaev <zl29ah@gmail.com>
 Steffen Stramm <krytzz@soylent.eu>
 Tamas Jantvik <tsjk@hotmail.com>
 Theo Chatzimichos <tampakrap@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-07-25 15:32 Michael Palimaka
  0 siblings, 0 replies; 131+ messages in thread
From: Michael Palimaka @ 2016-07-25 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     fc1446f814145ce1f6980d6c79a24fbe24bc1517
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Mon Jul 25 14:49:23 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Mon Jul 25 15:32:11 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=fc1446f8

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index f38a098..8e3eefb 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -13,11 +13,13 @@ Anthony Basile <blueness@gentoo.org>
 Anthony Ryan <anthonyryan1@gmail.com>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
 Ben de Groot <yngwin@gentoo.org>
+Benda Xu <heroxbd@gentoo.org>
 CapitalLetterC <zarathustra.zoroaster@gmail.com>
 Chris Reffett <creffett@gentoo.org>
 Christian Ruppert <idl0r@gentoo.org>
 Christian Schmitt <chris@ilovelinux.de>
 Christoph Junghans <ottxor@gentoo.org>
+Coacher <itumaykin+gentoo@gmail.com>
 Cyrill Helg <bugs@phlogi.net>
 Daniel Scharrer <daniel@constexpr.org>
 David E. Narváez <david.narvaez@computer.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2016-10-14  8:28 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2016-10-14  8:28 UTC (permalink / raw
  To: gentoo-commits

commit:     cba2b48e9676db82a2e5d9e6bc41c74dab5a4015
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 08:25:00 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 08:25:00 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=cba2b48e

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 8e3eefb..6bae400 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -81,6 +81,7 @@ Michael Seifert <mseifert@error-reports.org>
 Michael Skiba <opensource@michael-skiba.de>
 Michał Górny <mgorny@gentoo.org>
 Mike Frysinger <vapier@gentoo.org>
+Mike Gilbert <floppym@gentoo.org>
 My Th <rei4dan@gmail.com>
 Nikoli <nikoli@gmx.us>
 Oldřich Jedlička <oldium.pro@seznam.cz>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-01-01 20:14 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2017-01-01 20:14 UTC (permalink / raw
  To: gentoo-commits

commit:     e708cb9ec3415283174d464a3a6ea1f43c957452
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  1 20:14:07 2017 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Jan  1 20:14:07 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=e708cb9e

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 6bae400..141b87d 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -5,7 +5,7 @@ Alexandr Akulich <akulichalexander@gmail.com>
 Alexey Shvetsov <alexxy@gentoo.org>
 Andreas Eckstein <andreas.eckstein@gmx.net>
 Andreas K. Hüttel <dilfridge@gentoo.org>
-Andreas Sturmlechner <andreas.sturmlechner@gmail.com>
+Andreas Sturmlechner <asturm@gentoo.org>
 Andrej Rode <mail@andrejro.de>
 Andrew Wilcox <AWilcox@Wilcox-Tech.com>
 Andrius Štikonas <andrius@stikonas.eu>
@@ -101,6 +101,7 @@ Samuli Suominen <ssuominen@gentoo.org>
 Scarlett Clark <scarlett@scarlettgatelyclark.com>
 Sergey Alirzaev <zl29ah@gmail.com>
 Steffen Stramm <krytzz@soylent.eu>
+Sven Eden <yamakuzure@gmx.net>
 Tamas Jantvik <tsjk@hotmail.com>
 Theo Chatzimichos <tampakrap@gentoo.org>
 Till Schäfer <till2.schaefer@uni-dortmund.de>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-01-06 14:21 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2017-01-06 14:21 UTC (permalink / raw
  To: gentoo-commits

commit:     d617974dd89120a9b9100b6b1f112eb5253d6258
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  6 14:21:20 2017 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Fri Jan  6 14:21:20 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=d617974d

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 141b87d..59d51d6 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -87,6 +87,7 @@ Nikoli <nikoli@gmx.us>
 Oldřich Jedlička <oldium.pro@seznam.cz>
 Ondrej Sukup <mimi.vx@gmail.com>
 Pablo Cholaky <waltercool@slash.cl>
+Pacho Ramos <pacho@gentoo.org>
 Patrick Lauer <patrick@gentoo.org>
 Pavlos Ratis <dastergon@gentoo.org>
 Petteri Räty <betelgeuse@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-01-25 20:08 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2017-01-25 20:08 UTC (permalink / raw
  To: gentoo-commits

commit:     705f844f8fcd67b18fe44af93395ee974b0a947b
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 25 20:07:40 2017 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Jan 25 20:07:40 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=705f844f

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 59d51d6..6a47589 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -3,6 +3,7 @@ Alex Alexander <wired@gentoo.org>
 Alex Turbov <i.zaufi@gmail.com>
 Alexandr Akulich <akulichalexander@gmail.com>
 Alexey Shvetsov <alexxy@gentoo.org>
+Alon Bar-Lev <alonbl@gentoo.org>
 Andreas Eckstein <andreas.eckstein@gmx.net>
 Andreas K. Hüttel <dilfridge@gentoo.org>
 Andreas Sturmlechner <asturm@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-02-05  6:58 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2017-02-05  6:58 UTC (permalink / raw
  To: gentoo-commits

commit:     b48e604ff71c7123542da09e16ed2e72a2976780
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  5 06:57:41 2017 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Feb  5 06:57:41 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=b48e604f

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 6a47589..774466e 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -1,4 +1,5 @@
 # Autogenerated by regenerate-files, DO NOT EDIT.
+A. Wilcox <AWilcox@Wilcox-Tech.com>
 Alex Alexander <wired@gentoo.org>
 Alex Turbov <i.zaufi@gmail.com>
 Alexandr Akulich <akulichalexander@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-02-05 13:50 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2017-02-05 13:50 UTC (permalink / raw
  To: gentoo-commits

commit:     f9439edc89ddcbad8eb051e3ad751b76ade394ed
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  5 13:47:57 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Feb  5 13:47:57 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=f9439edc

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 774466e..7d11af5 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -78,6 +78,7 @@ Martin Jansa <Martin.Jansa@gmail.com>
 Matt Whitlock <gentoo@mattwhitlock.name>
 Matthew Brewer <tomboy64@sina.cn>
 Matthew Dawson <matthew@mjdsystems.ca>
+Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
 Michael Palimaka <kensington@gentoo.org>
 Michael Seifert <mseifert@error-reports.org>
 Michael Skiba <opensource@michael-skiba.de>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-02-12 20:08 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2017-02-12 20:08 UTC (permalink / raw
  To: gentoo-commits

commit:     84ca8653db63837418e1874f5a1d0d5cfe2c7354
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 12 20:06:20 2017 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Feb 12 20:08:36 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=84ca8653

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 7d11af5d5b..52406948a9 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -26,6 +26,7 @@ Cyrill Helg <bugs@phlogi.net>
 Daniel Scharrer <daniel@constexpr.org>
 David E. Narváez <david.narvaez@computer.org>
 David Heidelberger <david.heidelberger@ixit.cz>
+David Seifert <soap@gentoo.org>
 Dennis Schridde <devurandom@gmx.net>
 Dimitris Papapoulios <skiarxon@gmail.com>
 Dirk Tilger <dirk.gentoo@miriup.de>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-02-25 20:02 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2017-02-25 20:02 UTC (permalink / raw
  To: gentoo-commits

commit:     7ed70f59731bce1f26cf298b90efa353a2d0d6e9
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 20:01:34 2017 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 20:01:34 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=7ed70f59

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 52406948a9..80c168e221 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -106,7 +106,7 @@ Samuli Suominen <ssuominen@gentoo.org>
 Scarlett Clark <scarlett@scarlettgatelyclark.com>
 Sergey Alirzaev <zl29ah@gmail.com>
 Steffen Stramm <krytzz@soylent.eu>
-Sven Eden <yamakuzure@gmx.net>
+Sven Eden <sven.eden@gmx.de>
 Tamas Jantvik <tsjk@hotmail.com>
 Theo Chatzimichos <tampakrap@gentoo.org>
 Till Schäfer <till2.schaefer@uni-dortmund.de>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-03-18 20:08 Johannes Huber
  0 siblings, 0 replies; 131+ messages in thread
From: Johannes Huber @ 2017-03-18 20:08 UTC (permalink / raw
  To: gentoo-commits

commit:     60d29b50ebef6fdc968b708e9048c0e58e438285
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 18 20:08:32 2017 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sat Mar 18 20:08:32 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=60d29b50

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 80c168e221..a2b974b7a7 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -51,6 +51,7 @@ James Le Cuirot <chewi@gentoo.org>
 Jan Kundrát <jkt@flaska.net>
 Jan Kundrát <jkt@kde.org>
 Jason A. Donenfeld <Jason@zx2c4.com>
+Jason A. Donenfeld <zx2c4@gentoo.org>
 Jean-Baptiste Rouault <jbrouault@gmail.com>
 Jekyll Wu <adaptee@gmail.com>
 Joao Carreira <jfmcarreira@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-05-17 20:58 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2017-05-17 20:58 UTC (permalink / raw
  To: gentoo-commits

commit:     db6ccd0d7e9b85d87310844dd42b9ac3f9f17e9f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed May 17 20:34:13 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed May 17 20:34:13 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=db6ccd0d

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 2539b9b81d..fffc6d5a14 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -93,6 +93,7 @@ Pablo Cholaky <waltercool@slash.cl>
 Pacho Ramos <pacho@gentoo.org>
 Patrick Lauer <patrick@gentoo.org>
 Pavlos Ratis <dastergon@gentoo.org>
+Petros S (Petross404) <petross404@gmail.com>
 Petteri Räty <betelgeuse@gentoo.org>
 Přemysl Vohout <premek@vohnout.cz>
 Richard Yao <ryao@cs.stonybrook.edu>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-07-12 19:45 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2017-07-12 19:45 UTC (permalink / raw
  To: gentoo-commits

commit:     6af6c88411da9113651b6b857fa2f30ae94e8123
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 12 19:45:25 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Jul 12 19:45:25 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=6af6c884

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index fffc6d5a14..69017592ff 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -55,6 +55,7 @@ Jekyll Wu <adaptee@gmail.com>
 Joao Carreira <jfmcarreira@gmail.com>
 Johannes Huber <johu@gentoo.org>
 Jonathan Callen <jcallen@gentoo.org>
+Jonathan Christison <jonny.christison@redhat.com>
 Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
 Julian Ospald <hasufell@gentoo.org>
 Justin Lecher <jlec@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-08-02 23:59 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2017-08-02 23:59 UTC (permalink / raw
  To: gentoo-commits

commit:     341519a04e355f64e64fc1580cd364c23e678410
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  2 23:23:13 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Aug  2 23:23:13 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=341519a0

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 69017592ff..06f9025151 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -57,6 +57,7 @@ Johannes Huber <johu@gentoo.org>
 Jonathan Callen <jcallen@gentoo.org>
 Jonathan Christison <jonny.christison@redhat.com>
 Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
+José Pekkarinen <koalinux@gmail.com>
 Julian Ospald <hasufell@gentoo.org>
 Justin Lecher <jlec@gentoo.org>
 Karol Herbst <git@karolherbst.de>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-10-07 22:19 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2017-10-07 22:19 UTC (permalink / raw
  To: gentoo-commits

commit:     94bc79497462c5d64990608d8ba3d8905d766e02
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  7 21:56:54 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Oct  7 22:09:29 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=94bc7949

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 06f9025151..435aa3f608 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -95,6 +95,7 @@ Pablo Cholaky <waltercool@slash.cl>
 Pacho Ramos <pacho@gentoo.org>
 Patrick Lauer <patrick@gentoo.org>
 Pavlos Ratis <dastergon@gentoo.org>
+Perfect Gentleman <perfect007gentleman@gmail.com>
 Petros S (Petross404) <petross404@gmail.com>
 Petteri Räty <betelgeuse@gentoo.org>
 Přemysl Vohout <premek@vohnout.cz>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2017-12-31 21:23 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2017-12-31 21:23 UTC (permalink / raw
  To: gentoo-commits

commit:     7fc53637c19e90a43244f3b89d4e14bc73de4121
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 31 21:15:57 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Dec 31 21:15:57 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=7fc53637

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 305f5b5c1f..1d4e90393f 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -89,6 +89,7 @@ Mike Frysinger <vapier@gentoo.org>
 Mike Gilbert <floppym@gentoo.org>
 My Th <rei4dan@gmail.com>
 Nikoli <nikoli@gmx.us>
+Nils Freydank <holgersson@posteo.de>
 Oldřich Jedlička <oldium.pro@seznam.cz>
 Ondrej Sukup <mimi.vx@gmail.com>
 Pablo Cholaky <waltercool@slash.cl>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2018-01-31 19:37 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2018-01-31 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     587a43bbfad80398859abe5f89bfbe543a1bd3f6
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 31 18:46:05 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Jan 31 19:37:14 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=587a43bb

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 1d4e90393f..a461e62f30 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -52,6 +52,7 @@ Jan Kundrát <jkt@kde.org>
 Jason A. Donenfeld <zx2c4@gentoo.org>
 Jean-Baptiste Rouault <jbrouault@gmail.com>
 Jekyll Wu <adaptee@gmail.com>
+Jimi Huotari <chiitoo@gentoo.org>
 Joao Carreira <jfmcarreira@gmail.com>
 Johannes Huber <johu@gentoo.org>
 Jonathan Callen <jcallen@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2018-02-06 10:15 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2018-02-06 10:15 UTC (permalink / raw
  To: gentoo-commits

commit:     e4d84219a535d53231a0cef58ab7691fd13016c8
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  5 22:34:59 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Feb  6 01:28:24 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=e4d84219

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index a461e62f30..b4f396367c 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -100,6 +100,7 @@ Patrick Lauer <patrick@gentoo.org>
 Pavlos Ratis <dastergon@gentoo.org>
 Perfect Gentleman <perfect007gentleman@gmail.com>
 Petros S (Petross404) <petross404@gmail.com>
+Petros S <petross404@gmail.com>
 Petteri Räty <betelgeuse@gentoo.org>
 Přemysl Vohout <premek@vohnout.cz>
 Richard Yao <ryao@cs.stonybrook.edu>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2018-03-03 14:29 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2018-03-03 14:29 UTC (permalink / raw
  To: gentoo-commits

commit:     67196dd66eec6022ff2fe1a1a453ad38930a937c
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  3 14:01:09 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Mar  3 14:01:09 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=67196dd6

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index b4f396367c..6c30b1a488 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -35,6 +35,7 @@ Dror Levin <spatz@gentoo.org>
 Elias Probst <mail@eliasprobst.eu>
 Enrico Tagliavini <enrico.tagliavini@gmail.com>
 Eugene Shalygin <eugene.shalygin@gmail.com>
+Fabian Groffen <grobian@gentoo.org>
 Fabian Köster <fabian.koester@bringnow.com>
 Fabio Erculiani <lxnay@gentoo.org>
 Felix Leif Keppmann <felix.leif@keppmann.de>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2018-03-23 18:52 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2018-03-23 18:52 UTC (permalink / raw
  To: gentoo-commits

commit:     cb78d4dcd8fc2eb9ea1d2036e57a4f7787a4720f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 23 18:36:25 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Mar 23 18:51:04 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=cb78d4dc

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 6c30b1a488..2b8dfebba4 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -83,6 +83,7 @@ Matt Whitlock <gentoo@mattwhitlock.name>
 Matthew Brewer <tomboy64@sina.cn>
 Matthew Dawson <matthew@mjdsystems.ca>
 Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
+Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
 Michael Palimaka <kensington@gentoo.org>
 Michael Seifert <mseifert@error-reports.org>
 Michael Skiba <opensource@michael-skiba.de>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2018-03-29 22:39 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2018-03-29 22:39 UTC (permalink / raw
  To: gentoo-commits

commit:     e1fa2686ba0e277f14b875b5e39f221095b71631
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 29 22:37:41 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Mar 29 22:37:41 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=e1fa2686

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 2b8dfebba4..7ece9d06a7 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -88,6 +88,7 @@ Michael Palimaka <kensington@gentoo.org>
 Michael Seifert <mseifert@error-reports.org>
 Michael Skiba <opensource@michael-skiba.de>
 Michał Górny <mgorny@gentoo.org>
+Mike Frysinger <vapier@chromium.org>
 Mike Frysinger <vapier@gentoo.org>
 Mike Gilbert <floppym@gentoo.org>
 My Th <rei4dan@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2018-04-12 18:41 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2018-04-12 18:41 UTC (permalink / raw
  To: gentoo-commits

commit:     8414cf9ffd16097b394887dfe9e3cdc06ab1d33b
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 12 18:41:22 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Apr 12 18:41:22 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=8414cf9f

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 7ece9d06a7..445ec9eda7 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -39,6 +39,7 @@ Fabian Groffen <grobian@gentoo.org>
 Fabian Köster <fabian.koester@bringnow.com>
 Fabio Erculiani <lxnay@gentoo.org>
 Felix Leif Keppmann <felix.leif@keppmann.de>
+Francesco Turco <fturco@fastmail.fm>
 Franz Fellner <alpine.art.de@gmail.com>
 Friedrich Kröner <twinbase@gmail.com>
 George Kiagiadakis <kiagiadakis.george@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2018-05-18 10:18 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2018-05-18 10:18 UTC (permalink / raw
  To: gentoo-commits

commit:     fc60a661f6516c83f051b2d19377000a71c1df38
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri May 18 09:46:28 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri May 18 10:17:57 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=fc60a661

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 445ec9eda7..e2d598ba28 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -80,6 +80,7 @@ Marek Hakala (Greg) <hakala.marek@gmail.com>
 Markos Chandras <hwoarang@gentoo.org>
 Markus Ullmann <jokey@gentoo.org>
 Martin Jansa <Martin.Jansa@gmail.com>
+Matija Skala <mskala@gmx.com>
 Matt Whitlock <gentoo@mattwhitlock.name>
 Matthew Brewer <tomboy64@sina.cn>
 Matthew Dawson <matthew@mjdsystems.ca>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2018-09-13 18:17 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2018-09-13 18:17 UTC (permalink / raw
  To: gentoo-commits

commit:     9e63fd84b06000f34abb55d57161bc7e0f75c02f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 13 17:54:08 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Sep 13 17:54:08 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=9e63fd84

Documentation: Update CONTRIBUTORS

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index e2d598ba28..4c1f7709be 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -80,6 +80,7 @@ Marek Hakala (Greg) <hakala.marek@gmail.com>
 Markos Chandras <hwoarang@gentoo.org>
 Markus Ullmann <jokey@gentoo.org>
 Martin Jansa <Martin.Jansa@gmail.com>
+Marty E. Plummer <hanetzer@startmail.com>
 Matija Skala <mskala@gmx.com>
 Matt Whitlock <gentoo@mattwhitlock.name>
 Matthew Brewer <tomboy64@sina.cn>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2018-11-10 18:50 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2018-11-10 18:50 UTC (permalink / raw
  To: gentoo-commits

commit:     8722e6e00df2d084f2448810c9811748579db030
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 10 17:22:24 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Nov 10 18:46:10 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=8722e6e0

Documentation: Restore CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index e2d598ba28..4c1f7709be 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -80,6 +80,7 @@ Marek Hakala (Greg) <hakala.marek@gmail.com>
 Markos Chandras <hwoarang@gentoo.org>
 Markus Ullmann <jokey@gentoo.org>
 Martin Jansa <Martin.Jansa@gmail.com>
+Marty E. Plummer <hanetzer@startmail.com>
 Matija Skala <mskala@gmx.com>
 Matt Whitlock <gentoo@mattwhitlock.name>
 Matthew Brewer <tomboy64@sina.cn>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2019-02-28 13:19 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2019-02-28 13:19 UTC (permalink / raw
  To: gentoo-commits

commit:     ffcc697eabbaff3c47e288672f6ce1bb5e287e9e
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 28 13:18:15 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Feb 28 13:18:30 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=ffcc697e

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 4c1f7709be..8dd825ae97 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -79,6 +79,7 @@ Marek Behun <kabel@blackhole.sk>
 Marek Hakala (Greg) <hakala.marek@gmail.com>
 Markos Chandras <hwoarang@gentoo.org>
 Markus Ullmann <jokey@gentoo.org>
+Mart Raudsepp <leio@gentoo.org>
 Martin Jansa <Martin.Jansa@gmail.com>
 Marty E. Plummer <hanetzer@startmail.com>
 Matija Skala <mskala@gmx.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2019-09-08  8:31 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2019-09-08  8:31 UTC (permalink / raw
  To: gentoo-commits

commit:     3ae6798e4f4c3401d14a58db8d7e5364d50086b0
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  8 08:30:02 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Sep  8 08:30:02 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=3ae6798e

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 8dd825ae97..5d70e93a3b 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -123,6 +123,7 @@ Steffen Stramm <krytzz@soylent.eu>
 Sven Eden <sven.eden@gmx.de>
 Tamas Jantvik <tsjk@hotmail.com>
 Theo Chatzimichos <tampakrap@gentoo.org>
+Thomas Deutschmann <whissi@gentoo.org>
 Till Schäfer <till2.schaefer@uni-dortmund.de>
 Tobias Heinlein <keytoaster@gentoo.org>
 Tomáš Chvátal <scarabeus@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2019-11-02  9:58 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2019-11-02  9:58 UTC (permalink / raw
  To: gentoo-commits

commit:     ba6ad4c437721770d3803dc9bc18b0f8ed2b85bc
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  2 09:57:01 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Nov  2 09:58:38 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=ba6ad4c4

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 5d70e93a3b..8b08a41563 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -68,6 +68,7 @@ Krzysztof Nowicki <krissn@op.pl>
 Lars Wendler <polynomial-c@gentoo.org>
 Locke Shinseiko <wizzleby@gmail.com>
 Lorenzo Porta <vindex17@outlook.it>
+M. David Bennett <mdavidbennett@syntheticworks.com>
 Maciej Mrozowski <reavertm@gentoo.org>
 Magnus Kessler <Magnus.Kessler@gmx.net>
 Manuel Nickschas <sputnick@quassel-irc.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2019-11-03 18:35 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2019-11-03 18:35 UTC (permalink / raw
  To: gentoo-commits

commit:     c2f3fe6de6fbb623fe62d2d494f9db07ac526d82
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  2 12:40:38 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Nov  2 12:40:38 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=c2f3fe6d

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 8b08a41563..06e6ead980 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -2,6 +2,7 @@
 A. Wilcox <AWilcox@Wilcox-Tech.com>
 Alex Alexander <wired@gentoo.org>
 Alex Turbov <i.zaufi@gmail.com>
+Alexander Tsoy <alexander@tsoy.me>
 Alexandr Akulich <akulichalexander@gmail.com>
 Alexey Shvetsov <alexxy@gentoo.org>
 Alon Bar-Lev <alonbl@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2020-01-26 10:39 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2020-01-26 10:39 UTC (permalink / raw
  To: gentoo-commits

commit:     8017269eead80952e55fac83a529839279982393
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 26 10:39:27 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jan 26 10:39:27 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=8017269e

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 06e6ead980..a8db82807f 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -44,6 +44,7 @@ Francesco Turco <fturco@fastmail.fm>
 Franz Fellner <alpine.art.de@gmail.com>
 Friedrich Kröner <twinbase@gmail.com>
 George Kiagiadakis <kiagiadakis.george@gmail.com>
+Georgy Yakovlev <gyakovlev@gentoo.org>
 Giorgos Tsiapaliwkas <terietor@gmail.com>
 Gustaw Smolarczyk <wielkiegie@gmail.com>
 Ian Delaney <idell5@iinet.com.au>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2020-02-19 13:35 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2020-02-19 13:35 UTC (permalink / raw
  To: gentoo-commits

commit:     c6eb08858a9b4929ad1e7a789ab296a749969b5d
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 19 13:35:07 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Feb 19 13:35:07 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=c6eb0885

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index a8db82807f..7511781dc0 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -134,6 +134,7 @@ Torgny Nyblom <kde@nyblom.org>
 Unknown <root@localhost>
 Uwe L. Korn <uwelk@xhochy.com>
 Vadim A. Misbakh-Soloviev <mva@mva.name>
+Vadim Misbakh-Soloviov <mva@gentoo.org>
 Vladimir Smirnov <civil.over@gmail.com>
 William <William@undefined.re>
 frames <markkuehn@outlook.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2020-03-01 12:33 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2020-03-01 12:33 UTC (permalink / raw
  To: gentoo-commits

commit:     c3adfa4c49fc81e281c3659303161ca8b299c05e
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  1 12:27:30 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Mar  1 12:27:30 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=c3adfa4c

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 7511781dc0..680bab074c 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -86,6 +86,7 @@ Mart Raudsepp <leio@gentoo.org>
 Martin Jansa <Martin.Jansa@gmail.com>
 Marty E. Plummer <hanetzer@startmail.com>
 Matija Skala <mskala@gmx.com>
+Matt Turner <mattst88@gentoo.org>
 Matt Whitlock <gentoo@mattwhitlock.name>
 Matthew Brewer <tomboy64@sina.cn>
 Matthew Dawson <matthew@mjdsystems.ca>
@@ -119,6 +120,7 @@ Robert Förster <Dessa@gmake.de>
 Robert Piasek <dagger@gentoo.org>
 Romain Perier <mrpouet@gentoo.org>
 Ronan Arraes Jardim Chagas <ronisbr@gmail.com>
+Roy Bamford <neddyseagoon@gentoo.org>
 Samuli Suominen <ssuominen@gentoo.org>
 Scarlett Clark <scarlett@scarlettgatelyclark.com>
 Sergey Alirzaev <zl29ah@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2020-04-29 16:10 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2020-04-29 16:10 UTC (permalink / raw
  To: gentoo-commits

commit:     b33afab6bb4c113b7c8e2b0ad797338e69ed9415
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 29 11:52:05 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Apr 29 15:28:03 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=b33afab6

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 680bab074c..45e6bf01ea 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -61,6 +61,7 @@ Joao Carreira <jfmcarreira@gmail.com>
 Johannes Huber <johu@gentoo.org>
 Jonathan Callen <jcallen@gentoo.org>
 Jonathan Christison <jonny.christison@redhat.com>
+Joonas Niilola <juippis@gentoo.org>
 Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
 José Pekkarinen <koalinux@gmail.com>
 Julian Ospald <hasufell@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2020-05-14 17:25 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2020-05-14 17:25 UTC (permalink / raw
  To: gentoo-commits

commit:     f87fdbfce760c0a2ef2466b294d5ee152ab1141a
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu May 14 12:08:25 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu May 14 17:24:24 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=f87fdbfc

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 45e6bf01ea..a85a024f7d 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -91,6 +91,7 @@ Matt Turner <mattst88@gentoo.org>
 Matt Whitlock <gentoo@mattwhitlock.name>
 Matthew Brewer <tomboy64@sina.cn>
 Matthew Dawson <matthew@mjdsystems.ca>
+Mias van Klei <miasvanklei@outlook.com>
 Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
 Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
 Michael Palimaka <kensington@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2020-05-20 19:28 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2020-05-20 19:28 UTC (permalink / raw
  To: gentoo-commits

commit:     58bb0647ef03844da77a76dfe28f32a149f2323f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed May 20 18:32:25 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed May 20 18:32:25 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=58bb0647

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index a85a024f7d..f047e6775a 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -5,6 +5,7 @@ Alex Turbov <i.zaufi@gmail.com>
 Alexander Tsoy <alexander@tsoy.me>
 Alexandr Akulich <akulichalexander@gmail.com>
 Alexey Shvetsov <alexxy@gentoo.org>
+Alexey Sokolov <sokolov@google.com>
 Alon Bar-Lev <alonbl@gentoo.org>
 Andreas Eckstein <andreas.eckstein@gmx.net>
 Andreas K. Hüttel <dilfridge@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2020-09-03 12:52 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2020-09-03 12:52 UTC (permalink / raw
  To: gentoo-commits

commit:     eaad4b88c12a3593aa59e2ea2d10977b8ad49ab2
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  3 12:41:30 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Sep  3 12:41:30 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=eaad4b88

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index f047e6775a..c88fbe9ba1 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -18,6 +18,7 @@ Anthony Ryan <anthonyryan1@gmail.com>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
 Ben de Groot <yngwin@gentoo.org>
 Benda Xu <heroxbd@gentoo.org>
+Branko Grubic <bitlord0xff@gmail.com>
 CapitalLetterC <zarathustra.zoroaster@gmail.com>
 Chris Reffett <creffett@gentoo.org>
 Christian Ruppert <idl0r@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2020-11-23 23:40 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2020-11-23 23:40 UTC (permalink / raw
  To: gentoo-commits

commit:     9b962ba5a50b92e759eefad2a3bb635a654d252f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 23 23:37:18 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Nov 23 23:37:18 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=9b962ba5

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index c88fbe9ba1..4c172c1d99 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -122,6 +122,7 @@ Richard Yao <ryao@cs.stonybrook.edu>
 Rinaldus <forreg@rinaldus.ru>
 Robert Förster <Dessa@gmake.de>
 Robert Piasek <dagger@gentoo.org>
+Robin H. Johnson <robbat2@gentoo.org>
 Romain Perier <mrpouet@gentoo.org>
 Ronan Arraes Jardim Chagas <ronisbr@gmail.com>
 Roy Bamford <neddyseagoon@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2020-11-30 22:27 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2020-11-30 22:27 UTC (permalink / raw
  To: gentoo-commits

commit:     651fc39a4016e1815541d15618f82bac436b0ef1
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 22:22:56 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Nov 30 22:27:30 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=651fc39a

Documentation: Update CONTRIBUTORS

See also: https://github.com/gentoo/kde/pull/894
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 4c172c1d99..003fa4ec29 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -148,5 +148,6 @@ frames <markkuehn@outlook.com>
 krytzz <krytzz@soylent.eu>
 puchu <puchu@gmx.at>
 travlr <vel.accel@gmail.com>
+xutaxkamay <xutaxkamay@gmail.com>
 zaufi <i.zaufi@gmail.com>
 Øystein S. Haaland <Oystein.S.Haaland@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2021-01-13 23:24 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2021-01-13 23:24 UTC (permalink / raw
  To: gentoo-commits

commit:     edb6b7ea52a623a8f1c049a7c52ce8d74bc54f50
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 13 23:22:00 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Jan 13 23:22:50 2021 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=edb6b7ea

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 003fa4ec29..c7c59bd2cb 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -52,6 +52,7 @@ Gustaw Smolarczyk <wielkiegie@gmail.com>
 Ian Delaney <idell5@iinet.com.au>
 Ian Whyman <thev00d00@gentoo.org>
 Ilya Tumaykin <itumaykin@gmail.com>
+Ionen Wolkens <sudinave@gmail.com>
 Jakub Caban <kuba@whyblack.pl>
 James Le Cuirot <chewi@gentoo.org>
 Jan Kundrát <jkt@kde.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2021-02-24 22:38 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2021-02-24 22:38 UTC (permalink / raw
  To: gentoo-commits

commit:     37fb545bbce09f3a95cf8a77af13633a554a9337
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 24 22:28:55 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Feb 24 22:38:19 2021 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=37fb545b

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index c7c59bd2cb..deee7656be 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -95,8 +95,7 @@ Matt Whitlock <gentoo@mattwhitlock.name>
 Matthew Brewer <tomboy64@sina.cn>
 Matthew Dawson <matthew@mjdsystems.ca>
 Mias van Klei <miasvanklei@outlook.com>
-Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
-Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
+Michael Mair-Keimberger <mmk@levelnine.at>
 Michael Palimaka <kensington@gentoo.org>
 Michael Seifert <mseifert@error-reports.org>
 Michael Skiba <opensource@michael-skiba.de>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2021-04-24  8:08 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2021-04-24  8:08 UTC (permalink / raw
  To: gentoo-commits

commit:     db32b6ae1785fc52d211ac5a4537e406206198f5
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 24 08:08:06 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Apr 24 08:08:06 2021 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=db32b6ae

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index deee7656be..538b9b4e91 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -126,6 +126,7 @@ Robin H. Johnson <robbat2@gentoo.org>
 Romain Perier <mrpouet@gentoo.org>
 Ronan Arraes Jardim Chagas <ronisbr@gmail.com>
 Roy Bamford <neddyseagoon@gentoo.org>
+Sam James <sam@gentoo.org>
 Samuli Suominen <ssuominen@gentoo.org>
 Scarlett Clark <scarlett@scarlettgatelyclark.com>
 Sergey Alirzaev <zl29ah@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2021-05-05  8:37 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2021-05-05  8:37 UTC (permalink / raw
  To: gentoo-commits

commit:     27c33d94a434a3b01b81a541d627062f9f038025
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed May  5 08:32:31 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed May  5 08:32:31 2021 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=27c33d94

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 538b9b4e91..a81ee8dc90 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -145,6 +145,7 @@ Vadim A. Misbakh-Soloviev <mva@mva.name>
 Vadim Misbakh-Soloviov <mva@gentoo.org>
 Vladimir Smirnov <civil.over@gmail.com>
 William <William@undefined.re>
+band-a-prend <torokhov-s-a@yandex.ru>
 frames <markkuehn@outlook.com>
 krytzz <krytzz@soylent.eu>
 puchu <puchu@gmx.at>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2021-05-14 19:45 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2021-05-14 19:45 UTC (permalink / raw
  To: gentoo-commits

commit:     b8408b3e4e9d302eb870e081f0c4161bed33ced0
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri May 14 17:20:46 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri May 14 17:21:46 2021 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=b8408b3e

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index a81ee8dc90..ce6f579c14 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -90,6 +90,7 @@ Mart Raudsepp <leio@gentoo.org>
 Martin Jansa <Martin.Jansa@gmail.com>
 Marty E. Plummer <hanetzer@startmail.com>
 Matija Skala <mskala@gmx.com>
+Matt Smith <matt@offtopica.uk>
 Matt Turner <mattst88@gentoo.org>
 Matt Whitlock <gentoo@mattwhitlock.name>
 Matthew Brewer <tomboy64@sina.cn>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2021-06-30  6:07 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2021-06-30  6:07 UTC (permalink / raw
  To: gentoo-commits

commit:     f6042544e20b8c75819461a33a372e071c39742f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 30 06:06:53 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Jun 30 06:06:53 2021 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=f6042544

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index ce6f579c14..dfdfea46b4 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -140,6 +140,7 @@ Till Schäfer <till2.schaefer@uni-dortmund.de>
 Tobias Heinlein <keytoaster@gentoo.org>
 Tomáš Chvátal <scarabeus@gentoo.org>
 Torgny Nyblom <kde@nyblom.org>
+Ulrich Müller <ulm@gentoo.org>
 Unknown <root@localhost>
 Uwe L. Korn <uwelk@xhochy.com>
 Vadim A. Misbakh-Soloviev <mva@mva.name>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2021-07-22 20:20 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2021-07-22 20:20 UTC (permalink / raw
  To: gentoo-commits

commit:     1013f7cf4e10e76a7637f2f18f60d34929ed9284
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 22 20:19:51 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jul 22 20:19:51 2021 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=1013f7cf

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index dfdfea46b4..f1ea0321c7 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -18,6 +18,7 @@ Anthony Ryan <anthonyryan1@gmail.com>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
 Ben de Groot <yngwin@gentoo.org>
 Benda Xu <heroxbd@gentoo.org>
+Bernd Waibel <waebbl-gentoo@posteo.net>
 Branko Grubic <bitlord0xff@gmail.com>
 CapitalLetterC <zarathustra.zoroaster@gmail.com>
 Chris Reffett <creffett@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2021-09-14 14:24 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2021-09-14 14:24 UTC (permalink / raw
  To: gentoo-commits

commit:     6511e3b0ab3af4f1571c2d2ed990b5f72c06f819
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 14 08:15:31 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Sep 14 08:17:59 2021 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=6511e3b0

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index f1ea0321c7..a99844419c 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -1,6 +1,7 @@
 # Autogenerated by regenerate-files, DO NOT EDIT.
 A. Wilcox <AWilcox@Wilcox-Tech.com>
 Alex Alexander <wired@gentoo.org>
+Alex Fan <alexfanqi@yahoo.com>
 Alex Turbov <i.zaufi@gmail.com>
 Alexander Tsoy <alexander@tsoy.me>
 Alexandr Akulich <akulichalexander@gmail.com>
@@ -148,6 +149,7 @@ Vadim A. Misbakh-Soloviev <mva@mva.name>
 Vadim Misbakh-Soloviov <mva@gentoo.org>
 Vladimir Smirnov <civil.over@gmail.com>
 William <William@undefined.re>
+Yixun Lan <dlan@gentoo.org>
 band-a-prend <torokhov-s-a@yandex.ru>
 frames <markkuehn@outlook.com>
 krytzz <krytzz@soylent.eu>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2021-11-03 10:51 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2021-11-03 10:51 UTC (permalink / raw
  To: gentoo-commits

commit:     b25e8396f63f564b3f366185a91c3140ac68775a
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Nov  3 10:43:22 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Nov  3 10:50:27 2021 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=b25e8396

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index a99844419c..6ae95655dd 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -56,6 +56,7 @@ Ian Whyman <thev00d00@gentoo.org>
 Ilya Tumaykin <itumaykin@gmail.com>
 Ionen Wolkens <sudinave@gmail.com>
 Jakub Caban <kuba@whyblack.pl>
+James Beddek <telans@posteo.de>
 James Le Cuirot <chewi@gentoo.org>
 Jan Kundrát <jkt@kde.org>
 Jason A. Donenfeld <zx2c4@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2022-07-16 15:30 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2022-07-16 15:30 UTC (permalink / raw
  To: gentoo-commits

commit:     8a1cb7e87f676e6a60027616d88ac94e5715a385
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 14 21:43:04 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Jul 16 15:29:28 2022 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=8a1cb7e8

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 470a2e56e7..c720fed83d 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -18,6 +18,7 @@ Andrius Štikonas <andrius@stikonas.eu>
 Anthony Basile <blueness@gentoo.org>
 Anthony Ryan <anthonyryan1@gmail.com>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
+Arthur Zamarin <arthurzam@gentoo.org>
 Ben de Groot <yngwin@gentoo.org>
 Benda Xu <heroxbd@gentoo.org>
 Bernd Waibel <waebbl-gentoo@posteo.net>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2022-09-14 14:13 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2022-09-14 14:13 UTC (permalink / raw
  To: gentoo-commits

commit:     1ed45c9393676982f779fda5f5da776e3899d9e5
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 14 14:13:09 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Sep 14 14:13:30 2022 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=1ed45c93

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index c720fed83d..90ef47a292 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -154,6 +154,7 @@ Vadim Misbakh-Soloviov <mva@gentoo.org>
 Vladimir Smirnov <civil.over@gmail.com>
 William <William@undefined.re>
 Yixun Lan <dlan@gentoo.org>
+Zoltan Puskas <zoltan@sinustrom.info>
 band-a-prend <torokhov-s-a@yandex.ru>
 frames <markkuehn@outlook.com>
 krytzz <krytzz@soylent.eu>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2022-09-17 14:09 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2022-09-17 14:09 UTC (permalink / raw
  To: gentoo-commits

commit:     7d4387698cc12430fb383b5b44b843e6da51ed34
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 17 14:07:01 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Sep 17 14:08:48 2022 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=7d438769

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 1c9eb7e942..b7de124545 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -67,6 +67,7 @@ Jekyll Wu <adaptee@gmail.com>
 Jimi Huotari <chiitoo@gentoo.org>
 Joao Carreira <jfmcarreira@gmail.com>
 Johannes Huber <johu@gentoo.org>
+Jonas Rakebrandt <xarblu@protonmail.com>
 Jonathan Callen <jcallen@gentoo.org>
 Jonathan Christison <jonny.christison@redhat.com>
 Joonas Niilola <juippis@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2022-12-10 11:50 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2022-12-10 11:50 UTC (permalink / raw
  To: gentoo-commits

commit:     6f7e159ba7c6163a3300e4ae189f937bf6a95867
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 10 11:50:09 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 11:50:09 2022 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=6f7e159b

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index c5385dcf9a..b8f259d7d6 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -163,6 +163,7 @@ band-a-prend <torokhov-s-a@yandex.ru>
 frames <markkuehn@outlook.com>
 krytzz <krytzz@soylent.eu>
 puchu <puchu@gmx.at>
+t0b3 <thomas.bettler@gmail.com>
 travlr <vel.accel@gmail.com>
 xutaxkamay <xutaxkamay@gmail.com>
 zaufi <i.zaufi@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2023-03-04 12:56 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2023-03-04 12:56 UTC (permalink / raw
  To: gentoo-commits

commit:     919cf4801bd7b98d9e49f8bc82cdc9d47db59761
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  4 12:51:58 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Mar  4 12:51:58 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=919cf480

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index eb881fbc7d..5c1056b3f2 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -1,5 +1,6 @@
 # Autogenerated by regenerate-files, DO NOT EDIT.
 A. Wilcox <AWilcox@Wilcox-Tech.com>
+Aisha Tammy <aisha@bsd.ac>
 Alex Alexander <wired@gentoo.org>
 Alex Fan <alex.fan.q@gmail.com>
 Alex Turbov <i.zaufi@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2023-03-23 19:33 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2023-03-23 19:33 UTC (permalink / raw
  To: gentoo-commits

commit:     082c2c9996a96d67ab879e3eab5d3d32a16abf14
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 23 19:33:33 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Mar 23 19:33:33 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=082c2c99

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 5c1056b3f2..82475018af 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -164,6 +164,7 @@ Zoltan Puskas <zoltan@sinustrom.info>
 band-a-prend <torokhov-s-a@yandex.ru>
 frames <markkuehn@outlook.com>
 krytzz <krytzz@soylent.eu>
+orbea <orbea@riseup.net>
 puchu <puchu@gmx.at>
 t0b3 <thomas.bettler@gmail.com>
 travlr <vel.accel@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2023-05-27 10:40 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2023-05-27 10:40 UTC (permalink / raw
  To: gentoo-commits

commit:     0a9aea5a9b56a0d1091f7700f9e918dbf8cadeae
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat May 27 10:35:54 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat May 27 10:39:45 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=0a9aea5a

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 82475018af..d7c2c9b61f 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -17,6 +17,7 @@ Andrej Rode <mail@andrejro.de>
 Andrew Ammerlaan <andrewammerlaan@gentoo.org>
 Andrew Wilcox <AWilcox@Wilcox-Tech.com>
 Andrius Štikonas <andrius@stikonas.eu>
+Anna “CyberTailor” <cyber@sysrq.in>
 Anthony Basile <blueness@gentoo.org>
 Anthony Ryan <anthonyryan1@gmail.com>
 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com>
@@ -60,6 +61,7 @@ Ian Delaney <idell5@iinet.com.au>
 Ian Whyman <thev00d00@gentoo.org>
 Ilya Tumaykin <itumaykin@gmail.com>
 Ionen Wolkens <sudinave@gmail.com>
+Jakov Smolić <jsmolic@gentoo.org>
 Jakub Caban <kuba@whyblack.pl>
 James Beddek <telans@posteo.de>
 James Le Cuirot <chewi@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2023-08-21 19:49 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2023-08-21 19:49 UTC (permalink / raw
  To: gentoo-commits

commit:     931b005b3132eec840379d7f63e442f7839fc312
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 21 19:48:51 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Aug 21 19:48:51 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=931b005b

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index d7c2c9b61f..9f9562d0ef 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -56,6 +56,7 @@ Friedrich Kröner <twinbase@gmail.com>
 George Kiagiadakis <kiagiadakis.george@gmail.com>
 Georgy Yakovlev <gyakovlev@gentoo.org>
 Giorgos Tsiapaliwkas <terietor@gmail.com>
+Guillermo Joandet <gjoandet@gmail.com>
 Gustaw Smolarczyk <wielkiegie@gmail.com>
 Ian Delaney <idell5@iinet.com.au>
 Ian Whyman <thev00d00@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2023-09-16 16:53 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2023-09-16 16:53 UTC (permalink / raw
  To: gentoo-commits

commit:     5a028dc66647d760191251b15709cf6bd0191d92
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 16 15:11:12 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Sep 16 15:11:40 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=5a028dc6

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 9f9562d0ef..dc872a4877 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -61,6 +61,7 @@ Gustaw Smolarczyk <wielkiegie@gmail.com>
 Ian Delaney <idell5@iinet.com.au>
 Ian Whyman <thev00d00@gentoo.org>
 Ilya Tumaykin <itumaykin@gmail.com>
+Ionen Wolkens <ionen@gentoo.org>
 Ionen Wolkens <sudinave@gmail.com>
 Jakov Smolić <jsmolic@gentoo.org>
 Jakub Caban <kuba@whyblack.pl>
@@ -133,6 +134,7 @@ Petros S (Petross404) <petross404@gmail.com>
 Petros S <petross404@gmail.com>
 Petteri Räty <betelgeuse@gentoo.org>
 Přemysl Vohout <premek@vohnout.cz>
+Raul E Rangel <rrangel@chromium.org>
 Richard Yao <ryao@cs.stonybrook.edu>
 Rinaldus <forreg@rinaldus.ru>
 Robert Förster <Dessa@gmake.de>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2023-11-11 20:35 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2023-11-11 20:35 UTC (permalink / raw
  To: gentoo-commits

commit:     02913e1417a31632c6160c61007337de65a5495b
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 11 20:33:43 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Nov 11 20:33:43 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=02913e14

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index dc872a4877..316f4c2dbc 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -55,6 +55,7 @@ Franz Fellner <alpine.art.de@gmail.com>
 Friedrich Kröner <twinbase@gmail.com>
 George Kiagiadakis <kiagiadakis.george@gmail.com>
 Georgy Yakovlev <gyakovlev@gentoo.org>
+Gerion Entrup <gerion.entrup@flump.de>
 Giorgos Tsiapaliwkas <terietor@gmail.com>
 Guillermo Joandet <gjoandet@gmail.com>
 Gustaw Smolarczyk <wielkiegie@gmail.com>
@@ -167,6 +168,7 @@ William <William@undefined.re>
 Yixun Lan <dlan@gentoo.org>
 Zoltan Puskas <zoltan@sinustrom.info>
 band-a-prend <torokhov-s-a@yandex.ru>
+bivsk <bivsk@tutanota.com>
 frames <markkuehn@outlook.com>
 krytzz <krytzz@soylent.eu>
 orbea <orbea@riseup.net>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2023-12-12 20:03 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2023-12-12 20:03 UTC (permalink / raw
  To: gentoo-commits

commit:     2566c04c0b4ab8bdd7d3a96e20bad0bafa619373
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 12 20:03:02 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Dec 12 20:03:02 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=2566c04c

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 316f4c2dbc..db16cc3b7d 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -80,6 +80,7 @@ Jonathan Callen <jcallen@gentoo.org>
 Jonathan Christison <jonny.christison@redhat.com>
 Joonas Niilola <juippis@gentoo.org>
 Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
+Joshua Goins <josh@redstrate.com>
 José Pekkarinen <koalinux@gmail.com>
 Julian Ospald <hasufell@gentoo.org>
 Justin Lecher <jlec@gentoo.org>
@@ -110,6 +111,7 @@ Matt Turner <mattst88@gentoo.org>
 Matt Whitlock <gentoo@mattwhitlock.name>
 Matthew Brewer <tomboy64@sina.cn>
 Matthew Dawson <matthew@mjdsystems.ca>
+Mehmet Karataş <krtsmmt@gmail.com>
 Mias van Klei <miasvanklei@outlook.com>
 Michael Mair-Keimberger <mmk@levelnine.at>
 Michael Palimaka <kensington@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2023-12-16 22:02 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2023-12-16 22:02 UTC (permalink / raw
  To: gentoo-commits

commit:     717b2bffa8ac2d19d9eaa53645c2fb156eb3f3c9
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 16 21:18:36 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Dec 16 21:18:36 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=717b2bff

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index db16cc3b7d..3560b84ade 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -137,6 +137,7 @@ Petros S (Petross404) <petross404@gmail.com>
 Petros S <petross404@gmail.com>
 Petteri Räty <betelgeuse@gentoo.org>
 Přemysl Vohout <premek@vohnout.cz>
+Rachid Achellal <rachid@achellal.com>
 Raul E Rangel <rrangel@chromium.org>
 Richard Yao <ryao@cs.stonybrook.edu>
 Rinaldus <forreg@rinaldus.ru>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2023-12-18 11:24 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2023-12-18 11:24 UTC (permalink / raw
  To: gentoo-commits

commit:     be442ff09b8650d10ca6918166427915062e6d59
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 18 11:24:32 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Dec 18 11:24:32 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=be442ff0

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 3560b84ade..a352288854 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -9,6 +9,7 @@ Alexandr Akulich <akulichalexander@gmail.com>
 Alexey Shvetsov <alexxy@gentoo.org>
 Alexey Sokolov <sokolov@google.com>
 Alfred Persson Forsberg <cat@catcream.org>
+Alfred Wingate <parona@protonmail.com>
 Alon Bar-Lev <alonbl@gentoo.org>
 Andreas Eckstein <andreas.eckstein@gmx.net>
 Andreas K. Hüttel <dilfridge@gentoo.org>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2024-02-01 21:19 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2024-02-01 21:19 UTC (permalink / raw
  To: gentoo-commits

commit:     00d2a9e3ac5f0ce2518b011209ff2698cd5414cc
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  1 21:10:09 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Feb  1 21:19:17 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=00d2a9e3

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index a352288854..4150178f0e 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -122,6 +122,7 @@ Michał Górny <mgorny@gentoo.org>
 Mike Frysinger <vapier@chromium.org>
 Mike Frysinger <vapier@gentoo.org>
 Mike Gilbert <floppym@gentoo.org>
+Mike Lothian <mike@fireburn.co.uk>
 My Th <rei4dan@gmail.com>
 Nikoli <nikoli@gmx.us>
 Nils Freydank <holgersson@posteo.de>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2024-03-02 10:35 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2024-03-02 10:35 UTC (permalink / raw
  To: gentoo-commits

commit:     e7c67311ca2d002bac425de79cdd638889f439cc
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  2 10:34:44 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Mar  2 10:34:44 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=e7c67311

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 4150178f0e..ea7652c6d7 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -44,6 +44,7 @@ Dimitris Papapoulios <skiarxon@gmail.com>
 Dirk Tilger <dirk.gentoo@miriup.de>
 Dominik Kapusta <d@ayoy.net>
 Dror Levin <spatz@gentoo.org>
+Eli Schwartz <eschwartz93@gmail.com>
 Elias Probst <mail@eliasprobst.eu>
 Enrico Tagliavini <enrico.tagliavini@gmail.com>
 Eugene Shalygin <eugene.shalygin@gmail.com>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

* [gentoo-commits] proj/kde:master commit in: Documentation/
@ 2024-04-20 15:06 Andreas Sturmlechner
  0 siblings, 0 replies; 131+ messages in thread
From: Andreas Sturmlechner @ 2024-04-20 15:06 UTC (permalink / raw
  To: gentoo-commits

commit:     35f932ef4ea7b2b96e9edaa00c5c27c9a70bf459
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 20 15:01:57 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Apr 20 15:01:57 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=35f932ef

Documentation: Update CONTRIBUTORS

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index a46b95f8cb..ffb44fd9be 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -126,6 +126,7 @@ Mike Frysinger <vapier@gentoo.org>
 Mike Gilbert <floppym@gentoo.org>
 Mike Lothian <mike@fireburn.co.uk>
 My Th <rei4dan@gmail.com>
+Nic Boet <nic@boet.cc>
 Nikoli <nikoli@gmx.us>
 Nils Freydank <holgersson@posteo.de>
 Oldřich Jedlička <oldium.pro@seznam.cz>


^ permalink raw reply related	[flat|nested] 131+ messages in thread

end of thread, other threads:[~2024-04-20 15:06 UTC | newest]

Thread overview: 131+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-14 17:25 [gentoo-commits] proj/kde:master commit in: Documentation/ Andreas Sturmlechner
  -- strict thread matches above, loose matches on Subject: below --
2024-04-20 15:06 Andreas Sturmlechner
2024-03-02 10:35 Andreas Sturmlechner
2024-02-01 21:19 Andreas Sturmlechner
2023-12-18 11:24 Andreas Sturmlechner
2023-12-16 22:02 Andreas Sturmlechner
2023-12-12 20:03 Andreas Sturmlechner
2023-11-11 20:35 Andreas Sturmlechner
2023-09-16 16:53 Andreas Sturmlechner
2023-08-21 19:49 Andreas Sturmlechner
2023-05-27 10:40 Andreas Sturmlechner
2023-03-23 19:33 Andreas Sturmlechner
2023-03-04 12:56 Andreas Sturmlechner
2022-12-10 11:50 Andreas Sturmlechner
2022-09-17 14:09 Andreas Sturmlechner
2022-09-14 14:13 Andreas Sturmlechner
2022-07-16 15:30 Andreas Sturmlechner
2021-11-03 10:51 Andreas Sturmlechner
2021-09-14 14:24 Andreas Sturmlechner
2021-07-22 20:20 Andreas Sturmlechner
2021-06-30  6:07 Andreas Sturmlechner
2021-05-14 19:45 Andreas Sturmlechner
2021-05-05  8:37 Andreas Sturmlechner
2021-04-24  8:08 Andreas Sturmlechner
2021-02-24 22:38 Andreas Sturmlechner
2021-01-13 23:24 Andreas Sturmlechner
2020-11-30 22:27 Andreas Sturmlechner
2020-11-23 23:40 Andreas Sturmlechner
2020-09-03 12:52 Andreas Sturmlechner
2020-05-20 19:28 Andreas Sturmlechner
2020-04-29 16:10 Andreas Sturmlechner
2020-03-01 12:33 Andreas Sturmlechner
2020-02-19 13:35 Andreas Sturmlechner
2020-01-26 10:39 Andreas Sturmlechner
2019-11-03 18:35 Andreas Sturmlechner
2019-11-02  9:58 Andreas Sturmlechner
2019-09-08  8:31 Andreas Sturmlechner
2019-02-28 13:19 Andreas Sturmlechner
2018-11-10 18:50 Andreas Sturmlechner
2018-09-13 18:17 Andreas Sturmlechner
2018-05-18 10:18 Andreas Sturmlechner
2018-04-12 18:41 Andreas Sturmlechner
2018-03-29 22:39 Andreas Sturmlechner
2018-03-23 18:52 Andreas Sturmlechner
2018-03-03 14:29 Andreas Sturmlechner
2018-02-06 10:15 Andreas Sturmlechner
2018-01-31 19:37 Andreas Sturmlechner
2017-12-31 21:23 Andreas Sturmlechner
2017-10-07 22:19 Andreas Sturmlechner
2017-08-02 23:59 Andreas Sturmlechner
2017-07-12 19:45 Andreas Sturmlechner
2017-05-17 20:58 Andreas Sturmlechner
2017-03-18 20:08 Johannes Huber
2017-02-25 20:02 Johannes Huber
2017-02-12 20:08 Johannes Huber
2017-02-05 13:50 Andreas Sturmlechner
2017-02-05  6:58 Johannes Huber
2017-01-25 20:08 Johannes Huber
2017-01-06 14:21 Johannes Huber
2017-01-01 20:14 Johannes Huber
2016-10-14  8:28 Johannes Huber
2016-07-25 15:32 Michael Palimaka
2016-06-02 14:11 Johannes Huber
2016-05-26  8:17 Johannes Huber
2016-05-17  7:06 Johannes Huber
2016-05-05 10:28 Johannes Huber
2016-04-16 17:23 Johannes Huber
2016-04-14 20:19 Johannes Huber
2016-04-07 19:30 Johannes Huber
2016-04-04 17:46 Johannes Huber
2016-04-04 17:43 Johannes Huber
2016-03-31 18:16 Johannes Huber
2016-03-26 10:43 Johannes Huber
2016-03-02 17:37 Johannes Huber
2016-02-14 15:28 Michael Palimaka
2016-02-09 10:55 Michael Palimaka
2015-12-10  6:41 Michael Palimaka
2015-12-06  9:49 Michael Palimaka
2015-11-19 16:23 Michael Palimaka
2015-11-13 16:30 Michael Palimaka
2015-10-27 16:03 Michael Palimaka
2015-10-15 16:32 Michael Palimaka
2015-10-10 12:26 Michael Palimaka
2015-06-11 16:48 Johannes Huber
2015-06-05 17:46 Michael Palimaka
2015-05-29 20:07 Johannes Huber
2015-04-28 13:00 Michael Palimaka
2015-04-08 19:28 Johannes Huber
2015-03-28 22:05 Johannes Huber
2015-01-28 21:59 Johannes Huber
2015-01-09 16:31 Manuel Rüger
2015-01-04 10:12 Johannes Huber
2014-10-10 16:09 Michael Palimaka
2014-09-14 10:46 Johannes Huber
2014-08-24  8:46 Michael Palimaka
2014-08-14 15:29 Johannes Huber
2014-08-09 19:57 Johannes Huber
2014-08-06 15:47 Johannes Huber
2014-07-15 17:51 Johannes Huber
2014-05-25 14:41 Johannes Huber
2014-04-28 14:38 Michael Palimaka
2014-04-28 14:01 Michael Palimaka
2012-08-30 10:52 Johannes Huber
2011-08-01 11:14 Theo Chatzimichos
2011-06-28 19:10 Andreas Hüttel
2011-04-27 20:05 Andreas K. Huettel
2011-04-27 20:05 Andreas K. Huettel
2011-04-27 17:30 Andreas K. Huettel
2011-04-27 16:01 Andreas K. Huettel
2011-04-25 19:19 Andreas K. Huettel
2011-04-24 12:54 Andreas K. Huettel
2011-04-23 20:38 Andreas K. Huettel
2011-04-23 20:38 Andreas K. Huettel
2011-04-23 18:01 Christian Schmitt
2011-04-23 16:43 Andreas K. Huettel
2011-04-22 23:13 Andreas K. Huettel
2011-04-22 22:08 Andreas K. Huettel
2011-04-22 20:18 Andreas K. Huettel
2011-04-22 18:33 Andreas K. Huettel
2011-04-19 22:20 Andreas K. Huettel
2011-04-19 21:53 Andreas K. Huettel
2011-04-18 11:20 Andreas K. Huettel
2011-04-17 22:45 Andreas K. Huettel
2011-04-17 20:30 Theo Chatzimichos
2011-04-10 22:50 Alexey Shvetsov
2011-03-12 17:45 Jonathan Callen
2011-02-27  9:45 Andreas K. Huettel
2011-02-11  9:39 Dennis Schridde
2011-02-11  9:34 Dennis Schridde
2011-02-09 14:29 Steffen Stramm
2011-02-07 23:22 Manuel Nickschas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox