modified: x/X11/X11-20170314-test.eb

new file:   x/xorg-server/.xorg-server-1.19.3-intel-2017a.eb.swp
	modified:   x/xorg-server/xorg-server-1.19.3-intel-2017a.eb
This commit is contained in:
Lukáš Krupčík 2017-06-27 08:53:55 +02:00
parent 175969a342
commit 9fbfe396c8
3 changed files with 28 additions and 1 deletions

View File

@ -16,6 +16,9 @@ source_urls = [
'http://xkbcommon.org/download/',
'http://cgit.freedesktop.org/xorg/util/macros/snapshot',
'http://www.x.org/pub/individual/data',
'https://www.x.org/pub/individual/font',
'https://www.x.org/pub/individual/app',
'https://www.x.org/pub/individual/xserver'
]
dependencies = [
@ -23,6 +26,9 @@ dependencies = [
('fontconfig', '2.12.1', '-libpng-1.6.29'),
('freetype', '2.7.1', '-libpng-1.6.29'),
('zlib', '1.2.11'),
('Mesa', '17.0.2', '', ('intel', '2017a')),
('nettle', '3.3', '', ('intel', '2017a')),
('XKeyboardConfig', '2.21'),
]
builddependencies = [
('Autotools', '20150215'),
@ -39,6 +45,15 @@ common_specs = {
'sources': [SOURCE_TAR_GZ],
'start_dir': '%(name)s-%(version)s',
}
server_specs = {
'sources': [SOURCE_TAR_GZ],
'start_dir': '%(name)s-%(version)s',
'configopts': '--disable-glamor --enable-suid-wrapper --disable-systemd-logind',
}
components = [
('xorg-macros', '1.19.1', { # 2017-01-29
'sources': ['util-macros-%(version)s.tar.gz'],
@ -56,6 +71,7 @@ components = [
('glproto', '1.4.17', common_specs), # 2013-12-10
('inputproto', '2.3.2', common_specs), # 2016-04-04
('kbproto', '1.0.7', common_specs), # 2015-05-01
('xkbdata', '1.0.1', common_specs),
('presentproto', '1.1', common_specs), # 2017-01-26
('randrproto', '1.5.0', common_specs), # 2015-05-17
('recordproto', '1.14.2', common_specs), # 2012-03-23
@ -112,6 +128,7 @@ components = [
('libpciaccess', '0.13.4', common_specs), # 2015-05-01
('libxkbfile', '1.0.9', common_specs), # 2015-05-01
('libxshmfence', '1.2', common_specs), # 2015-01-02
('xkbcomp', '1.4.0', common_specs),
('xcb-util', '0.4.0', common_specs), # 2014-10-15
('xcb-util-image', '0.4.0', common_specs), # 2014-10-15
('xcb-util-keysyms', '0.4.0', common_specs), # 2014-10-01
@ -119,6 +136,16 @@ components = [
('xcb-util-wm', '0.4.1', common_specs), # 2014-02-19
('xcb-util-cursor', '0.1.3', common_specs), # 2016-05-12
('xcursor-themes', '1.0.4', common_specs),
('font-util', '1.3.1', common_specs),
('encodings', '1.0.4', common_specs),
('font-alias', '1.0.3', common_specs),
('font-adobe-utopia-type1', '1.0.4', common_specs),
('font-bh-ttf', '1.0.3', common_specs),
('font-bh-type1', '1.0.3', common_specs),
('font-ibm-type1', '1.0.3', common_specs),
('font-misc-ethiopic', '1.0.3', common_specs),
('font-xfree86-type1', '1.0.4', common_specs),
('xorg-server', '1.19.3', server_specs),
]
# Python is required for xcb-proto

Binary file not shown.

View File

@ -19,7 +19,7 @@ configopts = '--disable-glamor --enable-suid-wrapper --disable-systemd-logind'
dependencies = [
('Mesa', '17.0.2'),
('X11', '20170314', '', True),
('X11', '20170314', '-test', True),
('nettle', '3.3'),
('XKeyboardConfig', '2.21', '', True)
]