Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Jesper Baekdahl <jbb@gamblify.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 010/120] xproto_printproto: removed in X11R7.7
Date: Mon, 18 Mar 2013 13:52:50 +0100	[thread overview]
Message-ID: <1363611219-26971-11-git-send-email-jbb@gamblify.com> (raw)
In-Reply-To: <1363611219-26971-1-git-send-email-jbb@gamblify.com>

From: Will Wagner <will_wagner@carallon.com>

Signed-off-by: Will Wagner <will_wagner@carallon.com>
Signed-off-by: Jesper Baekdahl <jbb@gamblify.com>
---
 package/x11r7/Config.in                              |    1 -
 package/x11r7/xapp_xdpyinfo/Config.in                |    1 -
 package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk         |    2 +-
 package/x11r7/xproto_printproto/Config.in            |    4 ----
 package/x11r7/xproto_printproto/xproto_printproto.mk |   13 -------------
 5 files changed, 1 insertion(+), 20 deletions(-)
 delete mode 100644 package/x11r7/xproto_printproto/Config.in
 delete mode 100644 package/x11r7/xproto_printproto/xproto_printproto.mk

diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
index 10ed29c..6ef9cfe 100644
--- a/package/x11r7/Config.in
+++ b/package/x11r7/Config.in
@@ -233,7 +233,6 @@ if BR2_PACKAGE_XORG7
 		source package/x11r7/xproto_glproto/Config.in
 		source package/x11r7/xproto_inputproto/Config.in
 		source package/x11r7/xproto_kbproto/Config.in
-		source package/x11r7/xproto_printproto/Config.in
 		source package/x11r7/xproto_randrproto/Config.in
 		source package/x11r7/xproto_recordproto/Config.in
 		source package/x11r7/xproto_renderproto/Config.in
diff --git a/package/x11r7/xapp_xdpyinfo/Config.in b/package/x11r7/xapp_xdpyinfo/Config.in
index 9b19ad3..261a63f 100644
--- a/package/x11r7/xapp_xdpyinfo/Config.in
+++ b/package/x11r7/xapp_xdpyinfo/Config.in
@@ -9,7 +9,6 @@ config BR2_PACKAGE_XAPP_XDPYINFO
 	select BR2_PACKAGE_XLIB_LIBXXF86VM
 	select BR2_PACKAGE_XPROTO_INPUTPROTO
 	select BR2_PACKAGE_XPROTO_KBPROTO
-	select BR2_PACKAGE_XPROTO_PRINTPROTO
 	select BR2_PACKAGE_XPROTO_RENDERPROTO
 	select BR2_PACKAGE_XPROTO_XF86DGAPROTO
 	select BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
diff --git a/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk b/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk
index 2134eca..a3d6ff7 100644
--- a/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk
+++ b/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk
@@ -7,6 +7,6 @@
 XAPP_XDPYINFO_VERSION = 1.2.0
 XAPP_XDPYINFO_SOURCE = xdpyinfo-$(XAPP_XDPYINFO_VERSION).tar.bz2
 XAPP_XDPYINFO_SITE = http://xorg.freedesktop.org/releases/individual/app
-XAPP_XDPYINFO_DEPENDENCIES = xlib_libX11 xlib_libXext xlib_libXi xlib_libXrender xlib_libXtst xlib_libXxf86dga xlib_libXxf86vm xproto_inputproto xproto_kbproto xproto_printproto xproto_renderproto xproto_xf86dgaproto xproto_xf86vidmodeproto xlib_libdmx
+XAPP_XDPYINFO_DEPENDENCIES = xlib_libX11 xlib_libXext xlib_libXi xlib_libXrender xlib_libXtst xlib_libXxf86dga xlib_libXxf86vm xproto_inputproto xproto_kbproto xproto_renderproto xproto_xf86dgaproto xproto_xf86vidmodeproto xlib_libdmx
 
 $(eval $(autotools-package))
diff --git a/package/x11r7/xproto_printproto/Config.in b/package/x11r7/xproto_printproto/Config.in
deleted file mode 100644
index 69e214f..0000000
--- a/package/x11r7/xproto_printproto/Config.in
+++ /dev/null
@@ -1,4 +0,0 @@
-config BR2_PACKAGE_XPROTO_PRINTPROTO
-	bool "printproto"
-	help
-	  X.Org Print protocol headers
diff --git a/package/x11r7/xproto_printproto/xproto_printproto.mk b/package/x11r7/xproto_printproto/xproto_printproto.mk
deleted file mode 100644
index 641553f..0000000
--- a/package/x11r7/xproto_printproto/xproto_printproto.mk
+++ /dev/null
@@ -1,13 +0,0 @@
-################################################################################
-#
-# xproto_printproto -- X.Org Print protocol headers
-#
-################################################################################
-
-XPROTO_PRINTPROTO_VERSION = 1.0.5
-XPROTO_PRINTPROTO_SOURCE = printproto-$(XPROTO_PRINTPROTO_VERSION).tar.bz2
-XPROTO_PRINTPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
-XPROTO_PRINTPROTO_INSTALL_STAGING = YES
-XPROTO_PRINTPROTO_INSTALL_TARGET = NO
-
-$(eval $(autotools-package))
-- 
1.7.10.4

  parent reply	other threads:[~2013-03-18 12:52 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-18 12:52 [Buildroot] [PATCH 000/120] x11: update to R7.7 Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 001/120] xlib_liboldX: removed in X11R7.7 Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 002/120] xlib_libXfontcache: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 003/120] xlib_libxkbui: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 004/120] xlib_libXp: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 005/120] xlib_libXprintAppUtil: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 006/120] xlib_lixXprintUtil: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 007/120] xcb-util: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 008/120] xfont_font-bitstream-speedo: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 009/120] xproto_fontcacheproto: " Jesper Baekdahl
2013-03-18 12:52 ` Jesper Baekdahl [this message]
2013-03-18 12:52 ` [Buildroot] [PATCH 011/120] xproto_xf86rushproto: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 012/120] xapp_xinit: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 013/120] libxcb: bump revision to X11R7.7 Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 014/120] xapp_iceauth: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 015/120] xapp_luit: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 016/120] xapp_makefontscale: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 017/120] xapp_sessreg: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 018/120] xapp_setxkbmap: " Jesper Baekdahl
2013-03-18 12:52 ` [Buildroot] [PATCH 019/120] xapp_smproxy: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 020/120] xapp_xauth: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 021/120] xapp_xcmsdb: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 022/120] xapp_xdpyinfo: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 023/120] xapp_xev: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 024/120] xapp_xgamma: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 025/120] xapp_xhost: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 026/120] xapp_xinput: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 027/120] xapp_xkbcomp: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 028/120] xapp_xkbevd: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 029/120] xpp_xlsatoms: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 030/120] xpp_xlsclients: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 031/120] xapp_xmodmap: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 032/120] xapp_xpr: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 033/120] xapp_xprop: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 034/120] xapp_xrandr: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 035/120] xapp_xrdb: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 036/120] xapp_xset: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 037/120] xapp_xwd: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 038/120] xapp_xwininfo: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 039/120] xapp_xwud: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 040/120] xcb-proto: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 041/120] xdriver_xf86-input-evdev: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 042/120] xdriver_xf86-input-joystick: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 043/120] xdriver_xf86-input-keyboard: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 044/120] xdriver_xf86-input-mouse: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 045/120] xdriver_xf86-input-synaptics: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 046/120] xdriver_xf86-input-vmmouse: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 047/120] xdriver_xf86-input-void: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 048/120] xdriver_xf86-video-ark: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 049/120] xdriver_xf86-video-ast: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 050/120] xdriver_xf86-video-ati: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 051/120] xdriver_xf86-video-cirrus: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 052/120] xdriver_xf86-video-dummy: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 053/120] xdriver_xf86-video-geode: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 054/120] xdriver_xf86-video-glide: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 055/120] xdriver_xf86-video-glint: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 056/120] xdriver_xf86-video-i128: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 057/120] xdriver_xf86-video-intel: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 058/120] xdriver_xf86-video-mach64: " Jesper Baekdahl
2013-03-18 12:53 ` [Buildroot] [PATCH 059/120] xdriver_xf86-video-mga: " Jesper Baekdahl
2013-03-18 15:04 ` [Buildroot] [PATCH 000/120] x11: update to R7.7 Thomas Petazzoni
2013-03-19 13:23   ` Jesper Birksø Bækdahl
2013-03-19 13:46     ` Thomas Petazzoni
2013-03-20 14:47       ` Jesper Baekdahl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1363611219-26971-11-git-send-email-jbb@gamblify.com \
    --to=jbb@gamblify.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox