Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (2b205820f385034c68a5a30b2edc9e0d2d142a3e)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (2b205820f385034c68a5a30b2edc9e0d2d142a3e)
  • Date: Sat, 25 May 2019 02:29:34 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

devel/tinycobol/BUILD | 16 +++++-----------
devel/tinycobol/DEPENDS | 9 +++------
devel/tinycobol/DETAILS | 9 ++++-----
devel/tinycobol/HISTORY | 7 +++++++
devel/tinycobol/PRE_BUILD | 6 ++++++
doc/docbook2x/DEPENDS | 7 +++++++
doc/docbook2x/HISTORY | 3 +++
7 files changed, 35 insertions(+), 22 deletions(-)

New commits:
commit 2b205820f385034c68a5a30b2edc9e0d2d142a3e
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

docbook2x: Add dependency on libiconv for non-glibc systems

commit 869888d1351d08c3bb8e7d5c65ef8099d973c8dc
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

tinycobol 0.66

diff --git a/devel/tinycobol/BUILD b/devel/tinycobol/BUILD
index 02913a9..4f24e5a 100755
--- a/devel/tinycobol/BUILD
+++ b/devel/tinycobol/BUILD
@@ -1,11 +1,5 @@
- OPT_SEDITS="s/-Wall/-Wall $CFLAGS/"
-
- sedit "$OPT_SEDITS" cobpp/Makefile.in
- sedit "$OPT_SEDITS" compiler/Makefile.in
- sedit "$OPT_SEDITS" lib/Makefile.in
-
- ./configure --build=$BUILD \
- --prefix=/usr \
- --enable-debug-all \
- $OPTS &&
- make
+./configure --build=$BUILD \
+ --prefix="$INSTALL_ROOT"/usr \
+ --enable-debug-all \
+ $OPTS &&
+make
diff --git a/devel/tinycobol/DEPENDS b/devel/tinycobol/DEPENDS
index 6dbb9d1..d54ed41 100755
--- a/devel/tinycobol/DEPENDS
+++ b/devel/tinycobol/DEPENDS
@@ -1,6 +1,3 @@
-optional_depends "readline" \
- "" \
- "" \
- "to enable readline support" &&
-
-depends "db"
+depends db &&
+depends vbisam &&
+optional_depends readline '' '' "to enable readline support"
diff --git a/devel/tinycobol/DETAILS b/devel/tinycobol/DETAILS
index e423880..2db1840 100755
--- a/devel/tinycobol/DETAILS
+++ b/devel/tinycobol/DETAILS
@@ -1,13 +1,12 @@
SPELL=tinycobol
- VERSION=0.60
- SOURCE=$SPELL-$VERSION.tar.gz
+ VERSION=0.66
+ SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION

SOURCE_URL[0]=http://downloads.sourceforge.net/sourceforge/tiny-cobol/$SOURCE
-
SOURCE_HASH=sha512:ff0e6f8a84bbcfb28a193af9c337cb11ac10a1f8e2f72dd3f37b2dd003e14fa7bd62e7575df307c07cccccf36205b938a448e1345debd6374da62a0de25f5bdf
+
SOURCE_HASH=sha512:5b09974fde6892343f18641920b061a8768d427f852b021558db046fbe7f7a6ed2587b82045b48dd619c61654d6635e81ecb3083981412ee84a611dfbb2709bd
LICENSE[0]=GPL
- WEB_SITE=http://www.tinycobol.org
+ WEB_SITE=http://tiny-cobol.sourceforge.net/
ENTERED=20020210
- UPDATED=20020227
KEYWORDS="compiler devel"
SHORT="tinycobol is a Cobol compiler for gcc"
cat << EOF
diff --git a/devel/tinycobol/HISTORY b/devel/tinycobol/HISTORY
index b37f398..64d11df 100644
--- a/devel/tinycobol/HISTORY
+++ b/devel/tinycobol/HISTORY
@@ -1,3 +1,10 @@
+2019-05-25 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: Changed SOURCE_URL[0] extension
+ fixed WEB_SITE
+ updated spell to 0.66
+ * PRE_BUILD: Fixed build against musl
+ Fixed flags in a generic way
+
2015-05-25 Thomas Orgis <sobukus AT sourcemage.org>
* DETAILS: remove SOURCEFORGE_URL usage (automated)

diff --git a/devel/tinycobol/PRE_BUILD b/devel/tinycobol/PRE_BUILD
new file mode 100755
index 0000000..2e7e736
--- /dev/null
+++ b/devel/tinycobol/PRE_BUILD
@@ -0,0 +1,6 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+sedit '/^ *CCXFLAGS=/s!=!="$CFLAGS "!' configure &&
+sedit '/^CCXFLAGS=/ s!$! @CCXFLAGS@!' cobrun/Makefile.in &&
+sedit '/^CCXFLAGS1=/s!$! @CCXFLAGS@!' compiler/Makefile.in &&
+sedit 's!maybe_os in$!& linux-musl*|\\!' config.sub
diff --git a/doc/docbook2x/DEPENDS b/doc/docbook2x/DEPENDS
index 149322c..7184038 100755
--- a/doc/docbook2x/DEPENDS
+++ b/doc/docbook2x/DEPENDS
@@ -1,2 +1,9 @@
+case "$HOST" in
+*-gnu)
+ ;;
+*)
+ depends libiconv
+ ;;
+esac &&
depends xml-sax &&
depends libxslt
diff --git a/doc/docbook2x/HISTORY b/doc/docbook2x/HISTORY
index 862472e..a7c7715 100644
--- a/doc/docbook2x/HISTORY
+++ b/doc/docbook2x/HISTORY
@@ -1,3 +1,6 @@
+2019-05-25 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS: Added dependency on libiconv for non-glibc systems
+
2019-05-24 Ismael Luceno <ismael AT sourcemage.org>
* 02_fix_418703_dont_use_abbreviated_sfnet_address.patch,
03_fix_420153_filename_whitespace_handling.patch,



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (2b205820f385034c68a5a30b2edc9e0d2d142a3e), Ismael Luceno, 05/24/2019

Archive powered by MHonArc 2.6.24.

Top of Page