mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-17 19:13:13 -04:00
Merge updates from master
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Copyright 2020 Gentoo Authors
|
||||
# Copyright 2020-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
@@ -26,7 +26,7 @@ PATCHES=(
|
||||
S="${WORKDIR}"/${PN}
|
||||
|
||||
src_compile() {
|
||||
emake linux-utf8
|
||||
emake linux-utf8 LDFLAGS="${LDFLAGS}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
@@ -61,12 +61,9 @@ src_install(){
|
||||
doins -r "${S}"/*
|
||||
dosym ../../opt/"${PN}"/atom "${EPREFIX}"/usr/bin/atom
|
||||
fperms +x /opt/"${PN}"/atom
|
||||
dosym ../../opt/"${PN}"/resources/app/apm/bin/apm "${EPREFIX}"/usr/bin/apm
|
||||
fperms +x /opt/"${PN}"/resources/app/apm/bin/apm
|
||||
dosym ../../opt/"${PN}"/resources/app/apm/bin/node "${EPREFIX}"/usr/bin/node
|
||||
fperms +x /opt/"${PN}"/resources/app/apm/bin/node
|
||||
dosym ../../opt/"${PN}"/resources/app/apm/bin/npm "${EPREFIX}"/usr/bin/npm
|
||||
fperms +x /opt/"${PN}"/resources/app/apm/bin/npm
|
||||
make_desktop_entry /opt/atom/atom Atom atom Utility
|
||||
make_desktop_entry /opt/${PN}/atom Atom atom Utility
|
||||
doicon atom.png
|
||||
}
|
||||
@@ -29,12 +29,16 @@ IUSE="libsecret"
|
||||
RDEPEND="
|
||||
app-accessibility/at-spi2-atk
|
||||
dev-libs/nss
|
||||
media-libs/alsa-lib
|
||||
media-libs/libpng:0/16
|
||||
net-print/cups
|
||||
x11-libs/cairo
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/libXScrnSaver
|
||||
x11-libs/libXtst
|
||||
x11-libs/libnotify
|
||||
x11-libs/libxkbcommon
|
||||
x11-libs/libxkbfile
|
||||
x11-libs/pango
|
||||
libsecret? ( app-crypt/libsecret[crypt] )
|
||||
amd64? ( sys-apps/ripgrep )
|
||||
@@ -60,6 +64,11 @@ QA_PREBUILT="
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# Remove libsecret (controlled via USE=libsecret)
|
||||
if ! use libsecret; then
|
||||
rm -r "resources/app/node_modules.asar.unpacked/keytar" || die
|
||||
fi
|
||||
|
||||
# Unbundle ripgrep on amd64 & arm64
|
||||
if use amd64 || use arm64; then
|
||||
rm "resources/app/node_modules.asar.unpacked/vscode-ripgrep/bin/rg" || die
|
||||
|
||||
@@ -29,12 +29,16 @@ IUSE="libsecret"
|
||||
RDEPEND="
|
||||
app-accessibility/at-spi2-atk
|
||||
dev-libs/nss
|
||||
media-libs/alsa-lib
|
||||
media-libs/libpng:0/16
|
||||
net-print/cups
|
||||
x11-libs/cairo
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/libXScrnSaver
|
||||
x11-libs/libXtst
|
||||
x11-libs/libnotify
|
||||
x11-libs/libxkbcommon
|
||||
x11-libs/libxkbfile
|
||||
x11-libs/pango
|
||||
libsecret? ( app-crypt/libsecret[crypt] )
|
||||
amd64? ( sys-apps/ripgrep )
|
||||
@@ -60,6 +64,11 @@ QA_PREBUILT="
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# Remove libsecret (controlled via USE=libsecret)
|
||||
if ! use libsecret; then
|
||||
rm -r "resources/app/node_modules.asar.unpacked/keytar" || die
|
||||
fi
|
||||
|
||||
# Unbundle ripgrep on amd64 & arm64
|
||||
if use amd64 || use arm64; then
|
||||
rm "resources/app/node_modules.asar.unpacked/vscode-ripgrep/bin/rg" || die
|
||||
|
||||
@@ -29,12 +29,16 @@ IUSE="libsecret"
|
||||
RDEPEND="
|
||||
app-accessibility/at-spi2-atk
|
||||
dev-libs/nss
|
||||
media-libs/alsa-lib
|
||||
media-libs/libpng:0/16
|
||||
net-print/cups
|
||||
x11-libs/cairo
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/libXScrnSaver
|
||||
x11-libs/libXtst
|
||||
x11-libs/libnotify
|
||||
x11-libs/libxkbcommon
|
||||
x11-libs/libxkbfile
|
||||
x11-libs/pango
|
||||
libsecret? ( app-crypt/libsecret[crypt] )
|
||||
amd64? ( sys-apps/ripgrep )
|
||||
@@ -60,6 +64,11 @@ QA_PREBUILT="
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# Remove libsecret (controlled via USE=libsecret)
|
||||
if ! use libsecret; then
|
||||
rm -r "resources/app/node_modules.asar.unpacked/keytar" || die
|
||||
fi
|
||||
|
||||
# Unbundle ripgrep on amd64 & arm64
|
||||
if use amd64 || use arm64; then
|
||||
rm "resources/app/node_modules.asar.unpacked/vscode-ripgrep/bin/rg" || die
|
||||
|
||||
@@ -53,3 +53,4 @@ RESTRICT="mirror"
|
||||
KEYWORDS="~amd64"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
QA_FLAGS_IGNORED="usr/bin/tai"
|
||||
|
||||
@@ -52,3 +52,4 @@ RESTRICT="mirror"
|
||||
KEYWORDS="~amd64"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
QA_FLAGS_IGNORED="usr/bin/tai"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 2017-2020 Gentoo Authors
|
||||
# Copyright 2017-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
# Auto-Generated by cargo-ebuild 0.3.1
|
||||
@@ -87,6 +87,8 @@ IUSE=""
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
|
||||
QA_FLAGS_IGNORED="usr/bin/watchexec"
|
||||
|
||||
src_install() {
|
||||
cargo_src_install
|
||||
|
||||
|
||||
@@ -51,14 +51,25 @@ RDEPEND="
|
||||
app-arch/unzip
|
||||
app-arch/zip
|
||||
>=dev-lang/perl-5.0
|
||||
dev-libs/atk
|
||||
dev-libs/dbus-glib
|
||||
media-libs/glu
|
||||
>=media-libs/freetype-2.1.10-r2
|
||||
media-libs/libglvnd
|
||||
sys-libs/ncurses-compat:5
|
||||
x11-libs/cairo
|
||||
x11-libs/gdk-pixbuf
|
||||
x11-libs/gdk-pixbuf-xlib
|
||||
x11-libs/gtk+:2
|
||||
x11-libs/libXaw
|
||||
x11-libs/libXinerama"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
sys-apps/findutils"
|
||||
|
||||
x11-libs/libXinerama
|
||||
x11-libs/pango
|
||||
x11-libs/libXrandr
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
sys-apps/findutils
|
||||
"
|
||||
PDEPEND="java? ( >=virtual/jre-1.8.0 )"
|
||||
|
||||
RESTRICT="mirror strip"
|
||||
|
||||
@@ -1 +1 @@
|
||||
DIST lowdown-0.8.3.tar.gz 201286 BLAKE2B 7bbebfa625e98e4a23fde37e67c7a02c4113242ddd7cee249393f3f74db52a799085bb812d323e42092c823be122fac0513e9d50b69b28c02a443b7cfd7706a0 SHA512 6c1a8fe7fc9ee0a34d0be35aefbcf597e0335b31cdfc3201e5e5db58f9bc79b26ddd2495b74ce0b8e89b486df300a2ea338c18bc991c61527a2360dca2c9804f
|
||||
DIST lowdown-0.8.4.tar.gz 210080 BLAKE2B 7cf0de77cda02f9c39df40f3e54711654d84d34941094db0d8d28ef26d385a28216e13669c08e65d13b1924a24f50a0f2815145edc4a5d89fab7659ccbe43e9d SHA512 d1d63c96a53692286285a64809317f4ff4b6d2f4499d984cd1284787f3d7ce42ff1ef842bfebd0a2cb4deccfa2bf3d20ff0deb41443b361a314fcde0ee59bd72
|
||||
|
||||
@@ -203,6 +203,8 @@ IUSE=""
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
|
||||
QA_FLAGS_IGNORED="usr/bin/mdbook"
|
||||
|
||||
src_prepare() {
|
||||
eapply_user
|
||||
|
||||
|
||||
@@ -203,6 +203,8 @@ IUSE=""
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
|
||||
QA_FLAGS_IGNORED="usr/bin/mdbook"
|
||||
|
||||
src_prepare() {
|
||||
eapply_user
|
||||
|
||||
|
||||
@@ -203,6 +203,8 @@ IUSE=""
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
|
||||
QA_FLAGS_IGNORED="usr/bin/mdbook"
|
||||
|
||||
src_prepare() {
|
||||
eapply_user
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ HOMEPAGE="
|
||||
https://github.com/eddelbuettel/bh
|
||||
https://cran.r-project.org/package=BH
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${MY_P}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${MY_P}.tar.gz"
|
||||
LICENSE='Boost-1.0'
|
||||
KEYWORDS="~amd64"
|
||||
DEPEND="~dev-libs/boost-1.75.0"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Encapsulated Classes with Reference Semantics'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/R6_2.4.1.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/R6_2.4.1.tar.gz"
|
||||
LICENSE='MIT'
|
||||
HOMEPAGE="
|
||||
https://r6.r-lib.org
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Encapsulated Classes with Reference Semantics'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='MIT'
|
||||
HOMEPAGE="
|
||||
https://r6.r-lib.org
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Seamless R and C++ Integration'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/Rcpp_1.0.4.6.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/Rcpp_1.0.4.6.tar.gz"
|
||||
LICENSE='GPL-2+'
|
||||
HOMEPAGE="
|
||||
http://www.rcpp.org
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Seamless R and C++ Integration'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='GPL-2+'
|
||||
HOMEPAGE="
|
||||
http://www.rcpp.org
|
||||
|
||||
@@ -7,7 +7,7 @@ inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Easy Pre and Post Assertions'
|
||||
HOMEPAGE="https://cran.r-project.org/package=assertthat"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/assertthat_0.2.1.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/assertthat_0.2.1.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Translate Spreadsheet Cell Ranges to Rows and Columns'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/cellranger_1.1.0.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/cellranger_1.1.0.tar.gz"
|
||||
LICENSE='MIT'
|
||||
HOMEPAGE="
|
||||
https://github.com/rsheets/cellranger
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
https://github.com/r-lib/cli
|
||||
https://cran.r-project.org/package=cli
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/cli_2.0.2.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/cli_2.0.2.tar.gz"
|
||||
LICENSE='MIT'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
https://github.com/r-lib/cli
|
||||
https://cran.r-project.org/package=cli
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='MIT'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
https://github.com/r-lib/crayon
|
||||
https://cran.r-project.org/package=crayon
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/crayon_1.3.4.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/crayon_1.3.4.tar.gz"
|
||||
LICENSE='MIT'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
https://github.com/r-lib/crayon
|
||||
https://cran.r-project.org/package=crayon
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='MIT'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
http://dirk.eddelbuettel.com/code/digest.html
|
||||
https://github.com/eddelbuettel/digest
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='GPL-2+'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
http://dirk.eddelbuettel.com/code/digest.html
|
||||
https://github.com/eddelbuettel/digest
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='GPL-2+'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='A Grammar of Data Manipulation'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/dplyr_0.8.5.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/dplyr_0.8.5.tar.gz"
|
||||
LICENSE='MIT'
|
||||
HOMEPAGE="
|
||||
https://dplyr.tidyverse.org
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='A Grammar of Data Manipulation'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='MIT'
|
||||
HOMEPAGE="
|
||||
https://dplyr.tidyverse.org
|
||||
|
||||
@@ -11,7 +11,7 @@ HOMEPAGE="
|
||||
https://github.com/r-lib/ellipsis
|
||||
https://cran.r-project.org/package=ellipsis
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/ellipsis_0.3.0.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/ellipsis_0.3.0.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -11,7 +11,7 @@ HOMEPAGE="
|
||||
https://github.com/r-lib/ellipsis
|
||||
https://cran.r-project.org/package=ellipsis
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
https://github.com/brodieG/fansi
|
||||
https://cran.r-project.org/package=fansi
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/fansi_0.4.1.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/fansi_0.4.1.tar.gz"
|
||||
LICENSE='GPL-2+'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
https://github.com/brodieG/fansi
|
||||
https://cran.r-project.org/package=fansi
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='GPL-2+'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -7,7 +7,7 @@ inherit R-packages-guru
|
||||
|
||||
DESCRIPTION="Common S3 Generics not Provided by Base R Methods Related to Model Fitting"
|
||||
KEYWORDS="~amd64"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
HOMEPAGE="https://cran.r-project.org/package=generics"
|
||||
LICENSE="MIT"
|
||||
DEPEND=">=dev-lang/R-3.1"
|
||||
|
||||
@@ -11,7 +11,7 @@ HOMEPAGE="
|
||||
https://github.com/tidyverse/glue
|
||||
https://cran.r-project.org/package=glue
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/glue_1.4.0.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/glue_1.4.0.tar.gz"
|
||||
LICENSE='MIT'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -11,7 +11,7 @@ HOMEPAGE="
|
||||
https://github.com/tidyverse/glue
|
||||
https://cran.r-project.org/package=glue
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='MIT'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -11,7 +11,7 @@ HOMEPAGE="
|
||||
https://github.com/tidyverse/glue
|
||||
https://cran.r-project.org/package=glue
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='MIT'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -11,7 +11,7 @@ HOMEPAGE="
|
||||
https://github.com/r-lib/lifecycle
|
||||
https://cran.r-project.org/package=lifecycle
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/lifecycle_0.2.0.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/lifecycle_0.2.0.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -11,7 +11,7 @@ HOMEPAGE="
|
||||
https://github.com/r-lib/lifecycle
|
||||
https://cran.r-project.org/package=lifecycle
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -7,7 +7,7 @@ inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='A Forward-Pipe Operator for R'
|
||||
HOMEPAGE="https://cran.r-project.org/package=magrittr"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/magrittr_1.5.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/magrittr_1.5.tar.gz"
|
||||
LICENSE='MIT'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -7,7 +7,7 @@ inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='A Forward-Pipe Operator for R'
|
||||
HOMEPAGE="https://cran.r-project.org/package=magrittr"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='MIT'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
https://github.com/r-lib/pillar
|
||||
https://cran.r-project.org/package=pillar
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/pillar_1.4.4.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/pillar_1.4.4.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
https://github.com/r-lib/pillar
|
||||
https://cran.r-project.org/package=pillar
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
https://github.com/r-lib/pkgconfig
|
||||
https://cran.r-project.org/package=pkgconfig
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/pkgconfig_2.0.3.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/pkgconfig_2.0.3.tar.gz"
|
||||
LICENSE='MIT'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='The plog C++ Logging Library'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/plogr_0.2.0.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/plogr_0.2.0.tar.gz"
|
||||
HOMEPAGE="
|
||||
https://github.com/krlmlr/plogr
|
||||
https://cran.r-project.org/package=plogr
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Functional Programming Tools'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/purrr_0.3.4.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/purrr_0.3.4.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
HOMEPAGE="
|
||||
https://purrr.tidyverse.org
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
https://github.com/MangoTheCat/rematch
|
||||
https://cran.r-project.org/package=rematch
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/rematch_1.0.1.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/rematch_1.0.1.tar.gz"
|
||||
LICENSE='MIT'
|
||||
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Functions for Base Types and Core R and Tidyverse Features'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
HOMEPAGE="
|
||||
https://rlang.r-lib.org
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Functions for Base Types and Core R and Tidyverse Features'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/rlang_0.4.6.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/rlang_0.4.6.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
HOMEPAGE="
|
||||
https://rlang.r-lib.org
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Simple Data Frames'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/tibble_3.0.1.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/tibble_3.0.1.tar.gz"
|
||||
LICENSE='MIT'
|
||||
HOMEPAGE="
|
||||
https://tibble.tidyverse.org
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Simple Data Frames'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='MIT'
|
||||
HOMEPAGE="
|
||||
https://tibble.tidyverse.org
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Select from a Set of Strings'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/tidyselect_1.0.0.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/tidyselect_1.0.0.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
HOMEPAGE="
|
||||
https://tidyselect.r-lib.org
|
||||
|
||||
@@ -6,7 +6,7 @@ EAPI="7"
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Select from a Set of Strings'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
HOMEPAGE="
|
||||
https://tidyselect.r-lib.org
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
https://cran.r-project.org/package=utf8
|
||||
"
|
||||
DESCRIPTION='Unicode Text Processing'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/utf8_1.1.4.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/utf8_1.1.4.tar.gz"
|
||||
LICENSE='Apache-2.0'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE="
|
||||
https://cran.r-project.org/package=utf8
|
||||
"
|
||||
DESCRIPTION='Unicode Text Processing'
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='Apache-2.0'
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="${IUSE-}"
|
||||
|
||||
@@ -1,3 +1 @@
|
||||
DIST vctrs_0.2.4.tar.gz 787455 BLAKE2B bcf86164566c4d70ec9d64e670eaf12dc80c5b115fa0320b79ee13b79113ef1b372dd728af6d3610680f124ff87f2c83268baed234a75ba6277e69a313dc2512 SHA512 2d23a58d407b1eff2162883d6906684ab0f3ec8a4ca2be7274bc82f29b2a846bce7d288d20b47ceb912846f4ee743556955b569b655efbd1d7d3d0da897e76ac
|
||||
DIST vctrs_0.3.0.tar.gz 883312 BLAKE2B 6d1952dfda016de0864c0ea24d242ab7c39f65a4e03ca203b0f25b9d083fd391481d4306e164fcf24598421adc50d6bf6ef45e5af17b89a4df95dd0d83ca870b SHA512 eb6ec919a4a690f5b4b36f2640957aea8a4ca4de4549783ea949cb2c2c2fc9d3770e885cbf7c01172d2ee22e944e18c8787c4c27242fe9292a2a52a1a7eacd5d
|
||||
DIST vctrs_0.3.6.tar.gz 778016 BLAKE2B 70cc7a24ece9bf8a8f7ca021e593d1402cce227052dc45492ca7c6eac77ef5111774db8a133d09e22cf52433b6768651798285f9667c0fb282552417d1c7f8d0 SHA512 894876d2dcf9f5f080c7f0ab4204cd16445a8dc034d152110bb6ef251196459eb168e83a5cef410235e006533cb2e97e7b865d0fcd54b501ff884ea1c8d5bd32
|
||||
DIST vctrs_0.3.7.tar.gz 782590 BLAKE2B fa7b4a1b2b1f9518750575ad506c990a989811a123af44fc0451f71f25bd92adabdb6ca433c3e070ab906b385964a79b74e11cdd0f3988229ef5e45bbec7ad81 SHA512 6474585edab12d58ca9abe612e71148d9d6d3f7f32250645e0ffc463fc3a9007ccbfe8c7b7a6a752dab7f382490a15889cbe0e433e2a4d51ec659c54b37681f7
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Vector Helpers'
|
||||
HOMEPAGE="
|
||||
https://github.com/r-lib/vctrs
|
||||
https://cran.r-project.org/package=vctrs
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/vctrs_0.2.4.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
|
||||
IUSE="${IUSE-}"
|
||||
KEYWORDS="~amd64"
|
||||
DEPEND="
|
||||
>=dev-lang/R-3.2
|
||||
dev-R/digest
|
||||
>=dev-R/ellipsis-0.2.0
|
||||
dev-R/glue
|
||||
>=dev-R/rlang-0.4.5
|
||||
"
|
||||
RDEPEND="${DEPEND-}"
|
||||
@@ -1,25 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
inherit R-packages-guru
|
||||
|
||||
DESCRIPTION='Vector Helpers'
|
||||
HOMEPAGE="
|
||||
https://github.com/r-lib/vctrs
|
||||
https://cran.r-project.org/package=vctrs
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
|
||||
IUSE="${IUSE-}"
|
||||
KEYWORDS="~amd64"
|
||||
DEPEND="
|
||||
>=dev-lang/R-3.2
|
||||
dev-R/digest
|
||||
>=dev-R/ellipsis-0.2.0
|
||||
dev-R/glue
|
||||
>=dev-R/rlang-0.4.5
|
||||
"
|
||||
RDEPEND="${DEPEND-}"
|
||||
@@ -10,16 +10,15 @@ HOMEPAGE="
|
||||
https://github.com/r-lib/vctrs
|
||||
https://cran.r-project.org/package=vctrs
|
||||
"
|
||||
SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz"
|
||||
SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz"
|
||||
LICENSE='GPL-3'
|
||||
|
||||
IUSE="${IUSE-}"
|
||||
KEYWORDS="~amd64"
|
||||
DEPEND="
|
||||
>=dev-lang/R-3.3
|
||||
dev-R/digest
|
||||
>=dev-R/ellipsis-0.2.0
|
||||
dev-R/glue
|
||||
>=dev-R/rlang-0.4.7
|
||||
>=dev-R/rlang-0.4.10
|
||||
"
|
||||
RDEPEND="${DEPEND-}"
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 2017-2020 Gentoo Authors
|
||||
# Copyright 2017-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
# Auto-Generated by cargo-ebuild 0.3.1
|
||||
@@ -170,6 +170,8 @@ IUSE=""
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
|
||||
QA_FLAGS_IGNORED="usr/bin/tokei"
|
||||
|
||||
src_compile() {
|
||||
cargo_src_compile --features all
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 2017-2020 Gentoo Authors
|
||||
# Copyright 2017-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
# Auto-Generated by cargo-ebuild 0.3.1
|
||||
@@ -179,6 +179,8 @@ IUSE=""
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
|
||||
QA_FLAGS_IGNORED="usr/bin/tokei"
|
||||
|
||||
src_compile() {
|
||||
cargo_src_compile --features all
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 2017-2020 Gentoo Authors
|
||||
# Copyright 2017-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
# Auto-Generated by cargo-ebuild 0.3.1
|
||||
@@ -179,6 +179,8 @@ IUSE=""
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
|
||||
QA_FLAGS_IGNORED="usr/bin/tokei"
|
||||
|
||||
src_compile() {
|
||||
cargo_src_compile --features all
|
||||
}
|
||||
|
||||
@@ -175,6 +175,8 @@ IUSE=""
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
|
||||
QA_FLAGS_IGNORED="usr/bin/tokei"
|
||||
|
||||
src_compile() {
|
||||
cargo_src_compile --features all
|
||||
}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST coreaction-4.0.0.tar.gz 1397910 BLAKE2B f8d25c6c9066def7d1a0915deb62135a0c042bc67382dcfa24ebc8ef59e125a0ac2e15b8d9bbaf5cfbd34e5ffbd604a2edfc1398c12a2f7f160365734988bac2 SHA512 47f4289bb69498f0d6ba0ba6b3cbf4cea3ccadf4adb0b57c77ccc26cb1b132ecb908291b0b0dc8dccdedbc5b5c2dec40d6adbfb65f73127df1fef868bba16c1e
|
||||
DIST coreaction-4.1.0.tar.gz 1398175 BLAKE2B 2222a351a7c308d958eb5a4ffa8c9200aa0d3d2c8144fbc6123a115622fab7ce4d457ba2f11d56481cd29d4efa2b2d61da9f289cae2deaa90004b009e2ca36e2 SHA512 ac9d4aea8e1f354ebc3aec902bf128bcad5116b660412c293e6a374119057d1d3604894e97b33e7a13a39192b034b18e9925e5a8ba550f9e726c55a7f35df7a3
|
||||
DIST coreaction-4.2.0_alpha.tar.gz 783383 BLAKE2B fd896a3598b126117108b4cd0a8c4ffec9452b1ba301603cf19a55c973e63a872f590ec6470bd2809e6ed0fddba2160e98126c9f8666e22f3554a8c85953b8d2 SHA512 c90daee802d36256d6233b131d57dfe3a34f70ef7dfa89f01e45460882500e18a9ef0b71fc9f30be00bfd338425926fc25483457081e2ea03ebaad8d365b8780
|
||||
|
||||
33
gui-apps/coreaction/coreaction-4.2.0_alpha.ebuild
Normal file
33
gui-apps/coreaction/coreaction-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A side bar for showing widgets for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreaction"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtsvg
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
@@ -3,7 +3,9 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A side bar for showing widgets for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreaction"
|
||||
@@ -12,9 +14,9 @@ if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
@@ -29,9 +31,3 @@ DEPEND="
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' app/*.desktop || die
|
||||
}
|
||||
|
||||
43
gui-apps/coreapps-meta/coreapps-meta-4.2.0_alpha.ebuild
Normal file
43
gui-apps/coreapps-meta/coreapps-meta-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,43 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DESCRIPTION="Meta package for coreapps"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps"
|
||||
SRC_URI=""
|
||||
|
||||
LICENSE="metapackage"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="
|
||||
location
|
||||
pulseaudio
|
||||
udisks
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
~gui-apps/coreaction-${PV}
|
||||
~gui-apps/coreapps-meta-${PV}
|
||||
~gui-apps/corearchiver-${PV}
|
||||
~gui-apps/corefm-${PV}
|
||||
~gui-apps/coregarage-${PV}
|
||||
~gui-apps/corehunt-${PV}
|
||||
~gui-apps/coreimage-${PV}
|
||||
~gui-apps/coreinfo-${PV}
|
||||
~gui-apps/corekeyboard-${PV}
|
||||
~gui-apps/corepad-${PV}
|
||||
~gui-apps/corepaint-${PV}
|
||||
~gui-apps/corepdf-${PV}
|
||||
~gui-apps/corepins-${PV}
|
||||
~gui-apps/corerenamer-${PV}
|
||||
~gui-apps/coreshot-${PV}
|
||||
~gui-apps/corestats-${PV}
|
||||
~gui-apps/corestuff-${PV}
|
||||
~gui-apps/coreterminal-${PV}
|
||||
~gui-apps/coretime-${PV}
|
||||
~gui-apps/coretoppings-${PV}[location?,pulseaudio?]
|
||||
~gui-apps/coreuniverse-${PV}
|
||||
~gui-libs/libcprime-${PV}
|
||||
~gui-libs/libcsys-${PV}[udisks?]
|
||||
"
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST corearchiver-4.0.0.tar.gz 86699 BLAKE2B 8ca065e35f2567ae971fe42db7152352ea079adefd87790430341dcc03360a6b51710f2a6a2fc6bb486bfb4961895a9e29de9a7a23071fd5e7d499136a940759 SHA512 5e9da633a1d059399a761527479ec37dab1a2e2c8625ed66379cd1e553fb262772a3d23bcb2bccb1a6a70d617701b56d84f81dffb721ce6a95758f726d20c02f
|
||||
DIST corearchiver-4.1.0.tar.gz 86679 BLAKE2B 7e159875eb9ea9e45d372dbf14a28e72cd1e12b36cc6609f702cc74275345017210610e29e8fdc6ba706124f1bb305db9ff948acf8f5a84cb5739651048af619 SHA512 f00e5e98cf87392d48228ac8eb66ef7031126d0fc70f3455867cb9872194ae374a322b13e848be89fd7be4d1a8bfa550ae4d496485dc80d7b8670f481f7f8d48
|
||||
DIST corearchiver-4.2.0_alpha.tar.gz 102645 BLAKE2B 68519a93486589cbd9151aaa3dc36da0a41048ee48c90ec3dda9daddf2de028dd896222f43c518cfcdda8d68fb46499738f94da613415ee2916df926df9d916f SHA512 11f28547f0a072dfd0cba27920ec7325729d32d55fe494c325da1d99bc710ec729c5b95462e23033cbf44df41465057bd3a5f9ae1ee6873f28f1d04985f69580
|
||||
|
||||
35
gui-apps/corearchiver/corearchiver-4.2.0_alpha.ebuild
Normal file
35
gui-apps/corearchiver/corearchiver-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="Archiver for C Suite, to create and extract archives"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corearchiver"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
app-arch/libarchive-qt
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
@@ -3,7 +3,9 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="Archiver for C Suite, to create and extract archives"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corearchiver"
|
||||
@@ -12,9 +14,9 @@ if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
@@ -31,9 +33,3 @@ DEPEND="
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST corefm-4.0.0.tar.gz 102820 BLAKE2B 8ad9c7f8db32c41ce05cd148300a6aaa5e36dd92be5d1f6b1594263f86931c23f57f1b72ec0e58c00f8d359261717ec808f04d5911b7ba7fb39ae4290b1d1803 SHA512 de835961148a4a3c19b6fdd78010624ff4002f7721e53deb3a8053a754303bd1e737b2a437757ff17c845cad998f04405a114c8034ba10b224c916177f2dfc01
|
||||
DIST corefm-4.1.0.tar.gz 102650 BLAKE2B a1a176beb26e0015f51367c652334ea5cc8daded8fa8137b451ef7ee0b1e47715a16e17113d4957a0be5b2093b078465e84e0c3c9ade0a7bebb9764602f43ba9 SHA512 600dad0e309e996ec84276026ff0bba5d965d09ae5fb3cbf33663839ce8d85889edf765a3088d6f88048f752b678bb6f4962b7e13eb53d1d3d3463878a5ed475
|
||||
DIST corefm-4.2.0_alpha.tar.gz 105041 BLAKE2B 48a7b84f9d547f2e14650ae098161bc10ebdf6427171dbe8a3c1a8cf79774d3c2c542fc9a632b8865e4d416a279e57843046a17aac12ca92f9cec9682c5cd72a SHA512 702ef7c42bdbd70f8c3bfe0d93a7650107a4a0c7e0fd60e59010e39e8ee2173c36836c18ab3d4f82eb669b021ab9dbff752ae31ac7843239dadf80591d7962ed
|
||||
|
||||
35
gui-apps/corefm/corefm-4.2.0_alpha.ebuild
Normal file
35
gui-apps/corefm/corefm-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A lightweight file-manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corefm"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtconcurrent:5
|
||||
dev-qt/qtdbus:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
@@ -3,7 +3,9 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A lightweight file-manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corefm"
|
||||
@@ -12,9 +14,9 @@ if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
@@ -31,9 +33,3 @@ DEPEND="
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST coregarage-4.0.0.tar.gz 113603 BLAKE2B 2044cc558f886d47f6622bbe853f0a33a01585b72463e948c5515b6803f3a30c600b2bdc2ed1037701b0c30714b9c743b5ac70b898b1f6b56c59a3e58979b306 SHA512 0f7864027af39b567d54f0430f511245d3dd5b18d900e66734bb27e95ffa6ed6d6217fe80f95e8fe9b322bad47628127fa559ed328051ec1c551e77824cfc9f6
|
||||
DIST coregarage-4.1.0.tar.gz 113599 BLAKE2B 3a4d8748af42fb342626944a43bb1371b06a4f39142c8e7e2f2ff3ef1359e25714ac4ccf9894ee3e219c43600bc2ef3bd887e35b17a6e8c2dc9b6ee74d5dc8ab SHA512 9b15c1147105c0cc068e9559e4c5c89e95497a7026356051b37165a0347725e6310b4d5144238e01f94a7cbbd6a427db8eed37bb457c2804db2b857a9c1de574
|
||||
DIST coregarage-4.2.0_alpha.tar.gz 101915 BLAKE2B d3552f429b9ff1af132e98660e73f92e648fb1c474e0d15d743a915c39b49921b14b7f212dba93cba66494bf13dc219d6c9a8486a56414f02eb62abe10f568fb SHA512 f23d1eccda1d01f0db5a399310fcce250f8472e45ec3823118ac1f8a22e8a4426c485c23a0bd7e9e6426b67722e59671bf625723f155c4b62fbac43491263409
|
||||
|
||||
36
gui-apps/coregarage/coregarage-4.2.0_alpha.ebuild
Normal file
36
gui-apps/coregarage/coregarage-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,36 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A settings manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coregarage"
|
||||
|
||||
if [[ "${MY_PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
app-arch/libarchive-qt
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
@@ -3,18 +3,20 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A settings manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coregarage"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
if [[ "${MY_PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
@@ -32,9 +34,3 @@ DEPEND="
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST corehunt-4.0.0.tar.gz 49177 BLAKE2B f8904eba6af7854c882f26000e781295fa33d269637a5f66e54e0a152ccdbc51b952d4251eb50d6589edf8422d83fa4627cd4766ea1eeca89234c31f325fbaec SHA512 bbcb846039c3887e0f5b64a2e72c3cb5cabf31385d35870686c31e8a47d1ba7790c71941f5bdec422cfcc2f80b6dba47c1bac521c7365f68a546f5a2c990ebb2
|
||||
DIST corehunt-4.1.0.tar.gz 49192 BLAKE2B e022d7125e9004c4beabe51feb884eb22d53c2beb2ca297b7cb1bd68629e6501d25e0860d6b554ee8290f8929ca13404ddbd4159a39c2f3dd811c7028b2b4c8e SHA512 d9428d0049d298921530e3f4ab2b389eb97b388ee1103e5643fb4f2f8c53191e2d8513ea2c7308c20b1e7ea8badfa055026b8266d228f5f5d7be5e369438c5fb
|
||||
DIST corehunt-4.2.0_alpha.tar.gz 50927 BLAKE2B fce9b6dc2e3d8ec19fa48ec53d60de2edfdf456c29b11570c72643f4b0d9c2cc91e94eb4eb87c89e5b2ab43c55cb296a7c0935f56e2785caa06807c42211a308 SHA512 82fcffd487a4f90811e0d6d7167dd2b70927a537adb99a4aa7031a5761d9cf26a191597e5aab776fc535c11cb4cbd6161ae4b0ed76d69671b9025307cad25d82
|
||||
|
||||
35
gui-apps/corehunt/corehunt-4.2.0_alpha.ebuild
Normal file
35
gui-apps/corehunt/corehunt-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A file finder utility for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corehunt"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtconcurrent:5
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
@@ -3,7 +3,9 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A file finder utility for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corehunt"
|
||||
@@ -12,9 +14,9 @@ if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
@@ -31,9 +33,3 @@ DEPEND="
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST coreimage-4.0.0.tar.gz 403995 BLAKE2B d8208c774987e3585563f92435663bc29121e50581263a1e4aac0f6fe78c9d037430c843ad442743b83b07f5b05a64987a81a0cb5e768c19825bd3c106c507f9 SHA512 11c3e021178324b91f27d5b541f716158a405bd9b8c700d467ee39647ada5fd4bc300e7b538e9afb07a10eda1b2800efec2d9500ab24f2273a2c95e9a5f3d987
|
||||
DIST coreimage-4.1.0.tar.gz 404411 BLAKE2B 3f5a825f2e591b2abd6f0fca0cbf0cc15e6ed7a3abf72eba1ac1994595b51659bff869d076c51f5c5028612b788015ee3edd984adc26e905857de9b38d3f552d SHA512 4ebe1ff2d9baa12b09e345cf3748a1ce35eb927b9de4e7c486a73775d629f21e7c2a6ebf3060311cd818cf5d54572ede0dba64265591feea17a3a6e328b7849b
|
||||
DIST coreimage-4.2.0_alpha.tar.gz 406569 BLAKE2B d305bd809522120267049de84acd6f044490ab1d229c413bf3be0246fcf592ce7bb260fdf71012a20bdbcce90bb159ef222a2e78098fa8e6e307104704ca6eb0 SHA512 1784f35fd3bd260d5e81fecd5db10f9cd38c1f190eff3fa86d096ba8c99497312d5cbdf2393fc67be673c581da0a58e0b6ccb0eba627cce1b85f16abeafc0e56
|
||||
|
||||
36
gui-apps/coreimage/coreimage-4.2.0_alpha.ebuild
Normal file
36
gui-apps/coreimage/coreimage-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,36 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="An image viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreimage"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtconcurrent:5
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
@@ -3,7 +3,9 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="An image viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreimage"
|
||||
@@ -12,9 +14,9 @@ if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
@@ -32,9 +34,3 @@ DEPEND="
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST coreinfo-4.0.0.tar.gz 52156 BLAKE2B 72225ded45603aa5b05682e195d033dc93e462ef6f28f7cce65c2dd4a29efd0e4b62598fbe6646a0d58c8e249cc6b0fded54ad7bfe50081c65b831089b63933b SHA512 d0a0a900ddb201504dd5d331a14317b30173ea35de53306363e1c904629e29d82c0720ff931a88cf780c455d1b3202611090c762594c4758b65a249989249db9
|
||||
DIST coreinfo-4.1.0.tar.gz 52699 BLAKE2B a4ee3a52bac8d6b4e17876dc5f1553c82472091a641299a2ff32e9bc24e2e3c8f8d7c12cc7fb1865e0b1a4cd04b87ea2cd6fd56e3385553681fec98163948fa3 SHA512 a34ecb108b947c9d80bb2a796c54710cd0392d8a5cc728233712af14f23d3516e4d95925bef0dcbb58e79fde2a5563187a355e1ca9d73682566bfe02fb54bf6a
|
||||
DIST coreinfo-4.2.0_alpha.tar.gz 59356 BLAKE2B 41d640b5211fd096fb86aaacfa1183e5038155a9427ed66236280b85a416d4d3857c1d1782c03f979b228fe2516e86f3ad1e9f29b7f20d3685d31d6cd5562999 SHA512 6c75252b9e624a245584ee1f0d2309a76c2eed888e13a37ebe33c5f6a9c508fe669b5504641af1ab16518a61a209f7ecfc7de310820a747b769439f9c45010cd
|
||||
|
||||
37
gui-apps/coreinfo/coreinfo-4.2.0_alpha.ebuild
Normal file
37
gui-apps/coreinfo/coreinfo-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,37 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A file information tool for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreinfo"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
media-libs/libmediainfo
|
||||
media-libs/libzen
|
||||
sys-libs/zlib
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
@@ -3,7 +3,9 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A file information tool for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreinfo"
|
||||
@@ -12,9 +14,9 @@ if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
@@ -33,9 +35,3 @@ DEPEND="
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST corekeyboard-4.0.0.tar.gz 912573 BLAKE2B aee15c6435635cb035a7c11ec17f5cf10c1eac8102b660d8691bbe6710987e825ee52a13e58cdfb298596ebf311deb6fd1a3bfa543d6dc9a590aa9487250a870 SHA512 61b68ff7f2a68e67c8c5ae64a6afb3bc7b108b1d6a5e918592f30dd89fc4b966c7dc450624bf23c30497f92057efc902ef2ce739ae720091fa2b1761c64c8556
|
||||
DIST corekeyboard-4.1.0.tar.gz 912580 BLAKE2B d912022af88bd927c4ad76a74b1032d2dfb2f2f9d338fd7dc78c91b44492b5a0d2e99dd645bcbc1c45787c54d7f730a91d190b60be3aa1bd40b0c47acc63e06c SHA512 e6678f96cc120c89f7618f058b3d032db8b4b1e8868a0a2c86d5caff109998a7036017a7bfd3e538227bd9f2fab0488fe29781cf9278b4cd6b98d02cedb947c1
|
||||
DIST corekeyboard-4.2.0_alpha.tar.gz 914096 BLAKE2B 736de1e4171bc9ba50d6175a69d01dfbaab5482dd85038701c97d09164b05a98ce51780449d7c752e673d9544dd7001869662c389de42cc962641aa13d3fd133 SHA512 8b5a2e64859f9e2f43a7f6b9287ca9e4f64ef6ba9aba7e511152e8afcd2af12af1414f2c6d96178d4fc9280665b960237c88b037b90ff537e3ba063acb5b6743
|
||||
|
||||
35
gui-apps/corekeyboard/corekeyboard-4.2.0_alpha.ebuild
Normal file
35
gui-apps/corekeyboard/corekeyboard-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A x11 based virtual keyboard for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corekeyboard"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtx11extras:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
@@ -3,7 +3,9 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A x11 based virtual keyboard for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corekeyboard"
|
||||
@@ -12,9 +14,9 @@ if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
@@ -31,9 +33,3 @@ DEPEND="
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST corepad-4.0.0.tar.gz 333491 BLAKE2B 702d8f94b1fccb17cbdc8ecd2510ea32ac12d515b888e1b89d654dab61e60050685aed329ddd34dba51a9e0a81fa2488aa948831324191a5f22cc71b140e3f86 SHA512 24073edcf6de1bc94e510b88f8c017a12bf9bed2099876b76cd9254426e891043f3cdb9162156dd3af8d502e52494cabfe931442350cc9e8eaa9e694ced2e760
|
||||
DIST corepad-4.1.0.tar.gz 333915 BLAKE2B d3a7fc7514dc9e85ed548dfb24744a0a1d83611d544fb3bfd9ec1c33573f1b7d6a63d0ff65994444ec253efb385b4d8dd59f184df49888a739f6e71a103715a3 SHA512 3998a95f8ffd51cbae9cc9bf74c2bd31ef1af0bb9d7d4ae9ef9ae3d60c5ede0b8048c3591285da5a06b83e045d702c94f71655250ad34aaf64dce9974dbd61c0
|
||||
DIST corepad-4.2.0_alpha.tar.gz 141943 BLAKE2B c05451ce4b43283f7054d4e73a5dffb12ee1055b06784e9d4e9cb17e7c12904cc16e32e4feafd9a1332c047f9b9d060cac164a22d6f44005a0f5e6f130cc0955 SHA512 aaa2e80a493d3aa4b49ba32e1b37dc5b7aa7a25553eb93588931fbc265dd04ac80b74c600f031267236fbd2bac9f1ac653ef2279f2c1faf37154636f0852a889
|
||||
|
||||
35
gui-apps/corepad/corepad-4.2.0_alpha.ebuild
Normal file
35
gui-apps/corepad/corepad-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A document editor for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepad"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtxml:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
@@ -3,7 +3,9 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A document editor for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepad"
|
||||
@@ -12,9 +14,9 @@ if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
@@ -31,9 +33,3 @@ DEPEND="
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST corepaint-4.0.0.tar.gz 95037 BLAKE2B ac7ba3bcd28057206801211b87a7d420f94a9a46147008644d9b7d59169f48e3fc2a78f3ea2db5c034fa97b922b25b4d94025a2001293acc62aab74ab8d105d0 SHA512 dbb0a37100d9bd01b3512080e98162c6a25d3ab5ff19be3fefedf35c3398bdb160ad1ba2c9cb5d6950582c6bfc99d75c3768edf45fa6cfe1b898fb11a7ac4a9a
|
||||
DIST corepaint-4.1.0.tar.gz 96506 BLAKE2B a5ec05d35e1d6ce086bb7ef55a0efbfe34273510b446492835e532e2420c52998495bba63e7cc4ce1080e144b1aa8bc5f10c06e58e1d6c0718b41c8c084c489d SHA512 c49d2388436e13717edaa957d7a81de2cf348324317baab27fbe1f9ef0a7086095c6996ee09300d350945af4dd1abe2f736dfcf49886443e0474245ff327227a
|
||||
DIST corepaint-4.2.0_alpha.tar.gz 108589 BLAKE2B 148739b145df83939733ae1797b83c60c6b8a161b13cfdb44ce1c478bb3671639487a025cf1cf7d3fe1e4f11ccdf93b75bbf8b3393a6bd85e2ea007efbec7f1c SHA512 3dcf40200b1677452f4eef7028e8036a883cb5072bbda2ddd50084607daf779124ab2709a974efb167e6b9b41c12085d1865ad56bc46ea70f554f293abe636ee
|
||||
|
||||
34
gui-apps/corepaint/corepaint-4.2.0_alpha.ebuild
Normal file
34
gui-apps/corepaint/corepaint-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,34 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A paint app for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepaint"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
@@ -3,7 +3,9 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A paint app for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepaint"
|
||||
@@ -12,9 +14,9 @@ if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
@@ -30,9 +32,3 @@ DEPEND="
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST corepdf-4.0.0.tar.gz 115775 BLAKE2B f8b43c69d30d30d89bcc1f01719dacd48be1b453a6ba1fe932ab9d71137d92ffa87e12ccd0e3ab0c47a867ab6e431b9150307a05d90ad8836d395ba9d68f6acf SHA512 c28de6f79f78cba1fd1fa34f9cff552133e396523e9f50ac8eeff94511d4179d0d405eb4af415f61d34df28809f521c7e6f9f196a007e6995f79d4c237d23310
|
||||
DIST corepdf-4.1.0.tar.gz 115777 BLAKE2B 1e333c3ca16375186b5b3b379d3e2d344d7b4064bc03c7c282ec6b2bed3b4b02c9bafd9d71f6242656c2193daecf58b951899fa853ad2833ca33a5fb32361faa SHA512 dcc9a5cb5d8566f783c1fc680f596f54261ac1e6b679e13043e9b7146e3bbddc8527d57e48ea359a748b4a6f3106cb2c97b8bd41c5c51bcf9d0e4cf558b1da99
|
||||
DIST corepdf-4.2.0_alpha.tar.gz 85112 BLAKE2B 8ce08731dd2ae4979c1f2f0889d13405ab170af85ee05c2b06dd3f22a4db3b5d7aafaef230ffa9876829631014104c1e5c2a946949188a419c95478db67a16c8 SHA512 eaf60c3faf883f1d6641d9b5060ce3c00c9e87e056027ddeee5ebc11a2cd080b8c596e835b836d31f47db826800d77969d61ee0078358af8d57f1e6014d0885a
|
||||
|
||||
35
gui-apps/corepdf/corepdf-4.2.0_alpha.ebuild
Normal file
35
gui-apps/corepdf/corepdf-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A PDF viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepdf"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
app-text/poppler[qt5]
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
@@ -3,7 +3,9 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A PDF viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepdf"
|
||||
@@ -12,9 +14,9 @@ if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
@@ -31,9 +33,3 @@ DEPEND="
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1 +1,2 @@
|
||||
DIST corepins-4.1.0.tar.gz 53284 BLAKE2B 3aa3a9db716dedfa77b102fc0d20bde5c308d5ea921a322f812f41e65e6a5da4247069343e65283a35e1ccc5783d36623250f59017736db67c23d68cee186ead SHA512 6c2898d0a7475c92157213c5285cc8b711c472bb33e852a6b6f4f39f694a980858f1807d3d0eb21de050e0f008266be7dd0e544efe83a5212198946d28293c73
|
||||
DIST corepins-4.2.0_alpha.tar.gz 52968 BLAKE2B 2d21aba06a44a00513e7986f3d2e6d76c448c3c71f2f679564fb9ac8c8a9276fe7b78e59c5505690c768a7a05c621e066119e94dc4b26376585771ad3064db9a SHA512 4c2f4bd8d12bb677892c0684842e675015be07990ec0e5b7476ed9c909520b324bcc48021f568a71d1cb3ef3781fa560ec99c2ab522ddebf4dcb70d7ea8f4f40
|
||||
|
||||
34
gui-apps/corepins/corepins-4.2.0_alpha.ebuild
Normal file
34
gui-apps/corepins/corepins-4.2.0_alpha.ebuild
Normal file
@@ -0,0 +1,34 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A bookmarking app for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepins"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
@@ -3,7 +3,9 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
MY_PV="${PV/_/-}"
|
||||
|
||||
inherit xdg cmake
|
||||
|
||||
DESCRIPTION="A bookmarking app for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepins"
|
||||
@@ -12,9 +14,9 @@ if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
S="${WORKDIR}/${PN}-v${MY_PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
@@ -30,9 +32,3 @@ DEPEND="
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user