* [gentoo-commits] proj/kde:master commit in: kde-base/ark/
@ 2013-03-06 10:05 Michael Palimaka
0 siblings, 0 replies; 10+ messages in thread
From: Michael Palimaka @ 2013-03-06 10:05 UTC (permalink / raw
To: gentoo-commits
commit: 5f593d8b057815ef2147de40b388534005ea161d
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 6 10:04:06 2013 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Mar 6 10:04:06 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=5f593d8b
[kde-base/ark] Only display elog if package is not installed.
Package-Manager: portage-2.1.11.55
---
kde-base/ark/ark-4.10.1.ebuild | 5 ++++-
kde-base/ark/ark-4.10.49.9999.ebuild | 5 ++++-
kde-base/ark/ark-9999.ebuild | 5 ++++-
3 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/kde-base/ark/ark-4.10.1.ebuild b/kde-base/ark/ark-4.10.1.ebuild
index 90195fb..f016d77 100644
--- a/kde-base/ark/ark-4.10.1.ebuild
+++ b/kde-base/ark/ark-4.10.1.ebuild
@@ -32,5 +32,8 @@ src_configure() {
pkg_postinst() {
kde4-base_pkg_postinst
- elog "For creating rar archives, install app-arch/rar"
+
+ if ! has_version app-arch/rar ; then
+ elog "For creating rar archives, install app-arch/rar"
+ fi
}
diff --git a/kde-base/ark/ark-4.10.49.9999.ebuild b/kde-base/ark/ark-4.10.49.9999.ebuild
index a7f5e29..49edd1e 100644
--- a/kde-base/ark/ark-4.10.49.9999.ebuild
+++ b/kde-base/ark/ark-4.10.49.9999.ebuild
@@ -32,5 +32,8 @@ src_configure() {
pkg_postinst() {
kde4-base_pkg_postinst
- elog "For creating rar archives, install app-arch/rar"
+
+ if ! has_version app-arch/rar ; then
+ elog "For creating rar archives, install app-arch/rar"
+ fi
}
diff --git a/kde-base/ark/ark-9999.ebuild b/kde-base/ark/ark-9999.ebuild
index a7f5e29..49edd1e 100644
--- a/kde-base/ark/ark-9999.ebuild
+++ b/kde-base/ark/ark-9999.ebuild
@@ -32,5 +32,8 @@ src_configure() {
pkg_postinst() {
kde4-base_pkg_postinst
- elog "For creating rar archives, install app-arch/rar"
+
+ if ! has_version app-arch/rar ; then
+ elog "For creating rar archives, install app-arch/rar"
+ fi
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/ark/
@ 2014-09-25 18:18 Johannes Huber
0 siblings, 0 replies; 10+ messages in thread
From: Johannes Huber @ 2014-09-25 18:18 UTC (permalink / raw
To: gentoo-commits
commit: 4c06a698f9b2d85cd74da03772702a9b47d568a3
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 25 18:17:56 2014 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu Sep 25 18:17:56 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=4c06a698
[kde-base/ark] KF5 version bump, bug #521394
Package-Manager: portage-2.2.13
---
kde-base/ark/ark-9999.ebuild | 49 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/kde-base/ark/ark-9999.ebuild b/kde-base/ark/ark-9999.ebuild
new file mode 100644
index 0000000..48a5113
--- /dev/null
+++ b/kde-base/ark/ark-9999.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_HANDBOOK=true
+EGIT_BRANCH="frameworks"
+inherit kde5
+
+DESCRIPTION="KDE Archiving tool"
+HOMEPAGE="http://www.kde.org/applications/utilities/ark
+http://utils.kde.org/projects/ark"
+KEYWORDS=""
+IUSE=""
+
+DEPEND="
+ $(add_frameworks_dep karchive)
+ $(add_frameworks_dep kcompletion)
+ $(add_frameworks_dep kconfig)
+ $(add_frameworks_dep kconfigwidgets)
+ $(add_frameworks_dep kcoreaddons)
+ $(add_frameworks_dep kdelibs4support)
+ $(add_frameworks_dep khtml)
+ $(add_frameworks_dep ki18n)
+ $(add_frameworks_dep kiconthemes)
+ $(add_frameworks_dep kio)
+ $(add_frameworks_dep kjobwidgets)
+ $(add_frameworks_dep kparts)
+ $(add_frameworks_dep kpty)
+ $(add_frameworks_dep kservice)
+ $(add_frameworks_dep kwidgetsaddons)
+ $(add_frameworks_dep kxmlgui)
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ sys-libs/zlib
+"
+RDEPEND="${DEPEND}
+ !kde-base/ark:4
+"
+
+pkg_postinst() {
+ kde5_pkg_postinst
+
+ if ! has_version app-arch/rar ; then
+ elog "For creating rar archives, install app-arch/rar"
+ fi
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/ark/
@ 2013-07-31 22:24 Johannes Huber
0 siblings, 0 replies; 10+ messages in thread
From: Johannes Huber @ 2013-07-31 22:24 UTC (permalink / raw
To: gentoo-commits
commit: 19b353bf950d7b82d0057d2ab632606b19b0b91f
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 31 22:24:14 2013 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Jul 31 22:24:14 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=19b353bf
[kde-base/ark] Update HOMEPAGE wrt bug #478890.
Package-Manager: portage-2.2.0_alpha191
---
kde-base/ark/ark-4.10.97.ebuild | 2 ++
kde-base/ark/ark-4.11.49.9999.ebuild | 2 ++
kde-base/ark/ark-9999.ebuild | 2 ++
3 files changed, 6 insertions(+)
diff --git a/kde-base/ark/ark-4.10.97.ebuild b/kde-base/ark/ark-4.10.97.ebuild
index 838365b..447be4c 100644
--- a/kde-base/ark/ark-4.10.97.ebuild
+++ b/kde-base/ark/ark-4.10.97.ebuild
@@ -8,6 +8,8 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KDE Archiving tool"
+HOMEPAGE="http://kde.org/applications/utilities/ark
+http://utils.kde.org/projects/ark"
KEYWORDS=" ~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="+archive +bzip2 debug lzma"
diff --git a/kde-base/ark/ark-4.11.49.9999.ebuild b/kde-base/ark/ark-4.11.49.9999.ebuild
index 49edd1e..d6a0585 100644
--- a/kde-base/ark/ark-4.11.49.9999.ebuild
+++ b/kde-base/ark/ark-4.11.49.9999.ebuild
@@ -8,6 +8,8 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KDE Archiving tool"
+HOMEPAGE="http://kde.org/applications/utilities/ark
+http://utils.kde.org/projects/ark"
KEYWORDS=""
IUSE="+archive +bzip2 debug lzma"
diff --git a/kde-base/ark/ark-9999.ebuild b/kde-base/ark/ark-9999.ebuild
index 49edd1e..d6a0585 100644
--- a/kde-base/ark/ark-9999.ebuild
+++ b/kde-base/ark/ark-9999.ebuild
@@ -8,6 +8,8 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KDE Archiving tool"
+HOMEPAGE="http://kde.org/applications/utilities/ark
+http://utils.kde.org/projects/ark"
KEYWORDS=""
IUSE="+archive +bzip2 debug lzma"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/ark/
@ 2013-01-16 10:35 Michael Palimaka
0 siblings, 0 replies; 10+ messages in thread
From: Michael Palimaka @ 2013-01-16 10:35 UTC (permalink / raw
To: gentoo-commits
commit: e2464fb090d4dc7527202dddca555c5c55896a25
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 16 10:29:59 2013 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Jan 16 10:29:59 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e2464fb0
[kde-base/ark] Use libarchive subslots.
Package-Manager: portage-2.1.11.42
---
kde-base/ark/ark-4.10.49.9999.ebuild | 2 +-
kde-base/ark/ark-4.9.95.ebuild | 2 +-
kde-base/ark/ark-4.9.97.ebuild | 2 +-
kde-base/ark/ark-9999.ebuild | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/kde-base/ark/ark-4.10.49.9999.ebuild b/kde-base/ark/ark-4.10.49.9999.ebuild
index e1bd765..a7f5e29 100644
--- a/kde-base/ark/ark-4.10.49.9999.ebuild
+++ b/kde-base/ark/ark-4.10.49.9999.ebuild
@@ -14,7 +14,7 @@ IUSE="+archive +bzip2 debug lzma"
DEPEND="
$(add_kdebase_dep libkonq)
sys-libs/zlib
- archive? ( >=app-arch/libarchive-2.6.1[bzip2?,lzma?,zlib] )
+ archive? ( >=app-arch/libarchive-2.6.1:=[bzip2?,lzma?,zlib] )
"
RDEPEND="${DEPEND}"
diff --git a/kde-base/ark/ark-4.9.95.ebuild b/kde-base/ark/ark-4.9.95.ebuild
index 3c98453..de0f3c4 100644
--- a/kde-base/ark/ark-4.9.95.ebuild
+++ b/kde-base/ark/ark-4.9.95.ebuild
@@ -14,7 +14,7 @@ IUSE="+archive +bzip2 debug lzma"
DEPEND="
$(add_kdebase_dep libkonq)
sys-libs/zlib
- archive? ( >=app-arch/libarchive-2.6.1[bzip2?,lzma?,zlib] )
+ archive? ( >=app-arch/libarchive-2.6.1:=[bzip2?,lzma?,zlib] )
"
RDEPEND="${DEPEND}"
diff --git a/kde-base/ark/ark-4.9.97.ebuild b/kde-base/ark/ark-4.9.97.ebuild
index 3c98453..de0f3c4 100644
--- a/kde-base/ark/ark-4.9.97.ebuild
+++ b/kde-base/ark/ark-4.9.97.ebuild
@@ -14,7 +14,7 @@ IUSE="+archive +bzip2 debug lzma"
DEPEND="
$(add_kdebase_dep libkonq)
sys-libs/zlib
- archive? ( >=app-arch/libarchive-2.6.1[bzip2?,lzma?,zlib] )
+ archive? ( >=app-arch/libarchive-2.6.1:=[bzip2?,lzma?,zlib] )
"
RDEPEND="${DEPEND}"
diff --git a/kde-base/ark/ark-9999.ebuild b/kde-base/ark/ark-9999.ebuild
index e1bd765..a7f5e29 100644
--- a/kde-base/ark/ark-9999.ebuild
+++ b/kde-base/ark/ark-9999.ebuild
@@ -14,7 +14,7 @@ IUSE="+archive +bzip2 debug lzma"
DEPEND="
$(add_kdebase_dep libkonq)
sys-libs/zlib
- archive? ( >=app-arch/libarchive-2.6.1[bzip2?,lzma?,zlib] )
+ archive? ( >=app-arch/libarchive-2.6.1:=[bzip2?,lzma?,zlib] )
"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/ark/
@ 2012-07-12 12:41 Andreas Hüttel
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Hüttel @ 2012-07-12 12:41 UTC (permalink / raw
To: gentoo-commits
commit: 6dcd26ff4310173b2880f213dc24adc6c20f13a6
Author: Andreas K. Huettel (dilfridge) <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 12 12:37:19 2012 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Jul 12 12:42:04 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=6dcd26ff
[kde-base/ark] Restrict tests again, dbus problem
(Portage version: 2.2.0_alpha116/git/Linux x86_64, unsigned Manifest commit)
---
kde-base/ark/ark-4.8.97.ebuild | 3 +++
kde-base/ark/ark-4.9.49.9999.ebuild | 3 +++
kde-base/ark/ark-9999.ebuild | 3 +++
3 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/kde-base/ark/ark-4.8.97.ebuild b/kde-base/ark/ark-4.8.97.ebuild
index d51e916..6e38295 100644
--- a/kde-base/ark/ark-4.8.97.ebuild
+++ b/kde-base/ark/ark-4.8.97.ebuild
@@ -19,6 +19,9 @@ DEPEND="
"
RDEPEND="${DEPEND}"
+RESTRICT="test"
+# dbus problem
+
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with archive LibArchive)
diff --git a/kde-base/ark/ark-4.9.49.9999.ebuild b/kde-base/ark/ark-4.9.49.9999.ebuild
index 593f941..844a9d2 100644
--- a/kde-base/ark/ark-4.9.49.9999.ebuild
+++ b/kde-base/ark/ark-4.9.49.9999.ebuild
@@ -19,6 +19,9 @@ DEPEND="
"
RDEPEND="${DEPEND}"
+RESTRICT="test"
+# dbus problem
+
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with archive LibArchive)
diff --git a/kde-base/ark/ark-9999.ebuild b/kde-base/ark/ark-9999.ebuild
index 593f941..844a9d2 100644
--- a/kde-base/ark/ark-9999.ebuild
+++ b/kde-base/ark/ark-9999.ebuild
@@ -19,6 +19,9 @@ DEPEND="
"
RDEPEND="${DEPEND}"
+RESTRICT="test"
+# dbus problem
+
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with archive LibArchive)
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/ark/
@ 2012-03-27 9:04 Johannes Huber
0 siblings, 0 replies; 10+ messages in thread
From: Johannes Huber @ 2012-03-27 9:04 UTC (permalink / raw
To: gentoo-commits
commit: c9c089fcfa37a2fd29072c41b2cb12288a79d44c
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 27 09:03:54 2012 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Tue Mar 27 09:03:54 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=c9c089fc
[kde-base/ark] Enable tests again based on testing by Ian Delaney, Chris Reffett and me. Fixes bug 394193.
(Portage version: 2.2.0_alpha95/git/Linux i686, unsigned Manifest commit)
---
kde-base/ark/ark-4.8.49.9999.ebuild | 3 ---
kde-base/ark/ark-9999.ebuild | 3 ---
2 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/kde-base/ark/ark-4.8.49.9999.ebuild b/kde-base/ark/ark-4.8.49.9999.ebuild
index e59cf13..593f941 100644
--- a/kde-base/ark/ark-4.8.49.9999.ebuild
+++ b/kde-base/ark/ark-4.8.49.9999.ebuild
@@ -19,9 +19,6 @@ DEPEND="
"
RDEPEND="${DEPEND}"
-RESTRICT=test
-# tests hang, no bug yet
-
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with archive LibArchive)
diff --git a/kde-base/ark/ark-9999.ebuild b/kde-base/ark/ark-9999.ebuild
index e59cf13..593f941 100644
--- a/kde-base/ark/ark-9999.ebuild
+++ b/kde-base/ark/ark-9999.ebuild
@@ -19,9 +19,6 @@ DEPEND="
"
RDEPEND="${DEPEND}"
-RESTRICT=test
-# tests hang, no bug yet
-
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with archive LibArchive)
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/ark/
@ 2012-01-20 13:24 Johannes Huber
0 siblings, 0 replies; 10+ messages in thread
From: Johannes Huber @ 2012-01-20 13:24 UTC (permalink / raw
To: gentoo-commits
commit: 56c582b7e64527778284a5fe6850132187f8c175
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 20 12:57:21 2012 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Fri Jan 20 12:57:21 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=56c582b7
[kde-base/ark] Remove xz-utils from depend, its already in system set.
(Portage version: 2.2.0_alpha84/git/Linux x86_64, unsigned Manifest commit)
---
kde-base/ark/ark-4.7.97.ebuild | 1 -
kde-base/ark/ark-4.8.0.ebuild | 1 -
kde-base/ark/ark-4.8.49.9999.ebuild | 1 -
kde-base/ark/ark-9999.ebuild | 1 -
4 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/kde-base/ark/ark-4.7.97.ebuild b/kde-base/ark/ark-4.7.97.ebuild
index a72a4ad..22b8317 100644
--- a/kde-base/ark/ark-4.7.97.ebuild
+++ b/kde-base/ark/ark-4.7.97.ebuild
@@ -16,7 +16,6 @@ DEPEND="
$(add_kdebase_dep libkonq)
sys-libs/zlib
archive? ( >=app-arch/libarchive-2.6.1[bzip2?,lzma?,zlib] )
- lzma? ( app-arch/xz-utils )
"
RDEPEND="${DEPEND}"
diff --git a/kde-base/ark/ark-4.8.0.ebuild b/kde-base/ark/ark-4.8.0.ebuild
index a72a4ad..22b8317 100644
--- a/kde-base/ark/ark-4.8.0.ebuild
+++ b/kde-base/ark/ark-4.8.0.ebuild
@@ -16,7 +16,6 @@ DEPEND="
$(add_kdebase_dep libkonq)
sys-libs/zlib
archive? ( >=app-arch/libarchive-2.6.1[bzip2?,lzma?,zlib] )
- lzma? ( app-arch/xz-utils )
"
RDEPEND="${DEPEND}"
diff --git a/kde-base/ark/ark-4.8.49.9999.ebuild b/kde-base/ark/ark-4.8.49.9999.ebuild
index bdd72db..e59cf13 100644
--- a/kde-base/ark/ark-4.8.49.9999.ebuild
+++ b/kde-base/ark/ark-4.8.49.9999.ebuild
@@ -16,7 +16,6 @@ DEPEND="
$(add_kdebase_dep libkonq)
sys-libs/zlib
archive? ( >=app-arch/libarchive-2.6.1[bzip2?,lzma?,zlib] )
- lzma? ( app-arch/xz-utils )
"
RDEPEND="${DEPEND}"
diff --git a/kde-base/ark/ark-9999.ebuild b/kde-base/ark/ark-9999.ebuild
index bdd72db..e59cf13 100644
--- a/kde-base/ark/ark-9999.ebuild
+++ b/kde-base/ark/ark-9999.ebuild
@@ -16,7 +16,6 @@ DEPEND="
$(add_kdebase_dep libkonq)
sys-libs/zlib
archive? ( >=app-arch/libarchive-2.6.1[bzip2?,lzma?,zlib] )
- lzma? ( app-arch/xz-utils )
"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/ark/
@ 2011-12-09 21:04 Andreas Hüttel
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Hüttel @ 2011-12-09 21:04 UTC (permalink / raw
To: gentoo-commits
commit: 883e7d5f8bf4254af1cc5eb2e5ef3025dbc2071b
Author: Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Fri Dec 9 21:03:58 2011 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Dec 9 21:03:58 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=883e7d5f
[kde-base/ark] tests hang
(Portage version: 2.1.10.39/git/Linux x86_64, unsigned Manifest commit)
---
kde-base/ark/ark-4.7.4.ebuild | 3 +++
kde-base/ark/ark-4.7.49.9999.ebuild | 3 +++
kde-base/ark/ark-4.7.90.ebuild | 3 +++
kde-base/ark/ark-9999.ebuild | 3 +++
4 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/kde-base/ark/ark-4.7.4.ebuild b/kde-base/ark/ark-4.7.4.ebuild
index 3f9943b..1444aff 100644
--- a/kde-base/ark/ark-4.7.4.ebuild
+++ b/kde-base/ark/ark-4.7.4.ebuild
@@ -26,6 +26,9 @@ DEPEND="
"
RDEPEND="${DEPEND}"
+RESTRICT=test
+# tests hang, no bug yet
+
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with archive LibArchive)
diff --git a/kde-base/ark/ark-4.7.49.9999.ebuild b/kde-base/ark/ark-4.7.49.9999.ebuild
index d9aadc0..744135f 100644
--- a/kde-base/ark/ark-4.7.49.9999.ebuild
+++ b/kde-base/ark/ark-4.7.49.9999.ebuild
@@ -26,6 +26,9 @@ DEPEND="
"
RDEPEND="${DEPEND}"
+RESTRICT=test
+# tests hang, no bug yet
+
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with archive LibArchive)
diff --git a/kde-base/ark/ark-4.7.90.ebuild b/kde-base/ark/ark-4.7.90.ebuild
index b8f1320..bbe81ae 100644
--- a/kde-base/ark/ark-4.7.90.ebuild
+++ b/kde-base/ark/ark-4.7.90.ebuild
@@ -20,6 +20,9 @@ DEPEND="
"
RDEPEND="${DEPEND}"
+RESTRICT=test
+# tests hang, no bug yet
+
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with archive LibArchive)
diff --git a/kde-base/ark/ark-9999.ebuild b/kde-base/ark/ark-9999.ebuild
index 469baa4..2b64c9e 100644
--- a/kde-base/ark/ark-9999.ebuild
+++ b/kde-base/ark/ark-9999.ebuild
@@ -20,6 +20,9 @@ DEPEND="
"
RDEPEND="${DEPEND}"
+RESTRICT=test
+# tests hang, no bug yet
+
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with archive LibArchive)
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/ark/
@ 2011-05-24 14:30 Jorge Manuel B. S. Vicetto
0 siblings, 0 replies; 10+ messages in thread
From: Jorge Manuel B. S. Vicetto @ 2011-05-24 14:30 UTC (permalink / raw
To: gentoo-commits
commit: c7d606a3621ee4d81fc8d5b13c7b024c0d675286
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
AuthorDate: Tue May 24 13:59:31 2011 +0000
Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
CommitDate: Tue May 24 14:22:48 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=c7d606a3
[kde-base/ark] 4.6.80 version bump.
(Portage version: 2.2.0_alpha34/git/Linux x86_64, signed Manifest commit with key BB0E6E98)
---
kde-base/ark/ark-4.6.80.ebuild | 35 +++++++++++++++++++++++++++++++++++
1 files changed, 35 insertions(+), 0 deletions(-)
diff --git a/kde-base/ark/ark-4.6.80.ebuild b/kde-base/ark/ark-4.6.80.ebuild
new file mode 100644
index 0000000..a1d52ec
--- /dev/null
+++ b/kde-base/ark/ark-4.6.80.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="4"
+
+KDE_HANDBOOK="optional"
+KMNAME="kdeutils"
+inherit kde4-meta
+
+DESCRIPTION="KDE Archiving tool"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+archive +bzip2 debug lzma"
+
+DEPEND="
+ $(add_kdebase_dep libkonq)
+ sys-libs/zlib
+ archive? ( >=app-arch/libarchive-2.6.1[bzip2?,lzma?,zlib] )
+ lzma? ( app-arch/xz-utils )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ mycmakeargs=(
+ $(cmake-utils_use_with archive LibArchive)
+ $(cmake-utils_use_with bzip2 BZip2)
+ $(cmake-utils_use_with lzma LibLZMA)
+ )
+ kde4-meta_src_configure
+}
+
+pkg_postinst() {
+ kde4-meta_pkg_postinst
+ elog "For creating rar archives, install app-arch/rar"
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/ark/
@ 2011-02-18 20:08 Andreas K. Huettel
0 siblings, 0 replies; 10+ messages in thread
From: Andreas K. Huettel @ 2011-02-18 20:08 UTC (permalink / raw
To: gentoo-commits
commit: 8ae0dd61bb42409382eebe541713038ab8f5e478
Author: Andreas K. Huettel (dilfridge) <mail <AT> akhuettel <DOT> de>
AuthorDate: Fri Feb 18 20:08:25 2011 +0000
Commit: Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Feb 18 20:08:38 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=8ae0dd61
[kde-base/ark] Add elog about rar archive support
(Portage version: 2.1.9.40/git/Linux x86_64, signed Manifest commit with key B6C5F7DE)
---
kde-base/ark/ark-4.6.9999.ebuild | 5 +++++
kde-base/ark/ark-9999.ebuild | 5 +++++
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/kde-base/ark/ark-4.6.9999.ebuild b/kde-base/ark/ark-4.6.9999.ebuild
index 7643fcf..2d2b077 100644
--- a/kde-base/ark/ark-4.6.9999.ebuild
+++ b/kde-base/ark/ark-4.6.9999.ebuild
@@ -28,3 +28,8 @@ src_configure() {
)
kde4-meta_src_configure
}
+
+pkg_postinst() {
+ kde4-meta_pkg_postinst
+ elog "For creating rar archives, install app-arch/rar"
+}
diff --git a/kde-base/ark/ark-9999.ebuild b/kde-base/ark/ark-9999.ebuild
index 7643fcf..2d2b077 100644
--- a/kde-base/ark/ark-9999.ebuild
+++ b/kde-base/ark/ark-9999.ebuild
@@ -28,3 +28,8 @@ src_configure() {
)
kde4-meta_src_configure
}
+
+pkg_postinst() {
+ kde4-meta_pkg_postinst
+ elog "For creating rar archives, install app-arch/rar"
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2014-09-25 18:18 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-06 10:05 [gentoo-commits] proj/kde:master commit in: kde-base/ark/ Michael Palimaka
-- strict thread matches above, loose matches on Subject: below --
2014-09-25 18:18 Johannes Huber
2013-07-31 22:24 Johannes Huber
2013-01-16 10:35 Michael Palimaka
2012-07-12 12:41 Andreas Hüttel
2012-03-27 9:04 Johannes Huber
2012-01-20 13:24 Johannes Huber
2011-12-09 21:04 Andreas Hüttel
2011-05-24 14:30 Jorge Manuel B. S. Vicetto
2011-02-18 20:08 Andreas K. Huettel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox