Skip to content

Commit

Permalink
Merge branch 'master' into fix-e2fsprogs-14511
Browse files Browse the repository at this point in the history
  • Loading branch information
wwwutz authored Nov 11, 2019
2 parents 5e4f36d + 931a108 commit fc65f4a
Show file tree
Hide file tree
Showing 15 changed files with 395 additions and 243 deletions.
38 changes: 38 additions & 0 deletions appstream-glib.be0
Original file line number Diff line number Diff line change
@@ -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
#}
73 changes: 12 additions & 61 deletions bison.be0
Original file line number Diff line number Diff line change
@@ -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 "${@}"
#}
Expand All @@ -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
}
31 changes: 15 additions & 16 deletions keepassx.be0 → bsdiff.be0
Original file line number Diff line number Diff line change
@@ -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.)
Expand All @@ -9,22 +9,14 @@
## 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.
## 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
Expand All @@ -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
Expand All @@ -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}"'

###############################################################################
Expand Down
74 changes: 17 additions & 57 deletions evince.be0
Original file line number Diff line number Diff line change
@@ -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 "${@}"
#}
Expand All @@ -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() {
Expand All @@ -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/
##
33 changes: 0 additions & 33 deletions glib-1.2.10-0.bee

This file was deleted.

Loading

0 comments on commit fc65f4a

Please sign in to comment.