-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Vadim Misbakh-Soloviov <[email protected]>
- Loading branch information
Showing
4 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST kunifiedpush-v1.0.0.tar.gz 62636 BLAKE2B a2fe8653202cec124b5b92c082588affdbbaf2ee6b77b09d15893f232c6f34b35d6bcaaee980bb1b1ab83394de194c78eb250a6e9a929c155be6929454f48778 SHA512 7678bb6afce2733e2af5c8351904ce8d9c3274d9ee28874cd93df7b06f296b69b86cf088f1726b79a0a8e9b49635ea3c4b4e322b35d90d6ae5b4a79d3a04ad21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
# ECM_QTHELP="true" | ||
# ECM_TEST="true" # build system adds autotests dir based on BUILD_TESTING value | ||
KFMIN=6.3.0 | ||
QTMIN=6.5.0 | ||
inherit ecm kde.org | ||
|
||
DESCRIPTION="UnifiedPush client components" | ||
HOMEPAGE="https://community.kde.org/KUnifiedPush" | ||
|
||
if [[ ${KDE_BUILD_TYPE} = release ]]; then | ||
# SRC_URI="mirror://kde/stable/${PN}/src/${P}.tar.xz" | ||
SRC_URI="https://invent.kde.org/libraries/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz" | ||
KEYWORDS="~amd64 ~x86" | ||
S="${WORKDIR}/${PN}-v${PV}" | ||
elif [[ "${PV}" == 9999 ]]; then | ||
inherit git-r3 | ||
EGIT_REPO_URI="https://invent.kde.org/libraries/${PN}.git" | ||
fi | ||
|
||
LICENSE="CC0-1.0" | ||
SLOT="6" | ||
|
||
# had no time to look for it | ||
RESTRICT="test" | ||
|
||
DEPEND=" | ||
dev-qt/qtbase[dbus,gui] | ||
dev-qt/qtwebsockets:6 | ||
kde-frameworks/kservice:6 | ||
kde-frameworks/kcmutils:6 | ||
" | ||
RDEPEND="${DEPEND}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
# ECM_QTHELP="true" | ||
# ECM_TEST="true" # build system adds autotests dir based on BUILD_TESTING value | ||
KFMIN=6.3.0 | ||
QTMIN=6.5.0 | ||
inherit ecm kde.org | ||
|
||
DESCRIPTION="UnifiedPush client components" | ||
HOMEPAGE="https://community.kde.org/KUnifiedPush" | ||
|
||
if [[ ${KDE_BUILD_TYPE} = release ]]; then | ||
# SRC_URI="mirror://kde/stable/${PN}/src/${P}.tar.xz" | ||
SRC_URI="https://invent.kde.org/libraries/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz" | ||
KEYWORDS="~amd64 ~x86" | ||
S="${WORKDIR}/${PN}-v${PV}" | ||
elif [[ "${PV}" == 9999 ]]; then | ||
inherit git-r3 | ||
EGIT_REPO_URI="https://invent.kde.org/libraries/${PN}.git" | ||
fi | ||
|
||
LICENSE="CC0-1.0" | ||
SLOT="6" | ||
|
||
# had no time to look for it | ||
RESTRICT="test" | ||
|
||
DEPEND=" | ||
dev-qt/qtbase[dbus,gui] | ||
dev-qt/qtwebsockets:6 | ||
kde-frameworks/kservice:6 | ||
kde-frameworks/kcmutils:6 | ||
" | ||
RDEPEND="${DEPEND}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Gentoo KDE Project</name> | ||
</maintainer> | ||
<upstream> | ||
<bugs-to>https://bugs.kde.org/</bugs-to> | ||
</upstream> | ||
</pkgmetadata> |