This is the mail archive of the frysk-cvs@sources.redhat.com mailing list for the frysk project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[SCM] master: Add how-to create a nightly snapshot.


The branch, master has been updated
       via  ae621098acf4c97642f8c404eff373a862e3272b (commit)
       via  a8753a32ce14cbfc3971a9cf0d44e7de8d061b1a (commit)
      from  11151441e25127b1b4076cda2fe576a52c1e4749 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit ae621098acf4c97642f8c404eff373a862e3272b
Author: Andrew Cagney <cagney@redhat.com>
Date:   Tue Jan 15 10:39:01 2008 -0500

    Add how-to create a nightly snapshot.

commit a8753a32ce14cbfc3971a9cf0d44e7de8d061b1a
Author: Andrew Cagney <cagney@redhat.com>
Date:   Tue Jan 15 10:36:18 2008 -0500

    Delete empty file.
    
    frysk-sys/lib/dwfl/ChangeLog
    2008-01-14  Andrew Cagney  <cagney@redhat.com>
    
    	* cni/DwAttributeNotFoundException.cxx: Delete.

-----------------------------------------------------------------------

Summary of changes:
 frysk-sys/lib/dwfl/ChangeLog                       |    4 ++
 .../lib/dwfl/cni/DwAttributeNotFoundException.cxx  |   44 --------------------
 htdocs/build/index.html                            |   24 +++++++++-
 3 files changed, 25 insertions(+), 47 deletions(-)
 delete mode 100644 frysk-sys/lib/dwfl/cni/DwAttributeNotFoundException.cxx

First 500 lines of diff:
diff --git a/frysk-sys/lib/dwfl/ChangeLog b/frysk-sys/lib/dwfl/ChangeLog
index 670e841..4da907a 100644
--- a/frysk-sys/lib/dwfl/ChangeLog
+++ b/frysk-sys/lib/dwfl/ChangeLog
@@ -1,3 +1,7 @@
+2008-01-14  Andrew Cagney  <cagney@redhat.com>
+
+	* cni/DwAttributeNotFoundException.cxx: Delete.
+
 2008-01-13  Stan Cox  <scox@redhat.com>
 
 	* Dwfl.java (Dwfl): Add sysroot parameter.  Change all callers.
diff --git a/frysk-sys/lib/dwfl/cni/DwAttributeNotFoundException.cxx b/frysk-sys/lib/dwfl/cni/DwAttributeNotFoundException.cxx
deleted file mode 100644
index 8fee74b..0000000
--- a/frysk-sys/lib/dwfl/cni/DwAttributeNotFoundException.cxx
+++ /dev/null
@@ -1,44 +0,0 @@
-// This file is part of the program FRYSK.
-//
-// Copyright 2005, Red Hat Inc.
-//
-// FRYSK is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by
-// the Free Software Foundation; version 2 of the License.
-//
-// FRYSK is distributed in the hope that it will be useful, but
-// WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-// General Public License for more details.
-// 
-// You should have received a copy of the GNU General Public License
-// along with FRYSK; if not, write to the Free Software Foundation,
-// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
-// 
-// In addition, as a special exception, Red Hat, Inc. gives You the
-// additional right to link the code of FRYSK with code not covered
-// under the GNU General Public License ("Non-GPL Code") and to
-// distribute linked combinations including the two, subject to the
-// limitations in this paragraph. Non-GPL Code permitted under this
-// exception must only link to the code of FRYSK through those well
-// defined interfaces identified in the file named EXCEPTION found in
-// the source code files (the "Approved Interfaces"). The files of
-// Non-GPL Code may instantiate templates or use macros or inline
-// functions from the Approved Interfaces without causing the
-// resulting work to be covered by the GNU General Public
-// License. Only Red Hat, Inc. may make changes or additions to the
-// list of Approved Interfaces. You must obey the GNU General Public
-// License in all respects for all of the FRYSK code and other code
-// used in conjunction with FRYSK except the Non-GPL Code covered by
-// this exception. If you modify this file, you may extend this
-// exception to your version of the file, but you are not obligated to
-// do so. If you do not wish to provide this exception without
-// modification, you must delete this exception statement from your
-// version and license this file solely under the GPL without
-// exception.
-
-#include <libdw.h>
-
-#include <gcj/cni.h>
-
-#include "lib/dwfl/DwAttributeNotFoundException.h"
diff --git a/htdocs/build/index.html b/htdocs/build/index.html
index 6da2c14..bd9a383 100644
--- a/htdocs/build/index.html
+++ b/htdocs/build/index.html
@@ -530,13 +530,31 @@ Comments on how to improve this process appreciated.
 
 <dt>How do I create a tag or a branch at a certain date?</dt>
 <dd>There isn't a direct command for doing this in Git. Instead, you
-  can find the SHA1 hash of the last commit before a date with:
-<p><pre>
-git-rev-list --before=2007-12-14 --pretty=oneline -n1 HEAD
+can find the SHA1 hash of the last commit prior to date with a command
+like:
+<pre>
+git rev-list --before=2008-01-14 --pretty=oneline -n1 HEAD
 </pre>
 and make the branch or tag using the hash.
 </dd>
 
+<dt>How do I create a release snapshot?</dt>
+<dd>This creates a snapshot from midnight last night (GMT):
+<pre>
+date=`date -u +"%Y.%m.%d"`
+echo date=$date 1>&2
+shar1=`git-rev-list --before=$date -n1 HEAD`
+echo shar1=$shar1 1>&2
+version=`cat common/version.in | sed \
+  -e 's/\.[Y0-9][Y0-9][Y0-9][Y0-9]\.[M0-9][M0-9]\.[D0-9][D0-9]$/.'$date'/'`
+echo version=$version 1>&2
+rm -rf frysk-$version
+git archive --prefix=frysk-$version/ $shar1 | tar xpf -
+echo $version > frysk-$version/common/version.in
+tar cfj frysk-$version.tar.bz2 frysk-$version
+</pre>
+</dd>
+
 </dl>
               <!-- end text -->
               <p>&nbsp;</p>


hooks/post-receive
--
frysk system monitor/debugger


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]