Skip to content

Update graphics and X stack #926

Merged
merged 11 commits into from Oct 18, 2018
2 changes: 1 addition & 1 deletion libX11.be0
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION libX11-1.6.6-0
# BEE_VERSION libX11-1.6.7-0

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)
Expand Down
2 changes: 1 addition & 1 deletion libdrm.be0
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION libdrm-2.4.93-0
# BEE_VERSION libdrm-2.4.94-0

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)
Expand Down
4 changes: 2 additions & 2 deletions libxcb.be0
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION libxcb-1.12-0
# BEE_VERSION libxcb-1.13.1-0

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)
Expand All @@ -9,7 +9,7 @@
## The source URL(s) define the location of the sources that will be
## downloaded. Version variables may be used to simplify reuse of this bee-file.

SRCURL[0]="http://xcb.freedesktop.org/dist/libxcb-${PKGVERSION}.tar.bz2"
SRCURL[0]="https://xcb.freedesktop.org/dist/libxcb-${PKGVERSION}.tar.bz2"

###############################################################################
## Add URLs/pathes to patch files to the PATCHURL array.
Expand Down
5 changes: 2 additions & 3 deletions mesalib.be0
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION mesalib-18.1.6-0
# BEE_VERSION mesalib-18.2.1-0

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)
Expand All @@ -15,7 +15,7 @@ SRCURL[0]="https://mesa.freedesktop.org/archive/mesa-${PKGVERSION}.tar.xz"
## Add URLs/pathes to patch files to the PATCHURL array.
## The sources will be patched in the order of the array.

# PATCHURL+=()
PATCHURL+=(/src/mariux/patches/0001-intel-tools-Include-stdarg.h.patch)

###############################################################################
## Add filename patterns to the EXCLUDE array of files that should not
Expand Down Expand Up @@ -55,7 +55,6 @@ SRCURL[0]="https://mesa.freedesktop.org/archive/mesa-${PKGVERSION}.tar.xz"

mee_configure() {
start_cmd ${S}/autogen.sh ${DEFCONFIG} \
--enable-texture-float \
--enable-gles1 \
--enable-gles2 \
--enable-osmesa \
Expand Down
15 changes: 15 additions & 0 deletions scripts/update-graphics-and-x-stack.sh
@@ -0,0 +1,15 @@
#! /bin/bash

#
# bee install does not work well on big archives ( mariux64/bee#26 )
#
sudo perl -i -pe 's/^( *)(print_conflicts .*)/$1# $2/' /usr/libexec/bee/bee.d/bee-cache

sudo bee update libdrm-2.4.94-0

sudo bee update wayland-1.16.0-0
sudo bee install xcb-proto-1.13-0
sudo bee update libxcb-1.13-0.x86_64
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was the wrong version, and libxcb-1.13.1-0.x86_64 should have been installed.

$ sudo bee remove libxcb-1.13-0.x86_64
removing libxcb-1.13-0.x86_64 ..
$ sudo bee install libxcb-1.13.1-0.x86_64
installing /src/mariux/beeroot/packages/libxcb-1.13.1-0.x86_64.bee.tar.bz2 ..

sudo bee update mesalib-18.2.1-0

sudo bee update libX11-1.6.7-0
2 changes: 1 addition & 1 deletion wayland.be0
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION wayland-1.14.0-0
# BEE_VERSION wayland-1.16.0-0

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)
Expand Down
85 changes: 85 additions & 0 deletions xcb-proto.be0
@@ -0,0 +1,85 @@
#!/usr/bin/env beesh

# BEE_VERSION xcb-proto-1.13-0

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)

###############################################################################
## The source URL(s) define the location of the sources that will be
## downloaded. Version variables may be used to simplify reuse of this bee-file.

SRCURL[0]="http://xcb.freedesktop.org/dist/xcb-proto-${PKGVERSION}.tar.bz2"

###############################################################################
## Add URLs/pathes to patch files to the PATCHURL array.
## The sources will be patched in the order of the array.

# PATCHURL+=()

###############################################################################
## Add filename patterns to the EXCLUDE array of files that should not
## be added to you package but may be present in the image directory.

# EXCLUDE+=()

###############################################################################
## Uncomment the next statement, if the software may not be able to be build
## outside the source directory and need to be build inside the source
## directory.

# build_in_sourcedir

###############################################################################
## bee cannot detect buildtypes specified in subdirectories.
## Sometimes packages "hide" the real sources in a subdirectory named
## 'src' or 'cmake' or ..
## use 'sourcesubdir_append' to specify this directory if known.

# sourcesubdir_append src


###############################################################################
## Change the default (auto-detected) steps to
## extract, patch, configure/setup, build and install the software.
## Make sure the mee_install function does install everything to the
## image directory "${D}"

#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

#mee_configure() {
# bee_configure
#}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}
## by default this may be 'make install DESTDIR="${D}"'

###############################################################################
##
## Additional hints:
##
## The name of this bee-file should follow the following naming convention:
## pkgname-pkgversion-pkgrevision.bee
##
## You may remove all comments as long as SRCURL[0]="" is set.
##
## Everything in this file will be executed in a bash environment.
##
## Build the package by executing
## './pkg-version-N.bee' or
## 'beesh ./pkg-version-N.bee'
##
## see http://beezinga.org/
##