From 00fdcc03939180eae608817346b649c66e9571e3 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 5 Oct 2018 00:54:53 +0200 Subject: [PATCH 1/3] libXpresent: Add version 1.0.0 > This provides an Xlib-compatible API for the Present extension. > > Keith Packard (9): > Initial import of Xlib Present binding > Add .gitignore > Update to protocol version 1.0 > Elide redirect stuff. > Add kind/mode to Complete, set pixmap in Idle > Add PresentFreeInput to release allocated event ids > Make libtool happier > Reset version number so we can make release.sh happy > Bump version to 1.0.0 Create the bee file with the command below. $ bee init https://www.x.org/archive/individual/lib/libXpresent-1.0.0.tar.bz2 creating libXpresent-1.0.0-0.bee from template '/etc/default/bee/templates/fallback' [1]: https://lists.x.org/archives/xorg-announce/2015-April/002584.html --- libXpresent-1.0.0-0.bee | 83 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100755 libXpresent-1.0.0-0.bee diff --git a/libXpresent-1.0.0-0.bee b/libXpresent-1.0.0-0.bee new file mode 100755 index 000000000..65e0800a1 --- /dev/null +++ b/libXpresent-1.0.0-0.bee @@ -0,0 +1,83 @@ +#!/usr/bin/env beesh + +## 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]="https://www.x.org/archive/individual/lib/libXpresent-${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 built +## outside the source directory and needs to be built 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/ +## From 5d28aa9784db2c14141a7465107b6f760aeee7cf Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 5 Oct 2018 00:57:13 +0200 Subject: [PATCH 2/3] libXpresent: Convert to versionless bee file --- libXpresent-1.0.0-0.bee => libXpresent.be0 | 2 ++ 1 file changed, 2 insertions(+) rename libXpresent-1.0.0-0.bee => libXpresent.be0 (98%) diff --git a/libXpresent-1.0.0-0.bee b/libXpresent.be0 similarity index 98% rename from libXpresent-1.0.0-0.bee rename to libXpresent.be0 index 65e0800a1..fe0e2042e 100755 --- a/libXpresent-1.0.0-0.bee +++ b/libXpresent.be0 @@ -1,5 +1,7 @@ #!/usr/bin/env beesh +# BEE_VERSION libXpresent-1.0.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.) From 720c8e66c7fd21cb1aff77653208cec074d4fd39 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 5 Oct 2018 00:59:08 +0200 Subject: [PATCH 3/3] xfwm4: Rebuild with libXpresent installed Increment revision to 2. --- xfwm4.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfwm4.be0 b/xfwm4.be0 index e608cab22..2d4394cb7 100755 --- a/xfwm4.be0 +++ b/xfwm4.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION xfwm4-4.13.1-1 +# BEE_VERSION xfwm4-4.13.1-2 SRCURL[0]="https://archive.xfce.org/src/xfce/xfwm4/${PKGVERSION[2]}/xfwm4-${PKGVERSION}.tar.bz2"