[gnome-desktop] [misc] Update AUTHORS, HACKING, README
- From: Vincent Untz <vuntz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-desktop] [misc] Update AUTHORS, HACKING, README
- Date: Wed, 8 Sep 2010 17:29:45 +0000 (UTC)
commit a15287498fb39d850d9ae933fd19834007fd177f
Author: Vincent Untz <vuntz gnome org>
Date: Wed Sep 8 19:22:02 2010 +0200
[misc] Update AUTHORS, HACKING, README
Nothing new, but make sure this is up-to-date.
Also tweak a bit autogen.sh and Makefile.am to make them look similar in
all my modules.
AUTHORS | 11 +++++++++--
HACKING | 42 ++++++++++++++++++++++++++----------------
Makefile.am | 24 +++++++++++++-----------
README | 57 ++++++++++++++++++++++++++++++---------------------------
autogen.sh | 5 +++--
5 files changed, 81 insertions(+), 58 deletions(-)
---
diff --git a/AUTHORS b/AUTHORS
index 44f5b88..940310a 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -5,8 +5,15 @@ Elliot Lee <sopwith redhat com>
George Lebl <jirka 5z com>
John Ellis <johne bellatlantic net>
Havoc Pennington <hp redhat com>
+Vincent Untz <vuntz gnome org>
+Federico Mena Quintero <federico novell com>
-gnome-about authors
--------------------
+new gnome-about authors
+-----------------------
+Guillaume Seguin <guillaume segu in>
+Vincent Untz <vuntz gnome org>
+
+original gnome-about authors
+----------------------------
Anders Carlsson <andersca gnu org>
diff --git a/HACKING b/HACKING
index 778cc72..1c5eb34 100644
--- a/HACKING
+++ b/HACKING
@@ -1,21 +1,31 @@
-Hacking on gnome-desktop:
--------------------------
+Hacking on gnome-desktop
+========================
- * Please send patches to desktop-devel-list gnome org or to
-the people listed in the MAINTAINERS file. Your patch should be in
-unified diff form. (The -u option to GNU diff.)
+ + The development occurs in git:
- * Please try and send a patch against a recent version of this
-package. Patches against CVS HEAD are most preferable. For information
-on how to access GNOME CVS please read:
+ http://git.gnome.org/browse/gnome-desktop
- http://developer.gnome.org/tools/cvs.html
+ For information on how to access GNOME git please read:
- * Don't commit any but the most trivial patches to without
-approval.
+ http://live.gnome.org/Git
- * Exceptions to this are
- + Translators may commit basic i18n related patches to
- the build setup.
- + Build sheriff are welcome - in accordance with the
- relevant build sheriff constraints.
+ + Please send patches as bug reports in GNOME Bugzilla:
+
+ https://bugzilla.gnome.org/ (product gnome-desktop)
+
+ Your patch should be in unified diff form (the -u option to GNU
+ diff). See also:
+
+ http://live.gnome.org/GnomeLove/SubmittingPatches
+
+ + Please try and send a patch against a recent version of this package.
+ Patches against git master are most preferable.
+
+ + Don't commit any but the most trivial patches without approval.
+
+ + Exceptions to this are:
+
+ - Translators may commit basic i18n related patches to the build
+ setup.
+ - Build sheriff are welcome - in accordance with the relevant build
+ sheriff constraints.
diff --git a/Makefile.am b/Makefile.am
index 1ee94b0..14835a7 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,3 @@
-ACLOCAL_AMFLAGS = -I m4
-
SUBDIRS = \
po \
libgnome-desktop \
@@ -13,13 +11,7 @@ if DESKTOP_DOCS_ENABLED
SUBDIRS += desktop-docs
endif
-EXTRA_DIST = \
- MAINTAINERS \
- ChangeLog.pre-git \
- gnome-version.xml.in.in \
- COPYING-DOCS \
- HACKING \
- gnome-doc-utils.make
+ACLOCAL_AMFLAGS = -I m4
if GNOME_ABOUT_ENABLED
versiondir=$(datadir)/gnome-about
@@ -27,11 +19,21 @@ version_DATA=gnome-version.xml
endif
@INTLTOOL_XML_RULE@
+EXTRA_DIST = \
+ COPYING-DOCS \
+ HACKING \
+ MAINTAINERS \
+ ChangeLog.pre-git \
+ gnome-version.xml.in.in \
+ gnome-doc-utils.make
+
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --disable-scrollkeeper
-CLEANFILES = $(version_DATA)
+CLEANFILES = \
+ $(version_DATA)
+
DISTCLEANFILES = \
- gnome-doc-utils.make
+ gnome-doc-utils.make
MAINTAINERCLEANFILES = \
$(srcdir)/aclocal.m4 \
diff --git a/README b/README
index 6010221..d2a1e7a 100644
--- a/README
+++ b/README
@@ -1,44 +1,47 @@
-gnome-desktop 2.90.4
-====================
+gnome-desktop
+=============
- This package is free software and is part of the
-GNOME project.
+gnome-desktop contains the libgnome-desktop library, the gnome-about
+program as well as some desktop-wide documents.
- The package contains the libgnome-desktop library
-which contains APIs that really belong in libgnome[ui] but
-have not seen enough testing or development to be considered
-stable. Use at your own risk.
+The libgnome-desktop library provides API shared by several applications
+on the desktop, but that cannot live in the platform for various
+reasons. There is no API or ABI guarantee, although we are doing our
+best to provide stability. Documentation for the API is available with
+gtk-doc.
- Also contained here are documents installed as part
-of the core GNOME distribution, e.g. a copy of the GPL, the
-gnome-about program, some manpages and GNOME's core graphics
-files and icons.
+The gnome-about program helps find which version of GNOME is installed.
You may download updates to the package from:
- http://ftp.gnome.org/pub/GNOME/sources/gnome-desktop/
-desktop-devel-list gnome org is the relevant mailing list:
- http://mail.gnome.org/mailman/listinfo/desktop-devel-list
+ http://download.gnome.org/sources/gnome-desktop/
+
+To discuss gnome-desktop, you may use the desktop-devel-list mailing
+list:
+
+ http://mail.gnome.org/mailman/listinfo/desktop-devel-list
-To subscribe:
- Send a mail to desktop-devel-list-request gnome org
-with the subject "subscribe".
Installation
============
-See the file 'INSTALL'
+See the file 'INSTALL'. If you are not using a released version of
+gnome-desktop (for example, if you checked out the code from git), you
+first need to run './autogen.sh'.
+
How to report bugs
==================
-Bugs should be reported to the GNOME bug tracking system.
-(http://bugzilla.gnome.org, product gnome-desktop.) You will
-need to create an account for yourself.
+Bugs should be reported to the GNOME bug tracking system:
+
+ https://bugzilla.gnome.org/ (product gnome-desktop)
+
+You will need to create an account for yourself.
+
+Please read the following page on how to prepare a useful bug report:
-Please read the following page on how to prepare a useful
-bug report
- http://bugzilla.gnome.org/bug-HOWTO.html
+ https://bugzilla.gnome.org/page.cgi?id=bug-writing.html
-Please read the HACKING file for information on where to
-send changes or bugfixes for this package.
+Please read the HACKING file for information on where to send changes or
+bugfixes for this package.
diff --git a/autogen.sh b/autogen.sh
index 1e15dfc..787c2fe 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -4,11 +4,12 @@
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
-PKG_NAME="GNOME Desktop Library"
+PKG_NAME="gnome-desktop"
REQUIRED_AUTOMAKE_VERSION=1.9
+REQUIRED_M4MACROS=
(test -f $srcdir/configure.ac \
- && test -d $srcdir/libgnome-desktop) || {
+ && test -f $srcdir/$PKG_NAME.doap) || {
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
echo " top-level $PKG_NAME directory"
exit 1
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]