.gitignore | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++------ Makefile.am | 14 +++++----- README | 30 ++++++++++++++++++++++ configure.ac | 14 ++++------ 4 files changed, 115 insertions(+), 23 deletions(-)
New commits: commit 75b7c5feed818291c8ba8ac1ee5b6a6ee4b61851 Author: Alan Coopersmith <[email protected]> Date: Fri Oct 29 23:12:30 2010 -0700 randrproto 1.3.2 Signed-off-by: Alan Coopersmith <[email protected]> diff --git a/configure.ac b/configure.ac index e876c44..4ef4bb6 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,8 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ([2.60]) -AC_INIT([RandrProto], [1.3.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) +AC_INIT([RandrProto], [1.3.2], + [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE commit 6ecbca5e882907e9b948d5fc09b7dacc288eae6d Author: Gaetan Nadon <[email protected]> Date: Sun Mar 28 19:00:31 2010 -0400 config: remove the pkgconfig pc.in file from EXTRA_DIST Automake always includes it in the tarball. Signed-off-by: Gaetan Nadon <[email protected]> diff --git a/Makefile.am b/Makefile.am index 5a1ce11..aede4e9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,7 +8,6 @@ pkgconfig_DATA = randrproto.pc dist_doc_DATA = randrproto.txt -EXTRA_DIST = randrproto.pc.in MAINTAINERCLEANFILES = ChangeLog INSTALL commit 68f8fbe50792e0525ba767d854b18db4acda07ff Author: Rémi Cardona <[email protected]> Date: Thu Dec 17 08:36:49 2009 +0100 Use $(docdir) for randrproto.txt install path Signed-off-by: Rémi Cardona <[email protected]> Reviewed-by: Gaetan Nadon <[email protected]> Reviewed-by: Alan Coopersmith <[email protected]> Reviewed-by: Dan Nicholson <[email protected]> diff --git a/Makefile.am b/Makefile.am index e4bf141..5a1ce11 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,10 +6,9 @@ randr_HEADERS = \ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = randrproto.pc -randrdocdir = $(datadir)/doc/$(PACKAGE) -randrdoc_DATA = randrproto.txt +dist_doc_DATA = randrproto.txt -EXTRA_DIST = randrproto.pc.in $(randrdoc_DATA) +EXTRA_DIST = randrproto.pc.in MAINTAINERCLEANFILES = ChangeLog INSTALL diff --git a/configure.ac b/configure.ac index ec7812f..e876c44 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ dnl PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. -AC_PREREQ([2.57]) +AC_PREREQ([2.60]) AC_INIT([RandrProto], [1.3.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE commit cfec02addb9475f5247c69454ccea87d0914cce1 Author: Gaetan Nadon <[email protected]> Date: Sun Nov 22 19:24:48 2009 -0500 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES Now that the INSTALL file is generated. Allows running make maintainer-clean. diff --git a/Makefile.am b/Makefile.am index 493a29b..e4bf141 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,6 +11,8 @@ randrdoc_DATA = randrproto.txt EXTRA_DIST = randrproto.pc.in $(randrdoc_DATA) +MAINTAINERCLEANFILES = ChangeLog INSTALL + .PHONY: ChangeLog INSTALL INSTALL: commit 61f1a0417839a19654cb54a5e77c8569b05691bc Author: Gaetan Nadon <[email protected]> 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 <[email protected]> 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 <[email protected]> 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 <[email protected]> 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 <[email protected]> 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 <[email protected]> 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' +# -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

