Skip to content

Commit

Permalink
Merge pull request #1605 from mariux64/update-gmp
Browse files Browse the repository at this point in the history
gmp/mpc: update to mpc-1.1.0 and gmp-6.1.2 + compat
  • Loading branch information
wwwutz authored Jan 20, 2020
2 parents 103f616 + 979c153 commit d2473ac
Show file tree
Hide file tree
Showing 4 changed files with 145 additions and 85 deletions.
85 changes: 0 additions & 85 deletions gmp-6.1.0-1.bee

This file was deleted.

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

# BEE_VERSION gmp-6.1.2-0

# more info:
# http://www.linuxfromscratch.org/lfs/view/development/chapter06/gmp.html

SRCURL[0]="http://ftp.gnu.org/gnu/gmp/gmp-${PKGVERSION}.tar.xz"

# PATCHURL+=()

#build_in_sourcedir

# sourcesubdir_append src

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

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

mee_configure() {
bee_configure \
--enable-cxx \
--build=x86_64-unknown-linux-gnu
}


#mee_build() {
# bee_build
#}

mee_build_post() {
make check
}

#mee_install() {
# bee_install
#}

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

# BEE_VERSION mpc-1.1.0-0

# more info:
# http://www.linuxfromscratch.org/lfs/view/development/chapter06/mpc.html

SRCURL[0]="http://ftp.gnu.org/gnu/mpc/mpc-${PKGVERSION}.tar.gz"

# PATCHURL+=()

#build_in_sourcedir

# sourcesubdir_append src

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

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

#mee_configure() {
# bee_configure
#}


#mee_build() {
# bee_build
#}

mee_build_post() {
make check
}

#mee_install() {
# bee_install
#}

mee_install_post() {
rm -vf ${D}/usr/share/info/dir
}
57 changes: 57 additions & 0 deletions mpc_compat-0.8.2.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
#!/usr/bin/env beesh

# BEE_VERSION mpc_compat-0.8.2-0

# more info:
# http://www.linuxfromscratch.org/lfs/view/development/chapter06/mpc.html

#root:invidia:/scratch/local2/# /src/mariux/beehive/contentdiff.pl /usr/share/bee/mpc-0.8.2-0.x86_64/CONTENT /scratch/local/bee-root/mpc/mpc-1.1.0-0/image/CONTENT
# 0 : /usr/share/bee/mpc-0.8.2-0.x86_64/CONTENT
# 1 : /scratch/local/bee-root/mpc/mpc-1.1.0-0/image/CONTENT
# 0 | 1 | t | mode | acc | uid | gid | nln | file
# X | - | r |0100755| 0755| 0| 0| 1| /usr/lib/libmpc.so.2.0.0
# X | - | s |0120777| 0777| 0| 0| 1| /usr/lib/libmpc.so.2//libmpc.so.2.0.0
# - | X | r |0100755| 0755| 0| 0| 1| /usr/lib/libmpc.so.3.1.0
# - | X | s |0120777| 0777| 0| 0| 1| /usr/lib/libmpc.so.3//libmpc.so.3.1.0
# X | - | s |0120777| 0777| 0| 0| 1| /usr/lib/libmpc.so//libmpc.so.2.0.0
# - | X | s |0120777| 0777| 0| 0| 1| /usr/lib/libmpc.so//libmpc.so.3.1.0

SRCURL[0]="/src/mariux/beeroot/packages/mpc-0.8.2-0.x86_64.bee.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_build_post() {
# make check
#}

mee_install() {
install -vdm755 ${D}/usr/lib
install -vm755 ${S}/lib/libmpc.so.2 ${D}/usr/lib

ln -vs libmpc.so.2 ${D}/usr/lib/libmpc.so.2.0.0
}

#mee_install_post() {
# exit
#}

0 comments on commit d2473ac

Please sign in to comment.