* [gentoo-commits] gentoo-x86 commit in dev-cpp/gtest: gtest-1.7.0.ebuild ChangeLog
@ 2013-11-06 9:57 Thomas Kahle (tomka)
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Kahle (tomka) @ 2013-11-06 9:57 UTC (permalink / raw
To: gentoo-commits
tomka 13/11/06 09:57:53
Modified: ChangeLog
Added: gtest-1.7.0.ebuild
Log:
bump to 1.7.0
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x89DEB219565C32BC!)
Revision Changes Path
1.35 dev-cpp/gtest/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?r1=1.34&r2=1.35
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog 19 Oct 2013 01:54:42 -0000 1.34
+++ ChangeLog 6 Nov 2013 09:57:53 -0000 1.35
@@ -1,5 +1,10 @@
# ChangeLog for dev-cpp/gtest
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v 1.34 2013/10/19 01:54:42 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v 1.35 2013/11/06 09:57:53 tomka Exp $
+
+*gtest-1.7.0 (06 Nov 2013)
+
+ 06 Nov 2013; Thomas Kahle <tomka@gentoo.org> +gtest-1.7.0.ebuild:
+ bump to 1.7.0
19 Oct 2013; Mike Frysinger <vapier@gentoo.org> gtest-1.6.0-r2.ebuild:
Add m68k keywords.
1.1 dev-cpp/gtest/gtest-1.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?rev=1.1&content-type=text/plain
Index: gtest-1.7.0.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v 1.1 2013/11/06 09:57:53 tomka Exp $
EAPI="5"
# Python is required for tests and some build tasks.
PYTHON_COMPAT=( python{2_6,2_7} )
inherit eutils python-any-r1 autotools-multilib
DESCRIPTION="Google C++ Testing Framework"
HOMEPAGE="http://code.google.com/p/googletest/"
SRC_URI="http://googletest.googlecode.com/files/${P}.zip"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="examples static-libs"
DEPEND="app-arch/unzip
${PYTHON_DEPS}"
RDEPEND=""
PATCHES=(
"${FILESDIR}/configure-fix-pthread-linking.patch" #371647
)
AUTOTOOLS_AUTORECONF="1"
src_prepare() {
sed -i -e "s|/tmp|${T}|g" test/gtest-filepath_test.cc || die
sed -i -r \
-e '/^install-(data|exec)-local:/s|^.*$|&\ndisabled-&|' \
Makefile.am || die
autotools-multilib_src_prepare
multilib_copy_sources
}
src_configure() {
multilib_parallel_foreach_abi gtest_src_configure
}
src_install() {
autotools-multilib_src_install
multilib_for_best_abi gtest-config_install
if use examples ; then
insinto /usr/share/doc/${PF}/examples
doins samples/*.{cc,h}
fi
}
gtest_src_configure() {
ECONF_SOURCE="${BUILD_DIR}"
autotools-utils_src_configure
}
gtest-config_install() {
dobin "${BUILD_DIR}/scripts/gtest-config"
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-cpp/gtest: gtest-1.7.0.ebuild ChangeLog
@ 2014-04-30 14:36 Michal Gorny (mgorny)
0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2014-04-30 14:36 UTC (permalink / raw
To: gentoo-commits
mgorny 14/04/30 14:36:24
Modified: gtest-1.7.0.ebuild ChangeLog
Log:
Simplify multilib code. Set proper flags for autotools-multilib.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path
1.2 dev-cpp/gtest/gtest-1.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?r1=1.1&r2=1.2
Index: gtest-1.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gtest-1.7.0.ebuild 6 Nov 2013 09:57:53 -0000 1.1
+++ gtest-1.7.0.ebuild 30 Apr 2014 14:36:24 -0000 1.2
@@ -1,9 +1,11 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v 1.1 2013/11/06 09:57:53 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v 1.2 2014/04/30 14:36:24 mgorny Exp $
EAPI="5"
+AUTOTOOLS_AUTORECONF=1
+AUTOTOOLS_IN_SOURCE_BUILD=1
# Python is required for tests and some build tasks.
PYTHON_COMPAT=( python{2_6,2_7} )
@@ -26,37 +28,25 @@
"${FILESDIR}/configure-fix-pthread-linking.patch" #371647
)
-AUTOTOOLS_AUTORECONF="1"
-
src_prepare() {
sed -i -e "s|/tmp|${T}|g" test/gtest-filepath_test.cc || die
sed -i -r \
-e '/^install-(data|exec)-local:/s|^.*$|&\ndisabled-&|' \
Makefile.am || die
autotools-multilib_src_prepare
-
- multilib_copy_sources
}
-src_configure() {
- multilib_parallel_foreach_abi gtest_src_configure
+multilib_src_install() {
+ default
+ multilib_is_native_abi && dobin scripts/gtest-config
}
-src_install() {
- autotools-multilib_src_install
- multilib_for_best_abi gtest-config_install
+multilib_src_install_all() {
+ prune_libtool_files --all
+ einstalldocs
if use examples ; then
insinto /usr/share/doc/${PF}/examples
doins samples/*.{cc,h}
fi
}
-
-gtest_src_configure() {
- ECONF_SOURCE="${BUILD_DIR}"
- autotools-utils_src_configure
-}
-
-gtest-config_install() {
- dobin "${BUILD_DIR}/scripts/gtest-config"
-}
1.36 dev-cpp/gtest/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?r1=1.35&r2=1.36
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog 6 Nov 2013 09:57:53 -0000 1.35
+++ ChangeLog 30 Apr 2014 14:36:24 -0000 1.36
@@ -1,5 +1,8 @@
# ChangeLog for dev-cpp/gtest
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v 1.35 2013/11/06 09:57:53 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v 1.36 2014/04/30 14:36:24 mgorny Exp $
+
+ 30 Apr 2014; Michał Górny <mgorny@gentoo.org> gtest-1.7.0.ebuild:
+ Simplify multilib code. Set proper flags for autotools-multilib.
*gtest-1.7.0 (06 Nov 2013)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-cpp/gtest: gtest-1.7.0.ebuild ChangeLog
@ 2014-07-19 7:27 Pacho Ramos (pacho)
0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2014-07-19 7:27 UTC (permalink / raw
To: gentoo-commits
pacho 14/07/19 07:27:53
Modified: gtest-1.7.0.ebuild ChangeLog
Log:
amd64/x86 stable, bug #513804
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path
1.5 dev-cpp/gtest/gtest-1.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?r1=1.4&r2=1.5
Index: gtest-1.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gtest-1.7.0.ebuild 29 Jun 2014 18:56:44 -0000 1.4
+++ gtest-1.7.0.ebuild 19 Jul 2014 07:27:53 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v 1.4 2014/06/29 18:56:44 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v 1.5 2014/07/19 07:27:53 pacho Exp $
EAPI="5"
@@ -17,7 +17,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="examples static-libs"
DEPEND="app-arch/unzip
1.39 dev-cpp/gtest/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?r1=1.38&r2=1.39
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog 29 Jun 2014 18:56:44 -0000 1.38
+++ ChangeLog 19 Jul 2014 07:27:53 -0000 1.39
@@ -1,5 +1,8 @@
# ChangeLog for dev-cpp/gtest
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v 1.38 2014/06/29 18:56:44 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v 1.39 2014/07/19 07:27:53 pacho Exp $
+
+ 19 Jul 2014; Pacho Ramos <pacho@gentoo.org> gtest-1.7.0.ebuild:
+ amd64/x86 stable, bug #513804
29 Jun 2014; Markus Meier <maekke@gentoo.org> gtest-1.7.0.ebuild:
arm stable, bug #513804
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-cpp/gtest: gtest-1.7.0.ebuild ChangeLog
@ 2014-11-19 11:33 Agostino Sarubbo (ago)
0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-11-19 11:33 UTC (permalink / raw
To: gentoo-commits
ago 14/11/19 11:33:11
Modified: gtest-1.7.0.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #529822
(Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.7 dev-cpp/gtest/gtest-1.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?r1=1.6&r2=1.7
Index: gtest-1.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- gtest-1.7.0.ebuild 21 Aug 2014 11:29:34 -0000 1.6
+++ gtest-1.7.0.ebuild 19 Nov 2014 11:33:11 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v 1.6 2014/08/21 11:29:34 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v 1.7 2014/11/19 11:33:11 ago Exp $
EAPI="5"
@@ -17,7 +17,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="examples static-libs"
DEPEND="app-arch/unzip
1.41 dev-cpp/gtest/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?r1=1.40&r2=1.41
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog 21 Aug 2014 11:29:34 -0000 1.40
+++ ChangeLog 19 Nov 2014 11:33:11 -0000 1.41
@@ -1,5 +1,8 @@
# ChangeLog for dev-cpp/gtest
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v 1.40 2014/08/21 11:29:34 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v 1.41 2014/11/19 11:33:11 ago Exp $
+
+ 19 Nov 2014; Agostino Sarubbo <ago@gentoo.org> gtest-1.7.0.ebuild:
+ Stable for ppc64, wrt bug #529822
21 Aug 2014; Raúl Porcel <armin76@gentoo.org> gtest-1.7.0.ebuild:
alpha/ia64/sparc stable wrt bug #513804
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-cpp/gtest: gtest-1.7.0.ebuild ChangeLog
@ 2015-07-22 6:17 Mike Frysinger (vapier)
0 siblings, 0 replies; 5+ messages in thread
From: Mike Frysinger (vapier) @ 2015-07-22 6:17 UTC (permalink / raw
To: gentoo-commits
vapier 15/07/22 06:17:27
Modified: gtest-1.7.0.ebuild ChangeLog
Log:
Mark arm64/m68k/s390/sh stable.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path
1.10 dev-cpp/gtest/gtest-1.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild?r1=1.9&r2=1.10
Index: gtest-1.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gtest-1.7.0.ebuild 21 Apr 2015 19:04:11 -0000 1.9
+++ gtest-1.7.0.ebuild 22 Jul 2015 06:17:27 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v 1.9 2015/04/21 19:04:11 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.7.0.ebuild,v 1.10 2015/07/22 06:17:27 vapier Exp $
EAPI="5"
@@ -17,7 +17,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="examples static-libs"
DEPEND="app-arch/unzip
1.44 dev-cpp/gtest/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtest/ChangeLog?r1=1.43&r2=1.44
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog 21 Apr 2015 19:04:11 -0000 1.43
+++ ChangeLog 22 Jul 2015 06:17:27 -0000 1.44
@@ -1,5 +1,8 @@
# ChangeLog for dev-cpp/gtest
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v 1.43 2015/04/21 19:04:11 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v 1.44 2015/07/22 06:17:27 vapier Exp $
+
+ 22 Jul 2015; Mike Frysinger <vapier@gentoo.org> gtest-1.7.0.ebuild:
+ Mark arm64/m68k/s390/sh stable.
21 Apr 2015; Pacho Ramos <pacho@gentoo.org> gtest-1.7.0.ebuild:
ppc stable wrt bug #525970
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-07-22 6:17 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-06 9:57 [gentoo-commits] gentoo-x86 commit in dev-cpp/gtest: gtest-1.7.0.ebuild ChangeLog Thomas Kahle (tomka)
-- strict thread matches above, loose matches on Subject: below --
2014-04-30 14:36 Michal Gorny (mgorny)
2014-07-19 7:27 Pacho Ramos (pacho)
2014-11-19 11:33 Agostino Sarubbo (ago)
2015-07-22 6:17 Mike Frysinger (vapier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox