Skip to content

Commit

Permalink
Merge pull request #1387 from mariux64/update-to-udisks-2.8.4
Browse files Browse the repository at this point in the history
Update Udisks from 2.1.8 to 2.8.4
  • Loading branch information
pmenzel authored Oct 9, 2019
2 parents 79b07f4 + 8771cdd commit eefad65
Show file tree
Hide file tree
Showing 12 changed files with 414 additions and 71 deletions.
35 changes: 35 additions & 0 deletions cryptsetup.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/usr/bin/env beesh

# BEE_VERSION cryptsetup-2.0.6-0

SRCURL[0]="https://www.kernel.org/pub/linux/utils/cryptsetup/v${PKGVERSION[2]}/cryptsetup-${PKGVERSION}.tar.xz"

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

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

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

#mee_configure() {
# bee_configure
#}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}

#mee_install_post() {
# exit
#}
12 changes: 6 additions & 6 deletions dar.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION dar-2.6.5-0
# BEE_VERSION dar-2.6.5-1

SRCURL[0]="https://downloads.sourceforge.net/dar/dar/${PKGVERSION}/dar-${PKGVERSION}.tar.gz"

Expand All @@ -20,6 +20,7 @@ build_in_sourcedir

mee_configure() {
bee_configure \
--disable-static \
--disable-build-html
}

Expand All @@ -32,8 +33,7 @@ mee_configure() {
#}

mee_install_post() {
rm -vfr ${D}/usr/share/dar
rm -vfr ${D}/usr/include/dar
rm -vf ${D}/usr/lib/libdar64.a
rm -vf ${D}/usr/lib/pkgconfig/libdar64.pc
}
rm -vfr ${D}${DATADIR}/dar
rm -vfr ${D}${INCLUDEDIR}/dar
rm -vf ${D}${LIBDIR}/pkgconfig/libdar64.pc
}
2 changes: 1 addition & 1 deletion gmime.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION gmime-2.6.23-0
# BEE_VERSION gmime-2.6.23-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.)
Expand Down
31 changes: 0 additions & 31 deletions gpgme-1.3.0-0.bee

This file was deleted.

36 changes: 36 additions & 0 deletions gpgme.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/usr/bin/env beesh

# BEE_VERSION gpgme-1.13.1-0

SRCURL[0]="https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-${PKGVERSION}.tar.bz2"

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

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

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

mee_configure() {
bee_configure \
--disable-gpg-test
}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}

#mee_install_post() {
# exit
#}
31 changes: 0 additions & 31 deletions libassuan-2.0.1-0.bee

This file was deleted.

35 changes: 35 additions & 0 deletions libassuan.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/usr/bin/env beesh

# BEE_VERSION libassuan-2.5.3-0

SRCURL[0]="https://www.gnupg.org/ftp/gcrypt/libassuan/libassuan-${PKGVERSION}.tar.bz2"

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

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

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

#mee_configure() {
# bee_configure
#}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}

#mee_install_post() {
# exit
#}
91 changes: 91 additions & 0 deletions libblockdev.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
#!/usr/bin/env beesh

# BEE_VERSION libblockdev-2.23-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]="https://github.com/storaged-project/libblockdev/releases/download/${PKGVERSION}-1/libblockdev-${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
## 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 \
--without-gtk-doc \
--without-dm \
--without-lvm \
--without-lvm-dbus \
--without-mpath \
--without-nvdimm
}

#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/
##
85 changes: 85 additions & 0 deletions libbytesize.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
#!/usr/bin/env beesh

# BEE_VERSION libbytesize-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.)

###############################################################################
## 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://github.com/storaged-project/libbytesize/releases/download/${PKGVERSION}/libbytesize-${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
## 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/
##
Loading

0 comments on commit eefad65

Please sign in to comment.