* [gentoo-commits] proj/vmware:master commit in: scripts/
@ 2015-07-19 16:39 Andreas Hüttel
0 siblings, 0 replies; 2+ messages in thread
From: Andreas Hüttel @ 2015-07-19 16:39 UTC (permalink / raw
To: gentoo-commits
commit: c613cdc12981a57752fa23194313e3731af425af
Author: Andreas K. Huettel (dilfridge) <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 19 16:30:01 2015 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Jul 19 16:30:01 2015 +0000
URL: https://gitweb.gentoo.org/proj/vmware.git/commit/?id=c613cdc1
Add some helper scripts
scripts/copyfrommaintree | 21 +++++++++++++++++++++
scripts/copytomaintree | 21 +++++++++++++++++++++
2 files changed, 42 insertions(+)
diff --git a/scripts/copyfrommaintree b/scripts/copyfrommaintree
new file mode 100755
index 0000000..95fa7b6
--- /dev/null
+++ b/scripts/copyfrommaintree
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+[[ -f ${HOME}/.vmwareoverlayrc ]] && source ${HOME}/.vmwareoverlayrc
+
+CVS_PATH="${CVS_PATH:-${HOME}/Gentoo/gentoo-x86}"
+OVERLAY_PATH="${OVERLAY_PATH:-${HOME}/Gentoo/vmware}"
+
+echo cd "${OVERLAY_PATH}"
+cd "${OVERLAY_PATH}"
+
+for name in $(
+ find . -type f |
+ grep -v '/Manifest$' |
+ grep -v '/ChangeLog' |
+ grep -v '^\./\.git' |
+ grep -v '^\./profiles' |
+ grep -v '^\./metadata' |
+ grep -v '^\./scripts' ) ;
+do
+ cp -v "${CVS_PATH}/${name#./}" "${name}"
+done
diff --git a/scripts/copytomaintree b/scripts/copytomaintree
new file mode 100755
index 0000000..a30a49e
--- /dev/null
+++ b/scripts/copytomaintree
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+[[ -f ${HOME}/.vmwareoverlayrc ]] && source ${HOME}/.vmwareoverlayrc
+
+CVS_PATH="${CVS_PATH:-${HOME}/Gentoo/gentoo-x86}"
+OVERLAY_PATH="${OVERLAY_PATH:-${HOME}/Gentoo/vmware}"
+
+echo cd "${OVERLAY_PATH}"
+cd "${OVERLAY_PATH}"
+
+for name in $(
+ find . -type f |
+ grep -v '/Manifest$' |
+ grep -v '/ChangeLog' |
+ grep -v '^\./\.git' |
+ grep -v '^\./profiles' |
+ grep -v '^\./metadata' |
+ grep -v '^\./scripts' ) ;
+do
+ cp -v "$name" "${CVS_PATH}/${name#./}"
+done
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] proj/vmware:master commit in: scripts/
@ 2015-09-08 19:47 Andreas Hüttel
0 siblings, 0 replies; 2+ messages in thread
From: Andreas Hüttel @ 2015-09-08 19:47 UTC (permalink / raw
To: gentoo-commits
commit: 093a3d4e59249898354e1326569dcfa1c8601598
Author: Andreas K. Huettel (dilfridge) <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 8 19:47:06 2015 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue Sep 8 19:47:06 2015 +0000
URL: https://gitweb.gentoo.org/proj/vmware.git/commit/?id=093a3d4e
Fix local checkoutpath
scripts/copyfrommaintree | 2 +-
scripts/copytomaintree | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/copyfrommaintree b/scripts/copyfrommaintree
index 95fa7b6..d1b1d53 100755
--- a/scripts/copyfrommaintree
+++ b/scripts/copyfrommaintree
@@ -2,7 +2,7 @@
[[ -f ${HOME}/.vmwareoverlayrc ]] && source ${HOME}/.vmwareoverlayrc
-CVS_PATH="${CVS_PATH:-${HOME}/Gentoo/gentoo-x86}"
+CVS_PATH="${CVS_PATH:-${HOME}/Gentoo/gentoo}"
OVERLAY_PATH="${OVERLAY_PATH:-${HOME}/Gentoo/vmware}"
echo cd "${OVERLAY_PATH}"
diff --git a/scripts/copytomaintree b/scripts/copytomaintree
index a30a49e..68ab00f 100755
--- a/scripts/copytomaintree
+++ b/scripts/copytomaintree
@@ -2,7 +2,7 @@
[[ -f ${HOME}/.vmwareoverlayrc ]] && source ${HOME}/.vmwareoverlayrc
-CVS_PATH="${CVS_PATH:-${HOME}/Gentoo/gentoo-x86}"
+CVS_PATH="${CVS_PATH:-${HOME}/Gentoo/gentoo}"
OVERLAY_PATH="${OVERLAY_PATH:-${HOME}/Gentoo/vmware}"
echo cd "${OVERLAY_PATH}"
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-09-08 19:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-19 16:39 [gentoo-commits] proj/vmware:master commit in: scripts/ Andreas Hüttel
-- strict thread matches above, loose matches on Subject: below --
2015-09-08 19:47 Andreas Hüttel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox