public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] dev/fordfrog:master commit in: scripts/netbeans/
@ 2011-03-11 23:16 Miroslav Šulc
  0 siblings, 0 replies; 5+ messages in thread
From: Miroslav Šulc @ 2011-03-11 23:16 UTC (permalink / raw
  To: gentoo-commits

commit:     25c1c7c7801a8e0b2f4152e71db04aa57387a75e
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 11 23:16:22 2011 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Mar 11 23:16:22 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/fordfrog.git;a=commit;h=25c1c7c7

updated netbeans script to catch only netbeans ebuilds

---
 scripts/netbeans/create_new_release.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/netbeans/create_new_release.sh b/scripts/netbeans/create_new_release.sh
index 4a291f0..d6a145e 100755
--- a/scripts/netbeans/create_new_release.sh
+++ b/scripts/netbeans/create_new_release.sh
@@ -11,7 +11,7 @@ fi
 
 pushd $(dirname $(dirname $(dirname $(readlink -f ${0})))) >/dev/null || exit 1
 
-for file in */*/*${OLD}*.ebuild ; do
+for file in */*netbeans*/*${OLD}*.ebuild ; do
 	cp ${file} $(echo ${file} | sed "s/${OLD}/${NEW}/" | sed -E "s/-r[[:digit:]]+//") || exit 1
 done
 



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] dev/fordfrog:master commit in: scripts/netbeans/
@ 2011-03-18 13:26 Miroslav Šulc
  0 siblings, 0 replies; 5+ messages in thread
From: Miroslav Šulc @ 2011-03-18 13:26 UTC (permalink / raw
  To: gentoo-commits

commit:     91362ea86163fae9e482ff556e2c66e8443343a2
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 18 13:25:38 2011 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Mar 18 13:25:38 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/fordfrog.git;a=commit;h=91362ea8

added netbeans script for checking changes in binary dependencies

---
 scripts/netbeans/check_binary_lists.sh |   34 ++++++++++++++++++++++++++++++++
 1 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/scripts/netbeans/check_binary_lists.sh b/scripts/netbeans/check_binary_lists.sh
new file mode 100755
index 0000000..2706e2a
--- /dev/null
+++ b/scripts/netbeans/check_binary_lists.sh
@@ -0,0 +1,34 @@
+#!/bin/bash
+
+OLD_DIR="${1}"
+NEW_DIR="${2}"
+
+if [[ -z "${OLD_DIR}" ]] || [[ -z "${NEW_DIR}" ]]; then
+	echo "Usage: <old_dir> <new_dir>"
+	exit 1
+fi
+
+if [ ! -d "${OLD_DIR}" ] ; then
+	echo "ERROR: old_dir does not exist or is not directory!"
+	exit 1
+fi
+
+if [ ! -d "${NEW_DIR}" ] ; then
+	echo "ERROR: new_dir does not exist or is not directory!"
+	exit 1
+fi
+
+pushd "${NEW_DIR}"
+
+for file in `ls */external/binaries-list`; do
+	RESULT=`diff "${OLD_DIR}"/$file $file`
+
+	if [ -n "${RESULT}" ] ; then
+		echo "${file}"
+		echo ${RESULT}
+	fi
+done
+
+popd
+
+echo "DONE."



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] dev/fordfrog:master commit in: scripts/netbeans/
@ 2011-05-20 10:09 Miroslav Šulc
  0 siblings, 0 replies; 5+ messages in thread
From: Miroslav Šulc @ 2011-05-20 10:09 UTC (permalink / raw
  To: gentoo-commits

commit:     6861f7773b2772931f5de6d82108ea0408cd253c
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri May 20 10:08:20 2011 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri May 20 10:08:20 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/fordfrog.git;a=commit;h=6861f777

netbeans scripts: improved output

---
 scripts/netbeans/check_binary_lists.sh |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/netbeans/check_binary_lists.sh b/scripts/netbeans/check_binary_lists.sh
index 2706e2a..a77f530 100755
--- a/scripts/netbeans/check_binary_lists.sh
+++ b/scripts/netbeans/check_binary_lists.sh
@@ -18,17 +18,17 @@ if [ ! -d "${NEW_DIR}" ] ; then
 	exit 1
 fi
 
-pushd "${NEW_DIR}"
+pushd "${NEW_DIR}" >> /dev/null
 
 for file in `ls */external/binaries-list`; do
 	RESULT=`diff "${OLD_DIR}"/$file $file`
 
 	if [ -n "${RESULT}" ] ; then
 		echo "${file}"
-		echo ${RESULT}
+		diff "${OLD_DIR}"/$file $file
 	fi
 done
 
-popd
+popd >> /dev/null
 
 echo "DONE."



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] dev/fordfrog:master commit in: scripts/netbeans/
@ 2011-06-27  9:48 Miroslav Šulc
  0 siblings, 0 replies; 5+ messages in thread
From: Miroslav Šulc @ 2011-06-27  9:48 UTC (permalink / raw
  To: gentoo-commits

commit:     6f0ba98c8dbe1e1181c78aeb5b228c7af987fe5b
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 27 09:48:27 2011 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Jun 27 09:48:27 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/fordfrog.git;a=commit;h=6f0ba98c

netbeans: added script for batch update of changelogs

---
 scripts/netbeans/update_changelog.sh |   19 +++++++++++++++++++
 1 files changed, 19 insertions(+), 0 deletions(-)

diff --git a/scripts/netbeans/update_changelog.sh b/scripts/netbeans/update_changelog.sh
new file mode 100755
index 0000000..f304fa1
--- /dev/null
+++ b/scripts/netbeans/update_changelog.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+DIR=${1}
+MESSAGE=${2}
+
+if [[ -z "${DIR}" ]] || [[ -z "${MESSAGE}" ]] ; then
+	echo "Usage: <repo_root_directory> <message>"
+	exit 1
+fi
+
+pushd "${1}" >/dev/null || exit 1
+for dir in dev-*/netbeans*; do
+	pushd "${dir}"
+	echangelog "${MESSAGE}"
+	ebuild `ls *.ebuild | tail -n1` digest
+	popd
+done
+popd >/dev/null || exit 1
+
+echo "DONE!"



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] dev/fordfrog:master commit in: scripts/netbeans/
@ 2012-04-26 21:44 Miroslav Šulc
  0 siblings, 0 replies; 5+ messages in thread
From: Miroslav Šulc @ 2012-04-26 21:44 UTC (permalink / raw
  To: gentoo-commits

commit:     13c3ea5a779c893f1f4de52f7901fbca0c2fc0ad
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 26 21:43:59 2012 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Thu Apr 26 21:43:59 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/fordfrog.git;a=commit;h=13c3ea5a

added netbeans helper script for copying of ebuilds to the main tree

---
 scripts/netbeans/copy_to_tree.sh |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/scripts/netbeans/copy_to_tree.sh b/scripts/netbeans/copy_to_tree.sh
new file mode 100755
index 0000000..26162cc
--- /dev/null
+++ b/scripts/netbeans/copy_to_tree.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+ROOT=$(dirname $(dirname $(dirname $(readlink -f ${0}))))
+TREE=${1}
+VERSION=${2}
+MESSAGE=${3}
+
+if [ -z "${TREE}" -o -z "${VERSION}" -o -z "${MESSAGE}" ]; then
+	echo "Usage: ${0} <tree> <version> <message>"
+	exit 1
+fi
+
+pushd ${ROOT} &> /dev/null
+
+for file in */*/*${VERSION}*.ebuild; do
+	cp ${file} ${TREE}${file}
+	pushd ${TREE}$(dirname ${file}) &> /dev/null
+	cvs add $(basename ${file})
+	echangelog "${MESSAGE}"
+	ebuild $(basename ${file}) manifest
+	popd &> /dev/null
+done
+
+popd &> /dev/null



^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-04-26 21:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-20 10:09 [gentoo-commits] dev/fordfrog:master commit in: scripts/netbeans/ Miroslav Šulc
  -- strict thread matches above, loose matches on Subject: below --
2012-04-26 21:44 Miroslav Šulc
2011-06-27  9:48 Miroslav Šulc
2011-03-18 13:26 Miroslav Šulc
2011-03-11 23:16 Miroslav Šulc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox