commit:     13aa4ab57819124960f74a0835fa8142a554719d
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 15 20:59:03 2014 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Tue Jul 15 20:59:03 2014 +0000
URL:        
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=13aa4ab5

[Documentation] Generate Plasma keywords

---
 Documentation/maintainers/regenerate-files         |  37 ++++++-
 .../.kde-plasma-5.0/_HEADER_                       |   2 +
 .../.kde-plasma-5.0/kde-plasma-5.0                 |   1 +
 .../.kde-plasma-5.0/more-deps                      |   0
 .../.kde-plasma-live.base/_HEADER_                 |   2 +
 .../.kde-plasma-live.base/kde-plasma-live          |   1 +
 .../.kde-plasma-live.base/more-deps                |   0
 .../.kde-plasma-live/_HEADER_                      |   2 +
 .../.kde-plasma-live/kde-plasma-live               |  20 ++++
 .../.kde-plasma-live/more-deps                     |   0
 .../kde-plasma-5.0.keywords                        |  23 ++++
 .../kde-plasma-live.keywords                       |  23 ++++
 Documentation/package.mask/kde-frameworks-5.0      | 118 ++++++++++-----------
 Documentation/package.mask/kde-plasma-5.0          |  23 ++++
 Documentation/package.mask/kde-plasma-live         |  23 ++++
 .../package.unmask/.kde-plasma-5.0/_HEADER_        |   2 +
 .../package.unmask/.kde-plasma-5.0/kde-plasma-5.0  |   1 +
 .../package.unmask/.kde-plasma-live/_HEADER_       |   2 +
 .../.kde-plasma-live/kde-plasma-live               |   1 +
 Documentation/package.unmask/kde-plasma-5.0        |  23 ++++
 Documentation/package.unmask/kde-plasma-live       |  23 ++++
 21 files changed, 266 insertions(+), 61 deletions(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index 4320485..500d79a 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -16,7 +16,7 @@ KF_RELEASES="5.0"
 KF_RELEASE=${KF_RELEASE:-5.0}
 
 PLASMA_RELEASES="5.0"
-PLASMA_RELEASE=${KF_RELEASE:-5.0}
+PLASMA_RELEASE=${PLASMA_RELEASE:-5.0}
 
 # regenerate keywords
 pushd ../package.accept_keywords/ > /dev/null
@@ -34,6 +34,13 @@ for release in $KF_RELEASES; do
        fi
 done
 
+for release in $PLASMA_RELEASES; do
+       echo -e "${HEADER}" > "kde-plasma-${release}.keywords"
+       if [[ -d ".kde-plasma-${release}" ]]; then
+               cat ".kde-plasma-${release}/"* | sed '/^~.*[.-]9999$/s/$/ **/' 
>> "kde-plasma-${release}.keywords"
+       fi
+done
+
 # ... and for completely unkeyworded packages, add "**"
 for release in $KDE_RELEASES; do
        if [[ -d ".kde-${release}" ]]; then
@@ -71,6 +78,17 @@ if [[ -d .kde-frameworks-live.base ]]; then
        cat .kde-frameworks-live/* >> kde-frameworks-live.keywords
 fi
 
+if [[ -d .kde-plasma-live.base ]]; then
+       rm -rf .kde-plasma-live
+       mkdir -p .kde-plasma-live
+       echo -e "${HEADER}" > kde-plasma-live.keywords
+       for file in .kde-plasma-live.base/*; do
+               newfile=.kde-plasma-live/$(basename "${file}")
+               sed '/^~.*[.-]9999$/s/$/ **/' "${file}" > "${newfile}"
+       done
+       cat .kde-plasma-live/* >> kde-plasma-live.keywords
+fi
+
 # keywords for miscleanous packages from package.unmask/
 for misc in kde-extras-live; do
        if [[ -f "../package.unmask/${misc}" ]]; then
@@ -95,6 +113,13 @@ for release in $KF_RELEASES live; do
                cat ".kde-frameworks-${release}/"* >> 
"kde-frameworks-${release}"
        fi
 done
+
+for release in $PLASMA_RELEASES live; do
+       echo -e "${HEADER}" > "kde-plasma-${release}"
+       if [[ -d ".kde-plasma-${release}" ]]; then
+               cat ".kde-plasma-${release}/"* >> "kde-plasma-${release}"
+       fi
+done
 popd > /dev/null
 
 # regenerate mask entries (base for package mask)
@@ -111,7 +136,15 @@ for release in $KF_RELEASES live; do
        echo -e "${HEADER}" > "kde-frameworks-${release}"
        if [[ -d "../package.unmask/.kde-frameworks-${release}" ]]; then
                cat "../package.unmask/.kde-frameworks-${release}/"* >> 
"kde-frameworks-${release}"
-               sed -i "kde-frameworks-${release}" -e 
"/^<kde-frameworks\/.*-4\...\.50$/{s/-4\...\.50/-${release}/;s/^</>=/}"
+               sed -i "kde-frameworks-${release}" -e 
"/^<kde-frameworks\/.*-5\..\.50$/{s/-5\..\.50/-${release}/;s/^</>=/}"
+       fi
+done
+
+for release in $PLASMA_RELEASES live; do
+       echo -e "${HEADER}" > "kde-plasma-${release}"
+       if [[ -d "../package.unmask/.kde-plasma-${release}" ]]; then
+               cat "../package.unmask/.kde-plasma-${release}/"* >> 
"kde-plasma-${release}"
+               sed -i "kde-plasma-${release}" -e 
"/^<kde-base\/.*-5\..\.50$/{s/-5\..\.50/-${release}/;s/^</>=/}"
        fi
 done
 popd > /dev/null

diff --git a/Documentation/package.accept_keywords/.kde-plasma-5.0/_HEADER_ 
b/Documentation/package.accept_keywords/.kde-plasma-5.0/_HEADER_
new file mode 100644
index 0000000..a307e93
--- /dev/null
+++ b/Documentation/package.accept_keywords/.kde-plasma-5.0/_HEADER_
@@ -0,0 +1,2 @@
+# You can use this file to keyword/unkeyword the KDE Plasma 5.0 release.
+# Edit Documentation/package.keywords/.kde-plasma-5.0/ files instead.

diff --git 
a/Documentation/package.accept_keywords/.kde-plasma-5.0/kde-plasma-5.0 
b/Documentation/package.accept_keywords/.kde-plasma-5.0/kde-plasma-5.0
new file mode 120000
index 0000000..14221d0
--- /dev/null
+++ b/Documentation/package.accept_keywords/.kde-plasma-5.0/kde-plasma-5.0
@@ -0,0 +1 @@
+../../../sets/kde-plasma-5.0
\ No newline at end of file

diff --git a/Documentation/package.accept_keywords/.kde-plasma-5.0/more-deps 
b/Documentation/package.accept_keywords/.kde-plasma-5.0/more-deps
new file mode 100644
index 0000000..e69de29

diff --git 
a/Documentation/package.accept_keywords/.kde-plasma-live.base/_HEADER_ 
b/Documentation/package.accept_keywords/.kde-plasma-live.base/_HEADER_
new file mode 100644
index 0000000..73c7efd
--- /dev/null
+++ b/Documentation/package.accept_keywords/.kde-plasma-live.base/_HEADER_
@@ -0,0 +1,2 @@
+# You can use this file to keyword/unkeyword KDE Plasma live.
+# Edit Documentation/package.keywords/.kde-plasma-live.base/ files instead.

diff --git 
a/Documentation/package.accept_keywords/.kde-plasma-live.base/kde-plasma-live 
b/Documentation/package.accept_keywords/.kde-plasma-live.base/kde-plasma-live
new file mode 120000
index 0000000..d6ca7a6
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-plasma-live.base/kde-plasma-live
@@ -0,0 +1 @@
+../../../sets/kde-plasma-live
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-plasma-live.base/more-deps 
b/Documentation/package.accept_keywords/.kde-plasma-live.base/more-deps
new file mode 100644
index 0000000..e69de29

diff --git a/Documentation/package.accept_keywords/.kde-plasma-live/_HEADER_ 
b/Documentation/package.accept_keywords/.kde-plasma-live/_HEADER_
new file mode 100644
index 0000000..73c7efd
--- /dev/null
+++ b/Documentation/package.accept_keywords/.kde-plasma-live/_HEADER_
@@ -0,0 +1,2 @@
+# You can use this file to keyword/unkeyword KDE Plasma live.
+# Edit Documentation/package.keywords/.kde-plasma-live.base/ files instead.

diff --git 
a/Documentation/package.accept_keywords/.kde-plasma-live/kde-plasma-live 
b/Documentation/package.accept_keywords/.kde-plasma-live/kde-plasma-live
new file mode 100644
index 0000000..d25e0c3
--- /dev/null
+++ b/Documentation/package.accept_keywords/.kde-plasma-live/kde-plasma-live
@@ -0,0 +1,20 @@
+~kde-base/baloo-9999 **
+~kde-base/breeze-9999 **
+~kde-base/kde-cli-tools-9999 **
+~kde-base/kfilemetadata-9999 **
+~kde-base/khelpcenter-9999 **
+~kde-base/khotkeys-9999 **
+~kde-base/kinfocenter-9999 **
+~kde-base/kio-extras-9999 **
+~kde-base/kmenuedit-9999 **
+~kde-base/ksysguard-9999 **
+~kde-base/kwin-9999 **
+~kde-base/kwrited-9999 **
+~kde-base/libksysguard-9999 **
+~kde-base/milou-9999 **
+~kde-base/oxygen-9999 **
+~kde-base/plasma-desktop-9999 **
+~kde-base/plasma-workspace-9999 **
+~kde-base/plasma-workspace-wallpapers-9999 **
+~kde-base/powerdevil-9999 **
+~kde-base/systemsettings-9999 **

diff --git a/Documentation/package.accept_keywords/.kde-plasma-live/more-deps 
b/Documentation/package.accept_keywords/.kde-plasma-live/more-deps
new file mode 100644
index 0000000..e69de29

diff --git a/Documentation/package.accept_keywords/kde-plasma-5.0.keywords 
b/Documentation/package.accept_keywords/kde-plasma-5.0.keywords
new file mode 100644
index 0000000..ce279fe
--- /dev/null
+++ b/Documentation/package.accept_keywords/kde-plasma-5.0.keywords
@@ -0,0 +1,23 @@
+# Autogenerated by regenerate-files, DO NOT EDIT.
+# You can use this file to keyword/unkeyword the KDE Plasma 5.0 release.
+# Edit Documentation/package.keywords/.kde-plasma-5.0/ files instead.
+<kde-base/baloo-5.0.50
+<kde-base/breeze-5.0.50
+<kde-base/kde-cli-tools-5.0.50
+<kde-base/kfilemetadata-5.0.50
+<kde-base/khelpcenter-5.0.50
+<kde-base/khotkeys-5.0.50
+<kde-base/kinfocenter-5.0.50
+<kde-base/kio-extras-5.0.50
+<kde-base/kmenuedit-5.0.50
+<kde-base/ksysguard-5.0.50
+<kde-base/kwin-5.0.50
+<kde-base/kwrited-5.0.50
+<kde-base/libksysguard-5.0.50
+<kde-base/milou-5.0.50
+<kde-base/oxygen-5.0.50
+<kde-base/plasma-desktop-5.0.50
+<kde-base/plasma-workspace-5.0.50
+<kde-base/plasma-workspace-wallpapers-5.0.50
+<kde-base/powerdevil-5.0.50
+<kde-base/systemsettings-5.0.50

diff --git a/Documentation/package.accept_keywords/kde-plasma-live.keywords 
b/Documentation/package.accept_keywords/kde-plasma-live.keywords
new file mode 100644
index 0000000..59424a7
--- /dev/null
+++ b/Documentation/package.accept_keywords/kde-plasma-live.keywords
@@ -0,0 +1,23 @@
+# Autogenerated by regenerate-files, DO NOT EDIT.
+# You can use this file to keyword/unkeyword KDE Plasma live.
+# Edit Documentation/package.keywords/.kde-plasma-live.base/ files instead.
+~kde-base/baloo-9999 **
+~kde-base/breeze-9999 **
+~kde-base/kde-cli-tools-9999 **
+~kde-base/kfilemetadata-9999 **
+~kde-base/khelpcenter-9999 **
+~kde-base/khotkeys-9999 **
+~kde-base/kinfocenter-9999 **
+~kde-base/kio-extras-9999 **
+~kde-base/kmenuedit-9999 **
+~kde-base/ksysguard-9999 **
+~kde-base/kwin-9999 **
+~kde-base/kwrited-9999 **
+~kde-base/libksysguard-9999 **
+~kde-base/milou-9999 **
+~kde-base/oxygen-9999 **
+~kde-base/plasma-desktop-9999 **
+~kde-base/plasma-workspace-9999 **
+~kde-base/plasma-workspace-wallpapers-9999 **
+~kde-base/powerdevil-9999 **
+~kde-base/systemsettings-9999 **

diff --git a/Documentation/package.mask/kde-frameworks-5.0 
b/Documentation/package.mask/kde-frameworks-5.0
index 4bd4d48..d630668 100644
--- a/Documentation/package.mask/kde-frameworks-5.0
+++ b/Documentation/package.mask/kde-frameworks-5.0
@@ -1,62 +1,62 @@
 # Autogenerated by regenerate-files, DO NOT EDIT.
 # You can use this file to unmask the KDE Frameworks 5.0 release.
 # Edit Documentation/package.unmask/.kde-frameworks-5.0/ files instead.
-<kde-frameworks/attica-5.0.50
-<kde-frameworks/frameworkintegration-5.0.50
-<kde-frameworks/kactivities-5.0.50
-<kde-frameworks/kapidox-5.0.50
-<kde-frameworks/karchive-5.0.50
-<kde-frameworks/kauth-5.0.50
-<kde-frameworks/kbookmarks-5.0.50
-<kde-frameworks/kcmutils-5.0.50
-<kde-frameworks/kcodecs-5.0.50
-<kde-frameworks/kcompletion-5.0.50
-<kde-frameworks/kconfig-5.0.50
-<kde-frameworks/kconfigwidgets-5.0.50
-<kde-frameworks/kcoreaddons-5.0.50
-<kde-frameworks/kcrash-5.0.50
-<kde-frameworks/kdbusaddons-5.0.50
-<kde-frameworks/kdeclarative-5.0.50
-<kde-frameworks/kded-5.0.50
-<kde-frameworks/kdelibs4support-5.0.50
-<kde-frameworks/kdesignerplugin-5.0.50
-<kde-frameworks/kdesu-5.0.50
-<kde-frameworks/kdewebkit-5.0.50
-<kde-frameworks/kdnssd-5.0.50
-<kde-frameworks/kdoctools-5.0.50
-<kde-frameworks/kemoticons-5.0.50
-<kde-frameworks/kglobalaccel-5.0.50
-<kde-frameworks/kguiaddons-5.0.50
-<kde-frameworks/khtml-5.0.50
-<kde-frameworks/ki18n-5.0.50
-<kde-frameworks/kiconthemes-5.0.50
-<kde-frameworks/kidletime-5.0.50
-<kde-frameworks/kimageformats-5.0.50
-<kde-frameworks/kinit-5.0.50
-<kde-frameworks/kio-5.0.50
-<kde-frameworks/kitemmodels-5.0.50
-<kde-frameworks/kitemviews-5.0.50
-<kde-frameworks/kjobwidgets-5.0.50
-<kde-frameworks/kjs-5.0.50
-<kde-frameworks/kjsembed-5.0.50
-<kde-frameworks/kmediaplayer-5.0.50
-<kde-frameworks/knewstuff-5.0.50
-<kde-frameworks/knotifications-5.0.50
-<kde-frameworks/knotifyconfig-5.0.50
-<kde-frameworks/kparts-5.0.50
-<kde-frameworks/kplotting-5.0.50
-<kde-frameworks/kpty-5.0.50
-<kde-frameworks/kross-5.0.50
-<kde-frameworks/krunner-5.0.50
-<kde-frameworks/kservice-5.0.50
-<kde-frameworks/ktexteditor-5.0.50
-<kde-frameworks/ktextwidgets-5.0.50
-<kde-frameworks/kunitconversion-5.0.50
-<kde-frameworks/kwallet-5.0.50
-<kde-frameworks/kwidgetsaddons-5.0.50
-<kde-frameworks/kwindowsystem-5.0.50
-<kde-frameworks/kxmlgui-5.0.50
-<kde-frameworks/plasma-5.0.50
-<kde-frameworks/solid-5.0.50
-<kde-frameworks/sonnet-5.0.50
-<kde-frameworks/threadweaver-5.0.50
+>=kde-frameworks/attica-5.0
+>=kde-frameworks/frameworkintegration-5.0
+>=kde-frameworks/kactivities-5.0
+>=kde-frameworks/kapidox-5.0
+>=kde-frameworks/karchive-5.0
+>=kde-frameworks/kauth-5.0
+>=kde-frameworks/kbookmarks-5.0
+>=kde-frameworks/kcmutils-5.0
+>=kde-frameworks/kcodecs-5.0
+>=kde-frameworks/kcompletion-5.0
+>=kde-frameworks/kconfig-5.0
+>=kde-frameworks/kconfigwidgets-5.0
+>=kde-frameworks/kcoreaddons-5.0
+>=kde-frameworks/kcrash-5.0
+>=kde-frameworks/kdbusaddons-5.0
+>=kde-frameworks/kdeclarative-5.0
+>=kde-frameworks/kded-5.0
+>=kde-frameworks/kdelibs4support-5.0
+>=kde-frameworks/kdesignerplugin-5.0
+>=kde-frameworks/kdesu-5.0
+>=kde-frameworks/kdewebkit-5.0
+>=kde-frameworks/kdnssd-5.0
+>=kde-frameworks/kdoctools-5.0
+>=kde-frameworks/kemoticons-5.0
+>=kde-frameworks/kglobalaccel-5.0
+>=kde-frameworks/kguiaddons-5.0
+>=kde-frameworks/khtml-5.0
+>=kde-frameworks/ki18n-5.0
+>=kde-frameworks/kiconthemes-5.0
+>=kde-frameworks/kidletime-5.0
+>=kde-frameworks/kimageformats-5.0
+>=kde-frameworks/kinit-5.0
+>=kde-frameworks/kio-5.0
+>=kde-frameworks/kitemmodels-5.0
+>=kde-frameworks/kitemviews-5.0
+>=kde-frameworks/kjobwidgets-5.0
+>=kde-frameworks/kjs-5.0
+>=kde-frameworks/kjsembed-5.0
+>=kde-frameworks/kmediaplayer-5.0
+>=kde-frameworks/knewstuff-5.0
+>=kde-frameworks/knotifications-5.0
+>=kde-frameworks/knotifyconfig-5.0
+>=kde-frameworks/kparts-5.0
+>=kde-frameworks/kplotting-5.0
+>=kde-frameworks/kpty-5.0
+>=kde-frameworks/kross-5.0
+>=kde-frameworks/krunner-5.0
+>=kde-frameworks/kservice-5.0
+>=kde-frameworks/ktexteditor-5.0
+>=kde-frameworks/ktextwidgets-5.0
+>=kde-frameworks/kunitconversion-5.0
+>=kde-frameworks/kwallet-5.0
+>=kde-frameworks/kwidgetsaddons-5.0
+>=kde-frameworks/kwindowsystem-5.0
+>=kde-frameworks/kxmlgui-5.0
+>=kde-frameworks/plasma-5.0
+>=kde-frameworks/solid-5.0
+>=kde-frameworks/sonnet-5.0
+>=kde-frameworks/threadweaver-5.0

diff --git a/Documentation/package.mask/kde-plasma-5.0 
b/Documentation/package.mask/kde-plasma-5.0
new file mode 100644
index 0000000..2a4c94c
--- /dev/null
+++ b/Documentation/package.mask/kde-plasma-5.0
@@ -0,0 +1,23 @@
+# Autogenerated by regenerate-files, DO NOT EDIT.
+# You can use this file to unmask the KDE Plasma 5.0 release.
+# Edit Documentation/package.unmask/.kde-plasma-5.0/ files instead.
+>=kde-base/baloo-5.0
+>=kde-base/breeze-5.0
+>=kde-base/kde-cli-tools-5.0
+>=kde-base/kfilemetadata-5.0
+>=kde-base/khelpcenter-5.0
+>=kde-base/khotkeys-5.0
+>=kde-base/kinfocenter-5.0
+>=kde-base/kio-extras-5.0
+>=kde-base/kmenuedit-5.0
+>=kde-base/ksysguard-5.0
+>=kde-base/kwin-5.0
+>=kde-base/kwrited-5.0
+>=kde-base/libksysguard-5.0
+>=kde-base/milou-5.0
+>=kde-base/oxygen-5.0
+>=kde-base/plasma-desktop-5.0
+>=kde-base/plasma-workspace-5.0
+>=kde-base/plasma-workspace-wallpapers-5.0
+>=kde-base/powerdevil-5.0
+>=kde-base/systemsettings-5.0

diff --git a/Documentation/package.mask/kde-plasma-live 
b/Documentation/package.mask/kde-plasma-live
new file mode 100644
index 0000000..4b69cc8
--- /dev/null
+++ b/Documentation/package.mask/kde-plasma-live
@@ -0,0 +1,23 @@
+# Autogenerated by regenerate-files, DO NOT EDIT.
+# Live packages are masked by default.
+# Edit Documentation/package.unmask/.kde-plasma-live/ files instead.
+~kde-base/baloo-9999
+~kde-base/breeze-9999
+~kde-base/kde-cli-tools-9999
+~kde-base/kfilemetadata-9999
+~kde-base/khelpcenter-9999
+~kde-base/khotkeys-9999
+~kde-base/kinfocenter-9999
+~kde-base/kio-extras-9999
+~kde-base/kmenuedit-9999
+~kde-base/ksysguard-9999
+~kde-base/kwin-9999
+~kde-base/kwrited-9999
+~kde-base/libksysguard-9999
+~kde-base/milou-9999
+~kde-base/oxygen-9999
+~kde-base/plasma-desktop-9999
+~kde-base/plasma-workspace-9999
+~kde-base/plasma-workspace-wallpapers-9999
+~kde-base/powerdevil-9999
+~kde-base/systemsettings-9999

diff --git a/Documentation/package.unmask/.kde-plasma-5.0/_HEADER_ 
b/Documentation/package.unmask/.kde-plasma-5.0/_HEADER_
new file mode 100644
index 0000000..143d565
--- /dev/null
+++ b/Documentation/package.unmask/.kde-plasma-5.0/_HEADER_
@@ -0,0 +1,2 @@
+# You can use this file to unmask the KDE Plasma 5.0 release.
+# Edit Documentation/package.unmask/.kde-plasma-5.0/ files instead.

diff --git a/Documentation/package.unmask/.kde-plasma-5.0/kde-plasma-5.0 
b/Documentation/package.unmask/.kde-plasma-5.0/kde-plasma-5.0
new file mode 120000
index 0000000..14221d0
--- /dev/null
+++ b/Documentation/package.unmask/.kde-plasma-5.0/kde-plasma-5.0
@@ -0,0 +1 @@
+../../../sets/kde-plasma-5.0
\ No newline at end of file

diff --git a/Documentation/package.unmask/.kde-plasma-live/_HEADER_ 
b/Documentation/package.unmask/.kde-plasma-live/_HEADER_
new file mode 100644
index 0000000..8c02bae
--- /dev/null
+++ b/Documentation/package.unmask/.kde-plasma-live/_HEADER_
@@ -0,0 +1,2 @@
+# Live packages are masked by default.
+# Edit Documentation/package.unmask/.kde-plasma-live/ files instead.

diff --git a/Documentation/package.unmask/.kde-plasma-live/kde-plasma-live 
b/Documentation/package.unmask/.kde-plasma-live/kde-plasma-live
new file mode 120000
index 0000000..d6ca7a6
--- /dev/null
+++ b/Documentation/package.unmask/.kde-plasma-live/kde-plasma-live
@@ -0,0 +1 @@
+../../../sets/kde-plasma-live
\ No newline at end of file

diff --git a/Documentation/package.unmask/kde-plasma-5.0 
b/Documentation/package.unmask/kde-plasma-5.0
new file mode 100644
index 0000000..7528e66
--- /dev/null
+++ b/Documentation/package.unmask/kde-plasma-5.0
@@ -0,0 +1,23 @@
+# Autogenerated by regenerate-files, DO NOT EDIT.
+# You can use this file to unmask the KDE Plasma 5.0 release.
+# Edit Documentation/package.unmask/.kde-plasma-5.0/ files instead.
+<kde-base/baloo-5.0.50
+<kde-base/breeze-5.0.50
+<kde-base/kde-cli-tools-5.0.50
+<kde-base/kfilemetadata-5.0.50
+<kde-base/khelpcenter-5.0.50
+<kde-base/khotkeys-5.0.50
+<kde-base/kinfocenter-5.0.50
+<kde-base/kio-extras-5.0.50
+<kde-base/kmenuedit-5.0.50
+<kde-base/ksysguard-5.0.50
+<kde-base/kwin-5.0.50
+<kde-base/kwrited-5.0.50
+<kde-base/libksysguard-5.0.50
+<kde-base/milou-5.0.50
+<kde-base/oxygen-5.0.50
+<kde-base/plasma-desktop-5.0.50
+<kde-base/plasma-workspace-5.0.50
+<kde-base/plasma-workspace-wallpapers-5.0.50
+<kde-base/powerdevil-5.0.50
+<kde-base/systemsettings-5.0.50

diff --git a/Documentation/package.unmask/kde-plasma-live 
b/Documentation/package.unmask/kde-plasma-live
new file mode 100644
index 0000000..4b69cc8
--- /dev/null
+++ b/Documentation/package.unmask/kde-plasma-live
@@ -0,0 +1,23 @@
+# Autogenerated by regenerate-files, DO NOT EDIT.
+# Live packages are masked by default.
+# Edit Documentation/package.unmask/.kde-plasma-live/ files instead.
+~kde-base/baloo-9999
+~kde-base/breeze-9999
+~kde-base/kde-cli-tools-9999
+~kde-base/kfilemetadata-9999
+~kde-base/khelpcenter-9999
+~kde-base/khotkeys-9999
+~kde-base/kinfocenter-9999
+~kde-base/kio-extras-9999
+~kde-base/kmenuedit-9999
+~kde-base/ksysguard-9999
+~kde-base/kwin-9999
+~kde-base/kwrited-9999
+~kde-base/libksysguard-9999
+~kde-base/milou-9999
+~kde-base/oxygen-9999
+~kde-base/plasma-desktop-9999
+~kde-base/plasma-workspace-9999
+~kde-base/plasma-workspace-wallpapers-9999
+~kde-base/powerdevil-9999
+~kde-base/systemsettings-9999

Reply via email to