From b1d662beccaaa63e90c7361694d7f4eb1e95f62d Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 24 Jul 2018 11:16:59 +0200 Subject: [PATCH 1/4] gummi: Strip trailing space --- gummi-0.6.1-0.bee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gummi-0.6.1-0.bee b/gummi-0.6.1-0.bee index ced3d18e2..b8bde52bb 100755 --- a/gummi-0.6.1-0.bee +++ b/gummi-0.6.1-0.bee @@ -21,7 +21,7 @@ PATCHURL[0]="" #} #mee_configure() { -# bee_configure +# bee_configure #} #mee_build() { From 9a25ad55e4cc61822b00e1cc82464045ac7188e8 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 24 Jul 2018 11:21:09 +0200 Subject: [PATCH 2/4] gummi: Recreated bee file with current template Run the command below. $ bee init -f http://dev.midnightcoding.org/redmine/attachments/download/217/gummi-0.6.1.tar.gz creating gummi-0.6.1-0.bee from template '/etc/default/bee/templates/fallback' --- gummi-0.6.1-0.bee | 62 ++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 56 insertions(+), 6 deletions(-) diff --git a/gummi-0.6.1-0.bee b/gummi-0.6.1-0.bee index b8bde52bb..b55aa9774 100755 --- a/gummi-0.6.1-0.bee +++ b/gummi-0.6.1-0.bee @@ -1,23 +1,54 @@ #!/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]="http://dev.midnightcoding.org/redmine/attachments/download/217/gummi-${PKGVERSION}.tar.gz" -PATCHURL[0]="" +############################################################################### +## 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. -# BEE_CONFIGURE=compat +# EXCLUDE+=() -# BEE_BUILDTYPE= +############################################################################### +## 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. -# EXCLUDE="" +# 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 ${@} +# bee_extract "${@}" #} #mee_patch() { -# bee_patch ${@} +# bee_patch "${@}" #} #mee_configure() { @@ -31,3 +62,22 @@ PATCHURL[0]="" #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 1bd19f4f92e8c4c3e2e6b1268ca2314d8253a003 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 24 Jul 2018 11:37:25 +0200 Subject: [PATCH 3/4] gummi: Convert to versionless bee file --- gummi-0.6.1-0.bee => gummi.be0 | 2 ++ 1 file changed, 2 insertions(+) rename gummi-0.6.1-0.bee => gummi.be0 (98%) diff --git a/gummi-0.6.1-0.bee b/gummi.be0 similarity index 98% rename from gummi-0.6.1-0.bee rename to gummi.be0 index b55aa9774..46cd3b8fe 100755 --- a/gummi-0.6.1-0.bee +++ b/gummi.be0 @@ -1,5 +1,7 @@ #!/usr/bin/env beesh +# BEE_VERSION gummi-0.6.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.) From a3626e8e8ef928193f55f3e86cd81dc61e41ecc0 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 24 Jul 2018 11:38:12 +0200 Subject: [PATCH 4/4] gummi: Update version from 0.6.1 to 0.6.6 [Change-log for 0.6.6][1]: > Gummi 0.6.6 "We're still here" (January 27th, 2016): > > Bugs fixed: > > * Fix using predictable filenames in /tmp (CVE-2015-7758) > * Fix source id warnings during motion runtime > * Fix open-project crash due to missing file chooser title > * Fix synctex for input files with relative paths > * Add descriptive keywords to our desktop entry file > * Improvements to the bibliography detection regex > * Only allow loading tex files through file->open > * Desensitize cut/copy tools when no text is selected > * Various improvements to build system > * Removed deprecated code Also, update the source URL as the project moved to GitHub. [1]: https://github.com/alexandervdm/gummi/releases --- gummi.be0 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gummi.be0 b/gummi.be0 index 46cd3b8fe..6c9981ec1 100755 --- a/gummi.be0 +++ b/gummi.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION gummi-0.6.1-0 +# BEE_VERSION gummi-0.6.6-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,7 +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]="http://dev.midnightcoding.org/redmine/attachments/download/217/gummi-${PKGVERSION}.tar.gz" +SRCURL[0]="https://github.com/alexandervdm/gummi/releases/download/${PKGVERSION}/gummi-${PKGVERSION}.tar.gz" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array.