diff --git a/appstream-glib.be0 b/appstream-glib.be0 new file mode 100755 index 000000000..1917f332f --- /dev/null +++ b/appstream-glib.be0 @@ -0,0 +1,38 @@ +#!/usr/bin/env beesh + +# BEE_VERSION appstream-glib-0.7.16-0 + + +SRCURL[0]="https://github.com/hughsie/appstream-glib/archive/appstream_glib_${PKGVERSION//./_}.tar.gz" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + bee_configure \ + -Dstemmer=false +} + + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} + +#mee_install_post() { +# exit +#} diff --git a/bison.be0 b/bison.be0 index 479d82de8..194886142 100755 --- a/bison.be0 +++ b/bison.be0 @@ -1,50 +1,15 @@ #!/usr/bin/env beesh -# BEE_VERSION bison-3.0.4-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. +# BEE_VERSION bison-3.4.2-0 SRCURL[0]="http://ftp.gnu.org/gnu/bison/bison-${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+=() -############################################################################### -## 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 "${@}" #} @@ -53,34 +18,20 @@ SRCURL[0]="http://ftp.gnu.org/gnu/bison/bison-${PKGVERSION}.tar.xz" # bee_patch "${@}" #} -#mee_configure() { -# bee_configure -#} - -mee_build() { - bee_build - make check +mee_configure() { + bee_configure \ + --disable-nls } +#mee_build() { +# bee_build +# make check +#} + #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/ -## +mee_install_post() { + rm -rvf ${D}/usr/share/doc +} diff --git a/keepassx.be0 b/bsdiff.be0 similarity index 80% rename from keepassx.be0 rename to bsdiff.be0 index 3d89a135a..5f2f1cb7b 100755 --- a/keepassx.be0 +++ b/bsdiff.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION keepassx-2.0.3-0 +# BEE_VERSION bsdiff-4.3-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.) @@ -9,9 +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]="https://www.keepassx.org/releases/${PKGVERSION}/keepassx-${PKGVERSION}.tar.gz" - -PATH=/usr/local/qt4/bin:$PATH +SRCURL[0]="https://www.daemonology.net/bsdiff/bsdiff-${PKGVERSION}.tar.gz" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array. @@ -19,12 +17,6 @@ PATH=/usr/local/qt4/bin:$PATH # 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 @@ -51,9 +43,9 @@ PATH=/usr/local/qt4/bin:$PATH # bee_extract "${@}" #} -#mee_patch() { -# bee_patch "${@}" -#} +mee_patch() { + sed -e '/^\.ifndef/ s/^\.//' -e '/^\.endif/ s/^\.//' -i ${S}/Makefile +} #mee_configure() { # bee_configure @@ -63,9 +55,16 @@ PATH=/usr/local/qt4/bin:$PATH # bee_build #} -#mee_install() { -# bee_install -#} +mee_install() { + mkdir -vp ${D}/usr/bin + cp -v ${B}/bsdiff ${D}/usr/bin + cp -v ${B}/bspatch ${D}/usr/bin + chmod -v 755 ${D}/usr/bin/* + mkdir -vp ${D}/usr/share/man/man1 + cp -v ${B}/bsdiff.1 ${D}/usr/share/man/man1 + cp -v ${B}/bspatch.1 ${D}/usr/share/man/man1 + chmod -v 644 ${D}/usr/share/man/man1/* +} ## by default this may be 'make install DESTDIR="${D}"' ############################################################################### diff --git a/evince.be0 b/evince.be0 index cf0b5b596..2972800b5 100755 --- a/evince.be0 +++ b/evince.be0 @@ -1,52 +1,21 @@ #!/usr/bin/env beesh -# BEE_VERSION evince-3.30.0-1 +# BEE_VERSION evince-3.34.1-1 -BEE_BUILDTYPE=configure - -## 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.) +# requires: +# bee update json-glib-1.4.4-0 +# bee update appstream-glib-0.7.16-0 -############################################################################### -## 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. +BEE_BUILDTYPE=configure SRCURL[0]="https://download.gnome.org/sources/evince/${PKGVERSION[2]}/evince-${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+=() -############################################################################### -## 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 "${@}" #} @@ -56,7 +25,13 @@ SRCURL[0]="https://download.gnome.org/sources/evince/${PKGVERSION[2]}/evince-${P #} mee_configure() { - bee_configure --enable-introspection --disable-static + bee_configure \ + --enable-introspection \ + --disable-static \ + --disable-nls \ + --disable-libgnome-desktop \ + --disable-nautilus \ + --disable-thumbnailer } #mee_build() { @@ -69,25 +44,10 @@ mee_configure() { ## by default this may be 'make install DESTDIR="${D}"' mee_install_post() { - start_cmd mv -v ${D}${DATAROOTDIR}/applications/{org.gnome.Evince-previewer,evince-previewer}.desktop - start_cmd mv -v ${D}${DATAROOTDIR}/applications/{org.gnome.Evince,evince}.desktop + start_cmd mv -v ${D}${DATAROOTDIR}/applications/{org.gnome.Evince-previewer,evince-previewer}.desktop + start_cmd mv -v ${D}${DATAROOTDIR}/applications/{org.gnome.Evince,evince}.desktop + for i in bg ca cs da de el en_GB es eu fi fr gl hu id it ja ko lv nl oc pl pt_BR ro ru sl sr sv te uk vi zh_CN zh_HK zh_TW; do + rm -rf ${D}/usr/share/help/${i} + done } - -############################################################################### -## -## 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/ -## diff --git a/glib-1.2.10-0.bee b/glib-1.2.10-0.bee deleted file mode 100755 index 6d9600e08..000000000 --- a/glib-1.2.10-0.bee +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/env beesh - -SRCURL[0]="ftp://ftp.gtk.org/pub/gtk/v1.2/glib-1.2.10.tar.gz" - -PATCHURL[0]="http://www.linuxfromscratch.org/patches/blfs/svn/glib-1.2.10-gcc34-1.patch" - -BEE_CONFIGURE=compat - -# EXCLUDE="" - - - -mee_extract() { - bee_extract ${@} -} - -mee_patch() { - bee_patch ${@} - cp /usr/share/libtool/config/config.sub config.sub -} - -mee_configure() { - bee_configure -} - -mee_build() { - bee_build -} - -mee_install() { - bee_install - chmod -v 755 ${D}/usr/lib/libgmodule-1.2.so.0.0.10 -} diff --git a/glib.be0 b/glib.be0 new file mode 100755 index 000000000..281b20acf --- /dev/null +++ b/glib.be0 @@ -0,0 +1,98 @@ +#!/usr/bin/env beesh + +# BEE_VERSION glib-1.2.10-1 + +## 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://ftp.gtk.org/pub/gtk/v${PKGVERSION[2]}/glib-${PKGVERSION}.tar.gz" + +############################################################################### +## Add URLs/pathes to patch files to the PATCHURL array. +## The sources will be patched in the order of the array. + +# PATCHURL+=() +XPATCHROOT=${BEE_DOWNLOADDIR} +PATCHURL+=(${XPATCHROOT}/glib-1.2.10-isowarning.patch.gz) +PATCHURL+=(${XPATCHROOT}/glib-1.2.10-gcc34.patch.gz) +PATCHURL+=(${XPATCHROOT}/glib-1.2.10-underquoted.patch.gz) +PATCHURL+=(${XPATCHROOT}/glib-1.2.10-no_undefined.patch.gz) +PATCHURL+=(${XPATCHROOT}/glib-1.2.10-multilib.patch.gz) +PATCHURL+=(${XPATCHROOT}/glib-1.2.10-unused-dep.patch.gz) +PATCHURL+=(${XPATCHROOT}/glib-1.2.10-autotools.patch.gz) +PATCHURL+=(${XPATCHROOT}/glib-1.2.10-format.patch.gz) +PATCHURL+=(${XPATCHROOT}/glib-1.2.10-gcc5.patch.gz) +PATCHURL+=(${XPATCHROOT}/glib-1.2.10-gcc9.patch.gz) + +############################################################################### +## 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 "${@}" + cp -p /usr/share/automake-1.15/config.{guess,sub} . +} + +export CFLAGS='-O2 -fPIC' +#mee_configure() { +# bee_configure +#} + +mee_build() { + bee_build LIBTOOL=/usr/bin/libtool +} + +#mee_install() { +# bee_install +#} +## by default this may be 'make install DESTDIR="${D}"' + +mee_install_post() { + patchelf --remove-rpath ${D}/usr/lib/libgmodule-1.2.so.0.0.10 + patchelf --remove-rpath ${D}/usr/lib/libgthread-1.2.so.0.0.10 + chmod -v 0755 ${D}/usr/lib/libgmodule-1.2.so.0.0.10 +} + +############################################################################### +## +## 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/ +## diff --git a/go.be0 b/go.be0 index dde392157..d3f2b5df9 100755 --- a/go.be0 +++ b/go.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION go-1.13.1-0 +# BEE_VERSION go-1.13.4-1 SRCURL[0]="https://storage.googleapis.com/golang/go1.4-bootstrap-20171003.tar.gz" SRCURL[1]="https://redirector.gvt1.com/edgedl/go/go${PKGVERSION}.src.tar.gz" @@ -49,37 +49,30 @@ mee_build() { mee_install() { # The binaries expect /scratch/local/bee-root/go/go-1.10-0/source to be copied or moved to /usr/lib/go - mkdir -p ${D}${BINDIR} + mkdir -pv ${D}${BINDIR} - cp -r ${S}/../bin/. ${D}${BINDIR} - - mkdir -p ${D}${LIBDIR}/go + cp -rv ${S}/../bin/. ${D}${BINDIR} # strace -s 200 -e file ${S}/../bin/go install -buildmode=shared std # Install standardlibs https://golang.org/pkg/#stdlib - LIBS="builtin context debug expvar go image io math \ - path runtime strings testing unicode bufio bytes \ - compress crypto encoding flag hash index mime net plugin reflect \ - sort sync text unsafe archive cmd container database errors \ - fmt html internal log os regexp strconv syscall time" - - echo "LIBS=${LIBS}" + mkdir -pv ${D}${LIBDIR}/go/src - mkdir -p ${D}${LIBDIR}/go/src - for i in $LIBS; do - cp -r ${S}/${i} ${D}${LIBDIR}/go/src + cd ${S} + for i in *; do + if [ -d "${i}" ]; then + cp -rv ${i} ${D}${LIBDIR}/go/src + fi done #Install tools for go - mkdir -p ${D}${LIBDIR}/go/pkg - cp -r ${S}/../pkg/tool ${D}${LIBDIR}/go/pkg - cp -r ${S}/../pkg/include ${D}${LIBDIR}/go/pkg - cp -r ${S}/../pkg/linux_amd64 ${D}${LIBDIR}/go/pkg + mkdir -pv ${D}${LIBDIR}/go/pkg + cp -rv ${S}/../pkg/tool ${D}${LIBDIR}/go/pkg + cp -rv ${S}/../pkg/include ${D}${LIBDIR}/go/pkg + cp -rv ${S}/../pkg/linux_amd64 ${D}${LIBDIR}/go/pkg } -mee_install_post() { -# exit - : -} +#mee_install_post() { +# exit +#} diff --git a/gtk+-1.2.10-0.bee b/gtk+-1.2.10-0.bee deleted file mode 100755 index 52e8101dd..000000000 --- a/gtk+-1.2.10-0.bee +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/env beesh - -SRCURL[0]="ftp://ftp.gtk.org/pub/gtk/v1.2/gtk+-1.2.10.tar.gz" - -PATCHURL[0]="" - -BEE_CONFIGURE=compat - -# EXCLUDE="" - - - -mee_extract() { - bee_extract ${@} -} - -mee_patch() { - bee_patch ${@} - cp /usr/share/libtool/config/config.sub config.sub -} - -mee_configure() { - bee_configure -} - -mee_build() { - bee_build -} - -mee_install() { - bee_install -} diff --git a/gtk+.be0 b/gtk+.be0 new file mode 100755 index 000000000..fc6d39474 --- /dev/null +++ b/gtk+.be0 @@ -0,0 +1,116 @@ +#!/usr/bin/env beesh + +# BEE_VERSION gtk+-1.2.10-1 + +## 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://ftp.gtk.org/pub/gtk/v${PKGVERSION[2]}/gtk+-${PKGVERSION}.tar.gz" + +############################################################################### +## Add URLs/pathes to patch files to the PATCHURL array. +## The sources will be patched in the order of the array. + +# PATCHURL+=() +XPATCHROOT=${BEE_DOWNLOADDIR} +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-ahiguti.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.8-wrap-alnum.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-alignment.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-expose.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-focus.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-encoding.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-ctext.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-utf8fontset.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-kpenter.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-themeswitch.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-pixmapref.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-missingchar.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-ukfont.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-deletedir.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-fontwarning.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-troughpaint.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-localecrash.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-dndorder.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-clistfocusrow.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-bellvolume.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-libtool.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-gtkgdkdep.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-underquoted.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-ppc64.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-no_undefined.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-multilib.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-unused-deps.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-autotools.patch.gz) +PATCHURL+=(${XPATCHROOT}/gtk+-1.2.10-format.patch.gz) + +############################################################################### +## 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 "${@}" + cp -p /usr/share/automake-1.15/config.{guess,sub} . +} + +export CFLAGS='-O2 -fPIC' +export CXXFLAGS='-O2 -fPIC' +#mee_configure() { +# bee_configure +#} + +mee_build() { + bee_build LIBTOOL=/usr/bin/libtool +} + +#mee_install() { +# bee_install +#} +## by default this may be 'make install DESTDIR="${D}"' + +mee_install_post() { + patchelf --remove-rpath ${D}/usr/lib/libgtk-1.2.so.0.9.1 +} + +############################################################################### +## +## 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/ +## diff --git a/hub.be0 b/hub.be0 index e5f8bfc02..d951fb05c 100755 --- a/hub.be0 +++ b/hub.be0 @@ -1,19 +1,23 @@ #!/bin/env beesh -# BEE_VERSION hub-2.12.3-0 +# BEE_VERSION hub-2.12.8-0 SRCURL[0]="https://github.com/github/hub.git" export GOPATH=${B}/bee_go mee_getsources() { - cd ${S} - git clone \ + mkdir -vp ${F} + cd ${F} + + [ -d ${PKGNAME} ] || git clone \ --config transfer.fsckobjects=false \ --config receive.fsckobjects=false \ --config fetch.fsckobjects=false \ - ${SRCURL} . - git checkout v${PKGFULLVERSION} + ${SRCURL} ${PKGNAME} + cd ${S} + git clone ${F}/${PKGNAME} . + git checkout --quiet v${PKGFULLVERSION} } diff --git a/json-glib.be0 b/json-glib.be0 new file mode 100755 index 000000000..0fa828ea9 --- /dev/null +++ b/json-glib.be0 @@ -0,0 +1,41 @@ +#!/usr/bin/env beesh + +# BEE_VERSION json-glib-1.4.4-0 + +SRCURL[0]="https://ftp.gnome.org/pub/gnome/sources/json-glib/${PKGVERSION[2]}/json-glib-${PKGVERSION}.tar.xz" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + +BEE_BUILDTYPE=meson + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_patch_post() { + echo "" > po/LINGUAS +} + +#mee_configure() { +# +#} + +#mee_build() { +# bee_build +#} + +mee_install() { + bee_install + # rm /usr/share/installed-tests + rm -rvf ${D}/usr/share + # rm ./usr/libexec/installed-tests + rm -rvf ${D}/usr/libexec +} diff --git a/keepassxc.be0 b/keepassxc.be0 index f550924c9..d8781ce47 100755 --- a/keepassxc.be0 +++ b/keepassxc.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION keepassxc-2.4.3-0 +# BEE_VERSION keepassxc-2.5.0-0 SRCURL[0]="https://github.com/keepassxreboot/keepassxc/archive/${PKGVERSION}.tar.gz keepassxc-${PKGVERSION}.tar.gz" @@ -20,11 +20,12 @@ SRCURL[0]="https://github.com/keepassxreboot/keepassxc/archive/${PKGVERSION}.tar #} mee_configure() { - bee_configure -DQt5X11Extras_DIR=/usr/local/qt5/lib/cmake/Qt5X11Extras \ - -DCMAKE_BUILD_TYPE=Release \ - -DWITH_XC_KEESHARE=ON \ - -DKEEPASSXC_BUILD_TYPE=Release \ - -DWITH_XC_BROWSER=ON + bee_configure \ + -DQt5X11Extras_DIR=/usr/local/qt5/lib/cmake/Qt5X11Extras \ + -DCMAKE_BUILD_TYPE=Release \ + -DWITH_XC_KEESHARE=ON \ + -DKEEPASSXC_BUILD_TYPE=Release \ + -DWITH_XC_BROWSER=ON } #mee_build() { diff --git a/mxml.be0 b/mxml.be0 index fc29f8304..3530b0fa8 100755 --- a/mxml.be0 +++ b/mxml.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION mxml-2.12-0 +# BEE_VERSION mxml-3.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.) @@ -30,9 +30,9 @@ build_in_sourcedir ## 'src' or 'cmake' or .. ## use 'sourcesubdir_append' to specify this directory if known. -# sourcesubdir_append src +# sourcesubdir_append mxml-3.1 -BEE_EXTRACT_STRIP=0 +# BEE_EXTRACT_STRIP=0 ############################################################################### @@ -60,6 +60,9 @@ BEE_EXTRACT_STRIP=0 mee_install() { start_cmd make install DSTROOT="${D}" } +mee_install_post() { + rm -vrf ${D}/usr/share/doc +} ## by default this may be 'make install DESTDIR="${D}"' ############################################################################### diff --git a/rclone.be0 b/rclone.be0 index 6d6189d91..56a36e1c1 100755 --- a/rclone.be0 +++ b/rclone.be0 @@ -1,11 +1,25 @@ #!/bin/env beesh -# BEE_VERSION rclone-1.49.2-0 +# BEE_VERSION rclone-1.50.1-1 -SRCURL[0]="https://github.com/rclone/rclone/archive/v${PKGVERSION}.tar.gz ${PKGNAME}-${PKGVERSION}.tar.gz" +SRCURL[0]="https://github.com/rclone/rclone.git" export GOPATH=${B}/bee_go +mee_getsources() { + mkdir -vp ${F} + cd ${F} + [ -d ${PKGNAME}-git ] || \ + git clone \ + --config transfer.fsckobjects=false \ + --config receive.fsckobjects=false \ + --config fetch.fsckobjects=false \ + ${SRCURL} ${PKGNAME}-git + cd ${S} + git clone ${F}/${PKGNAME}-git . + git checkout --quiet v${PKGFULLVERSION} +} + #mee_patch() { # bee_patch #} @@ -14,13 +28,12 @@ export GOPATH=${B}/bee_go # bee_configure #} -mee_build() { - bee_build -} +#mee_build() { +# bee_build +#} mee_install() { bee_install mkdir -p ${D}/usr/share/man/man1 cp ${S}/rclone.1 ${D}/usr/share/man/man1 - } diff --git a/syncthing.be0 b/syncthing.be0 index 89d0ca154..5640e96e2 100755 --- a/syncthing.be0 +++ b/syncthing.be0 @@ -1,6 +1,6 @@ #!/bin/env beesh -# BEE_VERSION syncthing-1.3.0-0 +# BEE_VERSION syncthing-1.3.1-0 ## The source URL(s) array SRCURL[0]="https://github.com/syncthing/syncthing/releases/download/v${PKGVERSION}/syncthing-source-v${PKGVERSION}.tar.gz syncthing-v${PKGVERSION}.tar.gz"