proto/randrproto: Branch 'master' - 6 commits

Gaetan Nadon gnadon at kemper.freedesktop.org
Mon Nov 16 14:35:12 PST 2009


 .gitignore   |   80 +++++++++++++++++++++++++++++++++++++++++++++++++++++------
 Makefile.am  |    8 ++---
 README       |   30 ++++++++++++++++++++++
 configure.ac |    9 ++----
 4 files changed, 109 insertions(+), 18 deletions(-)

New commits:
commit 61f1a0417839a19654cb54a5e77c8569b05691bc
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Mon Nov 16 11:13:30 2009 -0500

    README: file created or updated #24206
    
    Contains a set of URLs to freedesktop.org.

diff --git a/README b/README
new file mode 100644
index 0000000..478d23d
--- /dev/null
+++ b/README
@@ -0,0 +1,30 @@
+			X Resize and Rotate Extension (RandR)
+
+This extension defines a protocol for clients to dynamically change X screens,
+so as to resize, rotate and reflect the root window of a screen. 	
+
+Extension name: RANDR
+
+All questions regarding this software should be directed at the
+Xorg mailing list:
+
+        http://lists.freedesktop.org/mailman/listinfo/xorg
+
+Please submit bug reports to the Xorg bugzilla:
+
+        https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
+
+The master development code repository can be found at:
+
+        git://anongit.freedesktop.org/git/xorg/proto/randrproto
+
+        http://cgit.freedesktop.org/xorg/proto/randrproto
+
+For patch submission instructions, see:
+
+	http://www.x.org/wiki/Development/Documentation/SubmittingPatches
+
+For more information on the git code manager, see:
+
+        http://wiki.x.org/wiki/GitPage
+
commit e9aa167bcbd86a55f41ce85f7908a3a529f64181
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sun Nov 15 19:45:27 2009 -0500

    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
    
    ChangeLog filename is known to Automake and requires no further
    coding in the makefile.

diff --git a/Makefile.am b/Makefile.am
index 61374d9..493a29b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -11,9 +11,6 @@ randrdoc_DATA = randrproto.txt
 
 EXTRA_DIST = randrproto.pc.in $(randrdoc_DATA)
 
-EXTRA_DIST += ChangeLog
-MAINTAINERCLEANFILES = ChangeLog
-
 .PHONY: ChangeLog INSTALL
 
 INSTALL:
commit b0efbc5f88db9805fcc603a939544dae715877d5
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sun Nov 15 18:31:29 2009 -0500

    Makefile.am: INSTALL file is missing or incorrect #24206
    
    The standard GNU file on building/installing  tarball is copied
    using the XORG_INSTALL macro contained in XORG_DEFAULT_OPTIONS
    Add INSTALL target

diff --git a/Makefile.am b/Makefile.am
index ec0cf19..61374d9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -14,9 +14,12 @@ EXTRA_DIST = randrproto.pc.in $(randrdoc_DATA)
 EXTRA_DIST += ChangeLog
 MAINTAINERCLEANFILES = ChangeLog
 
-.PHONY: ChangeLog
+.PHONY: ChangeLog INSTALL
+
+INSTALL:
+	$(INSTALL_CMD)
 
 ChangeLog:
 	$(CHANGELOG_CMD)
 
-dist-hook: ChangeLog
+dist-hook: ChangeLog INSTALL
commit 2c4b4950e7ef98d83a93672cdc55e4c86fdcf296
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sun Nov 15 18:11:36 2009 -0500

    configure.ac: deploy the new XORG_DEFAULT_OPTIONS #24242
    
    This macro aggregate a number of existing macros that sets commmon
    X.Org components configuration options. It shields the configuration file from
    future changes.

diff --git a/configure.ac b/configure.ac
index a8b4fa4..ec7812f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -27,12 +27,10 @@ AM_INIT_AUTOMAKE([foreign dist-bzip2])
 AM_MAINTAINER_MODE
 
 # Require xorg-macros: XORG_DEFAULT_OPTIONS
-m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.3 or later before running autoconf/autogen])])
+m4_ifndef([XORG_MACROS_VERSION],
+          [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])])
 XORG_MACROS_VERSION(1.3)
-
 XORG_DEFAULT_OPTIONS
 
-XORG_CHANGELOG
-
 AC_OUTPUT([Makefile
            randrproto.pc])
commit 1b53cedb70a020ef99740bd8239f8a8304e53c33
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sun Nov 15 13:55:25 2009 -0500

    configure.ac: AM_MAINTAINER_MODE missing #24238
    
    This turns off maintainer mode build rules in tarballs.
    Works in conjunction with autogen.sh --enable-maintainer-mode

diff --git a/configure.ac b/configure.ac
index 5cfa3ec..a8b4fa4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,8 +24,7 @@ dnl Process this file with autoconf to create configure.
 AC_PREREQ([2.57])
 AC_INIT([RandrProto], [1.3.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
 AM_INIT_AUTOMAKE([foreign dist-bzip2])
-
-# Require xorg-macros: XORG_CHANGELOG
+AM_MAINTAINER_MODE
 
 # Require xorg-macros: XORG_DEFAULT_OPTIONS
 m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.3 or later before running autoconf/autogen])])
commit e860c1bc4bc0e33560d4c34cadd206c7b6350c73
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sat Nov 14 18:26:47 2009 -0500

    .gitignore: use common defaults with custom section # 24239
    
    Using common defaults will reduce errors and maintenance.
    Only the very small or inexistent custom section need periodic maintenance
    when the structure of the component changes. Do not edit defaults.

diff --git a/.gitignore b/.gitignore
index 2468418..d136c66 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,14 +1,78 @@
-*~
-Makefile
-Makefile.in
+#
+#		X.Org module default exclusion patterns
+#		The next section if for module specific patterns
+#
+#	Do not edit the following section
+# 	GNU Build System (Autotools)
 aclocal.m4
-autom4te.cache
+autom4te.cache/
+autoscan.log
+ChangeLog
+compile
+config.guess
+config.h
+config.h.in
 config.log
+config-ml.in
+config.py
 config.status
+config.status.lineno
+config.sub
 configure
+configure.scan
+depcomp
+.deps/
+INSTALL
 install-sh
+.libs/
+libtool
+libtool.m4
+ltmain.sh
+lt~obsolete.m4
+ltoptions.m4
+ltsugar.m4
+ltversion.m4
+Makefile
+Makefile.in
+mdate-sh
 missing
-randrproto.pc
-randrproto-*.tar.*
-ChangeLog
-tags
+mkinstalldirs
+*.pc
+py-compile
+stamp-h?
+symlink-tree
+texinfo.tex
+ylwrap
+
+#	Do not edit the following section
+# 	Edit Compile Debug Document Distribute
+*~
+*.[0-9]
+*.[0-9]x
+*.bak
+*.bin
+core
+*.dll
+*.exe
+*-ISO*.bdf
+*-JIS*.bdf
+*-KOI8*.bdf
+*.kld
+*.ko
+*.ko.cmd
+*.lai
+*.l[oa]
+*.[oa]
+*.obj
+*.patch
+*.so
+*.pcf.gz
+*.pdb
+*.tar.bz2
+*.tar.gz
+#
+#		Add & Override patterns for randrproto 
+#
+#		Edit the following section as needed
+# For example, !report.pc overrides *.pc. See 'man gitignore'
+# 


More information about the xorg-commit mailing list