* [gentoo-commits] repo/gentoo:master commit in: net-im/ricochet/
@ 2018-07-11 8:40 Tony Vroon
0 siblings, 0 replies; 5+ messages in thread
From: Tony Vroon @ 2018-07-11 8:40 UTC (permalink / raw
To: gentoo-commits
commit: 4c4794c151d6fcc3b6f3644666cb6d09dacab33d
Author: Lucian Poston <lucianposton <AT> pm <DOT> me>
AuthorDate: Sat Jul 7 15:41:22 2018 +0000
Commit: Tony Vroon <chainsaw <AT> gentoo <DOT> org>
CommitDate: Wed Jul 11 08:40:50 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4794c1
net-im/ricochet: new package
Closes: https://bugs.gentoo.org/660604
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9088
Closes: https://bugs.gentoo.org/660604
net-im/ricochet/Manifest | 1 +
net-im/ricochet/metadata.xml | 12 +++++++
net-im/ricochet/ricochet-1.1.4.ebuild | 56 ++++++++++++++++++++++++++++++
net-im/ricochet/ricochet-9999.ebuild | 64 +++++++++++++++++++++++++++++++++++
4 files changed, 133 insertions(+)
diff --git a/net-im/ricochet/Manifest b/net-im/ricochet/Manifest
new file mode 100644
index 00000000000..5b365781363
--- /dev/null
+++ b/net-im/ricochet/Manifest
@@ -0,0 +1 @@
+DIST ricochet-1.1.4.tar.gz 1292671 BLAKE2B 15a71496b01992060fbdbedb0c73365aa250d9e6c4b5bb6223cbcd727a1cf062b1b9cd094d17ae33471e6095a071b1ea6d553a1bb2168974d45486995e204e9b SHA512 9f20fe8e34ea1d8d5b252eee1e164f0a97bf5b3818e864270ea79c0f018b229ec04b1b27acf44415bb646d48b9d1a0ada455a4f77fafdb6e4d21e62292b778a1
diff --git a/net-im/ricochet/metadata.xml b/net-im/ricochet/metadata.xml
new file mode 100644
index 00000000000..6bf484adc0d
--- /dev/null
+++ b/net-im/ricochet/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>lucianposton@pm.me</email>
+ <name>Lucian Poston</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/net-im/ricochet/ricochet-1.1.4.ebuild b/net-im/ricochet/ricochet-1.1.4.ebuild
new file mode 100644
index 00000000000..b26be1ac4f2
--- /dev/null
+++ b/net-im/ricochet/ricochet-1.1.4.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils qmake-utils
+
+if [[ ${PV} == "9999" ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/ricochet-im/ricochet"
+else
+ SRC_URI="https://github.com/ricochet-im/ricochet/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Privacy-focused instant messaging through Tor hidden services"
+HOMEPAGE="https://ricochet.im"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="debug hardened"
+
+RDEPEND="
+ dev-libs/openssl:0=
+ dev-libs/protobuf:0=
+ dev-qt/qtcore:5
+ dev-qt/qtdeclarative:5
+ dev-qt/qtgui:5
+ dev-qt/qtmultimedia:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtquickcontrols:5
+ dev-qt/qtwidgets:5
+ net-vpn/tor"
+DEPEND="${RDEPEND}
+ dev-qt/linguist-tools:5
+ virtual/pkgconfig"
+
+src_configure() {
+ local qmakeargs=( 'DEFINES+=RICOCHET_NO_PORTABLE' )
+ qmakeargs+=( $(usex debug 'CONFIG+=debug' 'CONFIG+=release') )
+ qmakeargs+=( $(usex hardened 'CONFIG+=hardened' 'CONFIG+=no-hardened') )
+
+ eqmake5 "${qmakeargs[@]}"
+}
+
+src_install() {
+ emake INSTALL_ROOT="${D}" install
+}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}
diff --git a/net-im/ricochet/ricochet-9999.ebuild b/net-im/ricochet/ricochet-9999.ebuild
new file mode 100644
index 00000000000..b770332effd
--- /dev/null
+++ b/net-im/ricochet/ricochet-9999.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils qmake-utils
+
+if [[ ${PV} == "9999" ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/ricochet-im/ricochet"
+else
+ SRC_URI="https://github.com/ricochet-im/ricochet/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Privacy-focused instant messaging through Tor hidden services"
+HOMEPAGE="https://ricochet.im"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="debug hardened"
+
+RDEPEND="
+ dev-libs/openssl:0=
+ dev-libs/protobuf:0=
+ dev-qt/qtcore:5
+ dev-qt/qtdeclarative:5
+ dev-qt/qtgui:5
+ dev-qt/qtmultimedia:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtquickcontrols:5
+ dev-qt/qtwidgets:5
+ net-vpn/tor"
+DEPEND="${RDEPEND}
+ dev-qt/linguist-tools:5
+ virtual/pkgconfig"
+
+src_prepare() {
+ eapply_user
+
+ # workaround bug https://github.com/ricochet-im/ricochet/issues/582
+ cp contrib/usr.bin.ricochet-apparmor contrib/usr.bin.ricochet
+}
+
+src_configure() {
+ local qmakeargs=( 'DEFINES+=RICOCHET_NO_PORTABLE' )
+ qmakeargs+=( 'DEFINES+=APPARMOR' )
+ qmakeargs+=( $(usex debug 'CONFIG+=debug' 'CONFIG+=release') )
+ qmakeargs+=( $(usex hardened 'CONFIG+=hardened' 'CONFIG+=no-hardened') )
+
+ eqmake5 "${qmakeargs[@]}"
+}
+
+src_install() {
+ emake INSTALL_ROOT="${D}" install
+}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-im/ricochet/
@ 2020-07-28 14:29 Andreas Sturmlechner
0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2020-07-28 14:29 UTC (permalink / raw
To: gentoo-commits
commit: fe5389275a22171e813d9549e678d57419372eca
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 15 11:23:41 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jul 28 14:29:22 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe538927
net-im/ricochet: EAPI-7 bump, use xdg-utils.eclass
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
net-im/ricochet/ricochet-1.1.4.ebuild | 15 ++++++++-------
net-im/ricochet/ricochet-9999.ebuild | 17 +++++++++--------
2 files changed, 17 insertions(+), 15 deletions(-)
diff --git a/net-im/ricochet/ricochet-1.1.4.ebuild b/net-im/ricochet/ricochet-1.1.4.ebuild
index b26be1ac4f2..44bcd7daf21 100644
--- a/net-im/ricochet/ricochet-1.1.4.ebuild
+++ b/net-im/ricochet/ricochet-1.1.4.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
-inherit gnome2-utils qmake-utils
+inherit qmake-utils xdg-utils
-if [[ ${PV} == "9999" ]]; then
+if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/ricochet-im/ricochet"
else
@@ -31,7 +31,8 @@ RDEPEND="
dev-qt/qtquickcontrols:5
dev-qt/qtwidgets:5
net-vpn/tor"
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
dev-qt/linguist-tools:5
virtual/pkgconfig"
@@ -48,9 +49,9 @@ src_install() {
}
pkg_postinst() {
- gnome2_icon_cache_update
+ xdg_icon_cache_update
}
pkg_postrm() {
- gnome2_icon_cache_update
+ xdg_icon_cache_update
}
diff --git a/net-im/ricochet/ricochet-9999.ebuild b/net-im/ricochet/ricochet-9999.ebuild
index b770332effd..2caa9d50609 100644
--- a/net-im/ricochet/ricochet-9999.ebuild
+++ b/net-im/ricochet/ricochet-9999.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
-inherit gnome2-utils qmake-utils
+inherit qmake-utils xdg-utils
-if [[ ${PV} == "9999" ]]; then
+if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/ricochet-im/ricochet"
else
@@ -31,12 +31,13 @@ RDEPEND="
dev-qt/qtquickcontrols:5
dev-qt/qtwidgets:5
net-vpn/tor"
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
dev-qt/linguist-tools:5
virtual/pkgconfig"
src_prepare() {
- eapply_user
+ default
# workaround bug https://github.com/ricochet-im/ricochet/issues/582
cp contrib/usr.bin.ricochet-apparmor contrib/usr.bin.ricochet
@@ -56,9 +57,9 @@ src_install() {
}
pkg_postinst() {
- gnome2_icon_cache_update
+ xdg_icon_cache_update
}
pkg_postrm() {
- gnome2_icon_cache_update
+ xdg_icon_cache_update
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-im/ricochet/
@ 2021-07-15 21:33 Sam James
0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2021-07-15 21:33 UTC (permalink / raw
To: gentoo-commits
commit: 71432cf5a35667a076d45c7c3b8e01910dd75423
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 15 21:32:13 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 15 21:32:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71432cf5
net-im/ricochet: Stabilize 1.1.4 x86, #799656
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-im/ricochet/ricochet-1.1.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-im/ricochet/ricochet-1.1.4.ebuild b/net-im/ricochet/ricochet-1.1.4.ebuild
index 44bcd7daf21..cf738b95715 100644
--- a/net-im/ricochet/ricochet-1.1.4.ebuild
+++ b/net-im/ricochet/ricochet-1.1.4.ebuild
@@ -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
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="https://github.com/ricochet-im/ricochet"
else
SRC_URI="https://github.com/ricochet-im/ricochet/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="~amd64 x86"
fi
DESCRIPTION="Privacy-focused instant messaging through Tor hidden services"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-im/ricochet/
@ 2021-07-15 21:39 Sam James
0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2021-07-15 21:39 UTC (permalink / raw
To: gentoo-commits
commit: d979f2501b17c5df0d92c73c3901d1af9ea09912
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 15 21:35:42 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 15 21:38:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d979f250
net-im/ricochet: Stabilize 1.1.4 amd64, #799656
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-im/ricochet/ricochet-1.1.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-im/ricochet/ricochet-1.1.4.ebuild b/net-im/ricochet/ricochet-1.1.4.ebuild
index cf738b95715..016274c26dd 100644
--- a/net-im/ricochet/ricochet-1.1.4.ebuild
+++ b/net-im/ricochet/ricochet-1.1.4.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="https://github.com/ricochet-im/ricochet"
else
SRC_URI="https://github.com/ricochet-im/ricochet/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 x86"
+ KEYWORDS="amd64 x86"
fi
DESCRIPTION="Privacy-focused instant messaging through Tor hidden services"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-im/ricochet/
@ 2023-08-29 5:35 Sam James
0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2023-08-29 5:35 UTC (permalink / raw
To: gentoo-commits
commit: 36a118b1b01dc97772f0e0dc3906c36d74acb476
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 29 05:30:07 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 29 05:30:07 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36a118b1
net-im/ricochet: add github upstream metadata
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-im/ricochet/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/net-im/ricochet/metadata.xml b/net-im/ricochet/metadata.xml
index 3c27f902e41b..c4af8f701ab9 100644
--- a/net-im/ricochet/metadata.xml
+++ b/net-im/ricochet/metadata.xml
@@ -9,4 +9,7 @@
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">ricochet-im/ricochet</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-08-29 5:35 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-15 21:33 [gentoo-commits] repo/gentoo:master commit in: net-im/ricochet/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-08-29 5:35 Sam James
2021-07-15 21:39 Sam James
2020-07-28 14:29 Andreas Sturmlechner
2018-07-11 8:40 Tony Vroon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox