* [gentoo-commits] repo/gentoo:master commit in: games-board/pasang-emas/
@ 2016-08-05 0:23 Austin English
0 siblings, 0 replies; 5+ messages in thread
From: Austin English @ 2016-08-05 0:23 UTC (permalink / raw
To: gentoo-commits
commit: 2d48e29f876a48d8f821a3d1cda0009ef4966b8e
Author: Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 4 18:35:02 2016 +0000
Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Fri Aug 5 00:22:42 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d48e29f
games-board/pasang-emas: remove deprecated games eclass
Also update to EAPI 6
Gentoo-Bug: https://bugs.gentoo.org/574082
Package-Manager: portage-2.3.0
.../pasang-emas/pasang-emas-3.1.0-r1.ebuild | 70 ++++++++++++++++++++++
1 file changed, 70 insertions(+)
diff --git a/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild b/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild
new file mode 100644
index 0000000..1347235
--- /dev/null
+++ b/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils gnome2-utils
+
+DESCRIPTION="A traditional game of Brunei"
+HOMEPAGE="http://pasang-emas.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
+ extras? ( mirror://sourceforge/${PN}/pasang-emas-themes-1.0.tar.bz2
+ mirror://sourceforge/${PN}/pet-marble.tar.bz2
+ mirror://sourceforge/${PN}/pet-fragrance.tar.bz2 )"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="extras nls"
+
+RDEPEND="app-text/gnome-doc-utils
+ >=x11-libs/gtk+-2.18.2:2
+ virtual/libintl"
+DEPEND="${RDEPEND}
+ app-text/rarian
+ nls? ( sys-devel/gettext )"
+
+PATCHES=(
+ "${FILESDIR}"/${P}-build.patch
+)
+
+src_prepare() {
+ default
+ sed -i \
+ -e '/Encoding/d' \
+ -e '/Icon/s:\.png::' \
+ data/pasang-emas.desktop.in || die
+ gnome2_omf_fix
+}
+
+src_configure() {
+ econf \
+ --localedir=/usr/share/locale \
+ --with-omf-dir=/usr/share/omf \
+ --with-help-dir=/usr/share/gnome/help \
+ $(use_enable nls)
+}
+
+src_install() {
+ default
+ if use extras; then
+ insinto /usr/share/${PN}/themes
+ doins -r \
+ "${WORKDIR}"/marble \
+ "${WORKDIR}"/pasang-emas-themes-1.0/{conteng,kaca} \
+ "${WORKDIR}"/fragrance
+ fi
+ use nls || rm -rf "${D}"usr/share/locale
+}
+
+pkg_preinst() {
+ gnome2_scrollkeeper_savelist
+}
+
+pkg_postinst() {
+ gnome2_scrollkeeper_update
+}
+
+pkg_postrm() {
+ gnome2_scrollkeeper_update
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-board/pasang-emas/
@ 2021-06-15 20:02 Ionen Wolkens
0 siblings, 0 replies; 5+ messages in thread
From: Ionen Wolkens @ 2021-06-15 20:02 UTC (permalink / raw
To: gentoo-commits
commit: bdb15d3bba3fcbae4d5612931a9e9dc920172e3b
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 15 19:30:01 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Jun 15 20:00:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdb15d3b
games-board/pasang-emas: restrict tests, tidy
These tests aren't really meaningful and attempts to fetch .dtd
just to validate a handful of .xml help files.
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
.../pasang-emas/pasang-emas-3.1.0-r1.ebuild | 44 ++++++++++++----------
1 file changed, 24 insertions(+), 20 deletions(-)
diff --git a/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild b/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild
index 53bb194a1a5..5bf6199b8d6 100644
--- a/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild
+++ b/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild
@@ -7,21 +7,27 @@ inherit gnome2-utils toolchain-funcs
DESCRIPTION="Traditional game of Brunei"
HOMEPAGE="http://pasang-emas.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
- extras? ( mirror://sourceforge/${PN}/pasang-emas-themes-1.0.tar.bz2
- mirror://sourceforge/${PN}/pet-marble.tar.bz2
- mirror://sourceforge/${PN}/pet-fragrance.tar.bz2 )"
+SRC_URI="
+ mirror://sourceforge/${PN}/${P}.tar.bz2
+ extras? (
+ mirror://sourceforge/${PN}/pasang-emas-themes-1.0.tar.bz2
+ mirror://sourceforge/${PN}/pet-marble.tar.bz2
+ mirror://sourceforge/${PN}/pet-fragrance.tar.bz2
+ )"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="extras nls"
+RESTRICT="test" # only used to validate .xml help files and fetches .dtd for it
-RDEPEND="app-text/gnome-doc-utils
- >=x11-libs/gtk+-2.18.2:2
- virtual/libintl"
+RDEPEND="
+ app-text/gnome-doc-utils
+ x11-libs/gtk+:2
+ nls? ( virtual/libintl )"
DEPEND="${RDEPEND}"
-BDEPEND="app-text/rarian
+BDEPEND="
+ app-text/rarian
nls? ( sys-devel/gettext )"
PATCHES=(
@@ -30,19 +36,19 @@ PATCHES=(
src_prepare() {
default
- sed -i \
- -e '/Encoding/d' \
- -e '/Icon/s:\.png::' \
- data/pasang-emas.desktop.in || die
+
+ sed -i '/Encoding/d;/Icon/s:\.png::' data/pasang-emas.desktop.in || die
+
gnome2_omf_fix
}
src_configure() {
- econf \
- --localedir="${EPREFIX}"/usr/share/locale \
- --with-omf-dir="${EPREFIX}"/usr/share/omf \
- --with-help-dir="${EPREFIX}"/usr/share/gnome/help \
+ local econfargs=(
$(use_enable nls)
+ --with-help-dir="${EPREFIX}"/usr/share/gnome/help
+ --with-omf-dir="${EPREFIX}"/usr/share/omf
+ )
+ econf "${econfargs[@]}"
}
src_compile(){
@@ -51,12 +57,10 @@ src_compile(){
src_install() {
default
+
if use extras; then
insinto /usr/share/${PN}/themes
- doins -r \
- "${WORKDIR}"/marble \
- "${WORKDIR}"/pasang-emas-themes-1.0/{conteng,kaca} \
- "${WORKDIR}"/fragrance
+ doins -r "${WORKDIR}"/{fragrance,marble,pasang-emas-themes-1.0/{conteng,kaca}}
fi
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-board/pasang-emas/
@ 2021-06-15 20:02 Ionen Wolkens
0 siblings, 0 replies; 5+ messages in thread
From: Ionen Wolkens @ 2021-06-15 20:02 UTC (permalink / raw
To: gentoo-commits
commit: a21f66543993c4ebcd774741b982a70b423af568
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Jun 9 18:05:20 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Jun 15 20:00:19 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a21f6654
games-board/pasang-emas: EAPI bump, remove unused eclass, fix LICENSE
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/21178
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
.../pasang-emas/pasang-emas-3.1.0-r1.ebuild | 26 +++++++++++++---------
1 file changed, 15 insertions(+), 11 deletions(-)
diff --git a/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild b/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild
index b028b2871b2..53bb194a1a5 100644
--- a/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild
+++ b/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild
@@ -1,17 +1,18 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
-inherit eutils gnome2-utils
+EAPI=7
-DESCRIPTION="A traditional game of Brunei"
+inherit gnome2-utils toolchain-funcs
+
+DESCRIPTION="Traditional game of Brunei"
HOMEPAGE="http://pasang-emas.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
extras? ( mirror://sourceforge/${PN}/pasang-emas-themes-1.0.tar.bz2
mirror://sourceforge/${PN}/pet-marble.tar.bz2
mirror://sourceforge/${PN}/pet-fragrance.tar.bz2 )"
-LICENSE="GPL-3"
+LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="extras nls"
@@ -19,8 +20,8 @@ IUSE="extras nls"
RDEPEND="app-text/gnome-doc-utils
>=x11-libs/gtk+-2.18.2:2
virtual/libintl"
-DEPEND="${RDEPEND}
- app-text/rarian
+DEPEND="${RDEPEND}"
+BDEPEND="app-text/rarian
nls? ( sys-devel/gettext )"
PATCHES=(
@@ -38,12 +39,16 @@ src_prepare() {
src_configure() {
econf \
- --localedir=/usr/share/locale \
- --with-omf-dir=/usr/share/omf \
- --with-help-dir=/usr/share/gnome/help \
+ --localedir="${EPREFIX}"/usr/share/locale \
+ --with-omf-dir="${EPREFIX}"/usr/share/omf \
+ --with-help-dir="${EPREFIX}"/usr/share/gnome/help \
$(use_enable nls)
}
+src_compile(){
+ emake AR="$(tc-getAR)"
+}
+
src_install() {
default
if use extras; then
@@ -53,7 +58,6 @@ src_install() {
"${WORKDIR}"/pasang-emas-themes-1.0/{conteng,kaca} \
"${WORKDIR}"/fragrance
fi
- use nls || rm -rf "${D}"usr/share/locale
}
pkg_preinst() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-board/pasang-emas/
@ 2024-06-16 10:47 Pacho Ramos
0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2024-06-16 10:47 UTC (permalink / raw
To: gentoo-commits
commit: be7272485c435efd76e8fdc9a4d5d7581424fe71
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 16 10:46:07 2024 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jun 16 10:46:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be727248
games-board/pasang-emas: add 6.3.0
Also stop using dead gnome-doc-utils.
Closes: https://bugs.gentoo.org/884743
Closes: https://bugs.gentoo.org/918654
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
games-board/pasang-emas/Manifest | 1 +
games-board/pasang-emas/pasang-emas-6.3.0.ebuild | 41 ++++++++++++++++++++++++
2 files changed, 42 insertions(+)
diff --git a/games-board/pasang-emas/Manifest b/games-board/pasang-emas/Manifest
index aa081952b3a5..06e6d2b171eb 100644
--- a/games-board/pasang-emas/Manifest
+++ b/games-board/pasang-emas/Manifest
@@ -1,4 +1,5 @@
DIST pasang-emas-3.1.0.tar.bz2 3030528 BLAKE2B c61caf905f17fb51fd58609c8f0ec9fc61c0db0fd75eb65d271db39f7c3e670d651d8ed2134aa165cdfd8358d252b78b7716008c1aa96e2f7e9fed1b6123f06e SHA512 c1f7dc259100e2fe643ac0a5d766dad10435145b3fd76e698335817bc30b7a55a5816df920fc3c86fb7b533661b1dd179b20ad01586be914bb3a9cad9be29a65
+DIST pasang-emas-6.3.0.tar.xz 2935180 BLAKE2B 183d8e41ddb1bcf8fca395d300660ab5f369a4a4d9337c987f6db8b2004861f1751a8b52f21634092f4c5f7de1e2d9edd872915fbf0666fbf088058435bd17f7 SHA512 55dce61a0292bc2b410527fbbcad79b1e956912be549b52dafdb0371da12199fadf2822df1b431cf9673c3b52aaa3732e99ddf4866ebd30cb518c4b9ce68e94a
DIST pasang-emas-themes-1.0.tar.bz2 1190560 BLAKE2B a2218920dc601a12c86da15600f8cd09ae434265695d872d706086ab02b9b02e557e8c786789b8089d142b86114adbabfe392f1af290138a95a1d805845582a9 SHA512 8b82ce6ba588b83ed4a0d70d8aab256e2dae16143e64ca8a1fc25ffe61f001cdbc71d62d8eb42d9af4aeb63d6584f47b513b0ce1840d9b9f49d9b1b635eb4043
DIST pet-fragrance.tar.bz2 1019437 BLAKE2B a4408d60c4ea14efab84f10bbce4da0382253f19cd60a82b278ac55c6b9f897a0e2eeef924930b7c8159a02460e3a269dea4254126e2389c84fe0f02cf61c62e SHA512 2af8908848cc20962c70ef573156b208dbc33032529035ae6f0b5760f5eb1b718582dc823340587e29b7e66a2d3c89ba113dedbf299c0bef639f28329ff278f2
DIST pet-marble.tar.bz2 631999 BLAKE2B aee419bfe7355f6c90822deed14d44174d5862f08a6bcb81cabd3c2b05f7ee99ae836574af21e3a2a9c9bf203c1c39d8c4f435466cbbf274cdd162e2c6cc3805 SHA512 3ecaeaddb12e23fbd90e4d158a47dffb73b756bf9f5263d93c5f6aa21d290be3d91885de7200cdd3a45718b49ac19cd7073ed8bf83697af6bff64759f810122e
diff --git a/games-board/pasang-emas/pasang-emas-6.3.0.ebuild b/games-board/pasang-emas/pasang-emas-6.3.0.ebuild
new file mode 100644
index 000000000000..7cfc8c62a614
--- /dev/null
+++ b/games-board/pasang-emas/pasang-emas-6.3.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit toolchain-funcs
+
+DESCRIPTION="Traditional game of Brunei"
+HOMEPAGE="https://pasang-emas.sourceforge.net/"
+SRC_URI="
+ https://downloads.sourceforge.net/${PN}/${P}.tar.xz
+ extras? (
+ https://downloads.sourceforge.net/${PN}/pasang-emas-themes-1.0.tar.bz2
+ https://downloads.sourceforge.net/${PN}/pet-marble.tar.bz2
+ https://downloads.sourceforge.net/${PN}/pet-fragrance.tar.bz2
+ )"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="extras"
+RESTRICT="test" # only used to validate .xml help files and fetches .dtd for it
+
+RDEPEND="
+ dev-libs/glib:2
+ x11-libs/gtk+:3
+"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-util/itstool"
+
+src_compile(){
+ emake AR="$(tc-getAR)"
+}
+
+src_install() {
+ default
+
+ if use extras; then
+ insinto /usr/share/${PN}/themes
+ doins -r "${WORKDIR}"/{fragrance,marble,pasang-emas-themes-1.0/{conteng,kaca}}
+ fi
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-board/pasang-emas/
@ 2024-07-09 18:56 Pacho Ramos
0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2024-07-09 18:56 UTC (permalink / raw
To: gentoo-commits
commit: e3f9b7a73316c1430d6d82b9fb8f5381468f60ab
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 9 18:48:14 2024 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Jul 9 18:52:45 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3f9b7a7
games-board/pasang-emas: drop 3.1.0-r1
Bug: https://bugs.gentoo.org/929362
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
games-board/pasang-emas/Manifest | 1 -
.../pasang-emas/pasang-emas-3.1.0-r1.ebuild | 77 ----------------------
2 files changed, 78 deletions(-)
diff --git a/games-board/pasang-emas/Manifest b/games-board/pasang-emas/Manifest
index 06e6d2b171eb..a25dc2f3b445 100644
--- a/games-board/pasang-emas/Manifest
+++ b/games-board/pasang-emas/Manifest
@@ -1,4 +1,3 @@
-DIST pasang-emas-3.1.0.tar.bz2 3030528 BLAKE2B c61caf905f17fb51fd58609c8f0ec9fc61c0db0fd75eb65d271db39f7c3e670d651d8ed2134aa165cdfd8358d252b78b7716008c1aa96e2f7e9fed1b6123f06e SHA512 c1f7dc259100e2fe643ac0a5d766dad10435145b3fd76e698335817bc30b7a55a5816df920fc3c86fb7b533661b1dd179b20ad01586be914bb3a9cad9be29a65
DIST pasang-emas-6.3.0.tar.xz 2935180 BLAKE2B 183d8e41ddb1bcf8fca395d300660ab5f369a4a4d9337c987f6db8b2004861f1751a8b52f21634092f4c5f7de1e2d9edd872915fbf0666fbf088058435bd17f7 SHA512 55dce61a0292bc2b410527fbbcad79b1e956912be549b52dafdb0371da12199fadf2822df1b431cf9673c3b52aaa3732e99ddf4866ebd30cb518c4b9ce68e94a
DIST pasang-emas-themes-1.0.tar.bz2 1190560 BLAKE2B a2218920dc601a12c86da15600f8cd09ae434265695d872d706086ab02b9b02e557e8c786789b8089d142b86114adbabfe392f1af290138a95a1d805845582a9 SHA512 8b82ce6ba588b83ed4a0d70d8aab256e2dae16143e64ca8a1fc25ffe61f001cdbc71d62d8eb42d9af4aeb63d6584f47b513b0ce1840d9b9f49d9b1b635eb4043
DIST pet-fragrance.tar.bz2 1019437 BLAKE2B a4408d60c4ea14efab84f10bbce4da0382253f19cd60a82b278ac55c6b9f897a0e2eeef924930b7c8159a02460e3a269dea4254126e2389c84fe0f02cf61c62e SHA512 2af8908848cc20962c70ef573156b208dbc33032529035ae6f0b5760f5eb1b718582dc823340587e29b7e66a2d3c89ba113dedbf299c0bef639f28329ff278f2
diff --git a/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild b/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild
deleted file mode 100644
index 87721db3f1bc..000000000000
--- a/games-board/pasang-emas/pasang-emas-3.1.0-r1.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome2-utils toolchain-funcs
-
-DESCRIPTION="Traditional game of Brunei"
-HOMEPAGE="https://pasang-emas.sourceforge.net/"
-SRC_URI="
- https://downloads.sourceforge.net/${PN}/${P}.tar.bz2
- extras? (
- https://downloads.sourceforge.net/${PN}/pasang-emas-themes-1.0.tar.bz2
- https://downloads.sourceforge.net/${PN}/pet-marble.tar.bz2
- https://downloads.sourceforge.net/${PN}/pet-fragrance.tar.bz2
- )"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="extras nls"
-RESTRICT="test" # only used to validate .xml help files and fetches .dtd for it
-
-RDEPEND="
- app-text/gnome-doc-utils
- x11-libs/gtk+:2
- nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}"
-BDEPEND="
- app-text/rarian
- nls? ( sys-devel/gettext )"
-
-PATCHES=(
- "${FILESDIR}"/${P}-build.patch
-)
-
-src_prepare() {
- default
-
- sed -i '/Encoding/d;/Icon/s:\.png::' data/pasang-emas.desktop.in || die
-
- gnome2_omf_fix
-}
-
-src_configure() {
- local econfargs=(
- $(use_enable nls)
- --with-help-dir="${EPREFIX}"/usr/share/gnome/help
- --with-omf-dir="${EPREFIX}"/usr/share/omf
- )
- econf "${econfargs[@]}"
-}
-
-src_compile(){
- emake AR="$(tc-getAR)"
-}
-
-src_install() {
- default
-
- if use extras; then
- insinto /usr/share/${PN}/themes
- doins -r "${WORKDIR}"/{fragrance,marble,pasang-emas-themes-1.0/{conteng,kaca}}
- fi
-}
-
-pkg_preinst() {
- gnome2_scrollkeeper_savelist
-}
-
-pkg_postinst() {
- gnome2_scrollkeeper_update
-}
-
-pkg_postrm() {
- gnome2_scrollkeeper_update
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-07-09 18:56 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-15 20:02 [gentoo-commits] repo/gentoo:master commit in: games-board/pasang-emas/ Ionen Wolkens
-- strict thread matches above, loose matches on Subject: below --
2024-07-09 18:56 Pacho Ramos
2024-06-16 10:47 Pacho Ramos
2021-06-15 20:02 Ionen Wolkens
2016-08-05 0:23 Austin English
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox