gsrc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gsrc-commit] trunk r8689: bunch of stuff gnustep etc


From: Carl Hansen
Subject: [Gsrc-commit] trunk r8689: bunch of stuff gnustep etc
Date: Sat, 22 Oct 2022 13:06:43 -0400 (EDT)
User-agent: Bazaar (2.7.0dev1)

------------------------------------------------------------
revno: 8689
revision-id: carlhansen1234@gmail.com-20221022170631-qrm5du0ucuc555q4
parent: carlhansen1234@gmail.com-20221022170356-19dtm44n6ebirrf1
committer: carlhansen1234@gmail.com
branch nick: trunk
timestamp: Sat 2022-10-22 10:06:31 -0700
message:
  bunch of stuff gnustep etc
modified:
  gar/gar.lib.mk                 gar.lib.mk-20160617013741-ul4q527k85thcz4p-1
  gar/gar.lib/gnustep.mk         gnustep.mk-20160617013740-b2gc1gamt0k7pzjx-6
  pkg/freedesktop/harfbuzz/Makefile makefile-20160617013746-7ygosxqw3lxxvo7f-977
  pkg/freedesktop/harfbuzz/sha256sums 
sha256sums-20160617013746-7ygosxqw3lxxvo7f-981
  pkg/gnu/gnufdisk/Makefile      makefile-20160617014725-uokjfnggs70iry9h-618
  pkg/gnustep/AClock/Makefile    makefile-20160617021536-2y71qvmiwaimvy1u-51
  pkg/gnustep/Addresses/Makefile makefile-20160617021536-2y71qvmiwaimvy1u-56
  pkg/gnustep/Cynthiune/Makefile makefile-20160617021536-2y71qvmiwaimvy1u-61
  pkg/gnustep/DataBasin/Makefile makefile-20160617021536-2y71qvmiwaimvy1u-66
  pkg/gnustep/DataBasinKit/Makefile makefile-20160617021536-2y71qvmiwaimvy1u-71
  pkg/gnustep/FTP/Makefile       makefile-20160617021536-2y71qvmiwaimvy1u-76
  pkg/gnustep/GMastermind/Makefile makefile-20160617021536-2y71qvmiwaimvy1u-81
  pkg/gnustep/batmon/Makefile    makefile-20160617021536-2y71qvmiwaimvy1u-186
  pkg/gnustep/coregtk/Makefile   makefile-20161121035830-235z5tw7gh8dspii-3
  pkg/gnustep/enterprise/Makefile makefile-20160617021536-2y71qvmiwaimvy1u-191
  pkg/gnustep/gemas/Makefile     makefile-20170801034435-d5acv3mt74o8ujh2-3
  pkg/gnustep/gnumail/Makefile   makefile-20160617021536-2y71qvmiwaimvy1u-196
  pkg/gnustep/gnustep-corebase/Makefile 
makefile-20160617021536-2y71qvmiwaimvy1u-211
  pkg/gnustep/gnustep-examples/Makefile 
makefile-20160617021536-2y71qvmiwaimvy1u-216
  pkg/gnustep/gnustep-make/Makefile makefile-20160617021536-2y71qvmiwaimvy1u-226
  pkg/gnustep/gnustep-ppd/Makefile makefile-20160617021536-2y71qvmiwaimvy1u-231
  pkg/gnustep/libobjc2/Makefile  makefile-20160617021536-2y71qvmiwaimvy1u-246
  pkg/other/cfitsio/Makefile     makefile-20161003020958-ocsyygda37l792uz-2
  pkg/other/cfitsio/config.mk    config.mk-20161003020958-ocsyygda37l792uz-3
  pkg/other/lynx/Makefile        makefile-20220504195137-cnvwvreyr35f10o1-4
  pkg/other/lynx/config.mk       config.mk-20220504195137-cnvwvreyr35f10o1-2
=== modified file 'gar/gar.lib.mk'
--- a/gar/gar.lib.mk    2022-10-18 01:20:17 +0000
+++ b/gar/gar.lib.mk    2022-10-22 17:06:31 +0000
@@ -175,7 +175,7 @@
 GIT_REVISION ?= master    
 
 gitpull:
-       @printf "git pulling..\n"; 
+       @printf "git pulling $(DOWNLOADDIRGIT)/$(GARNAME)\n"; 
        mkdir -p $(DOWNLOADDIRGIT)/$(GARNAME) 
        (cd  $(DOWNLOADDIRGIT)/$(GARNAME) &&  git pull  )
 # don't MAKECOOKIE I think
@@ -346,6 +346,7 @@
 
 # as currently writen, doesn;t deal with git downloads
 garchive-%:
+       @printf "[$(OK)garchive$(OFF)] $(MSG)Copy to cache $(OFF)\n"
        -test -d $(GARCHIVEDIR)/ || mkdir -p $(GARCHIVEDIR)
        -test -h $(DOWNLOADDIR)/$* || cp -f $(DOWNLOADDIR)/$* $(GARCHIVEDIR)/
        $(MAKECOOKIE)
@@ -361,7 +362,7 @@
 
 # rule to extract files with tar xzf
 extract-%.tar.Z extract-%.tgz extract-%.tar.gz extract-%.taz:
-       @printf "[$(OK)extract$(OFF)] $(MSG)Extracting $(OFF)$(patsubst 
extract-%,$(DOWNLOADDIR)/%,$@)\n"
+       @printf "[$(OK)extract-$(OFF)] $(MSG)Extracting $(OFF)$(patsubst 
extract-%,$(DOWNLOADDIR)/%,$@)\n"
        gzip -dc $(patsubst extract-%,$(DOWNLOADDIR)/%,$@) | tar xf - 
$(TAR_OPTS) -C $(EXTRACTDIR)
        $(MAKECOOKIE)
 
@@ -781,7 +782,7 @@
 # Use "make install" with DESTDIR.
 DESTDIR_INSTALL_ARGS ?=
 install-%/Makefile-DESTDIR:
-       @printf "[$(OK)install with DESTDIR$(OFF)] $(MSG)Running make 
$(INSTALL_TARGET) with DESTDIR in $(OFF)$*\n"
+       @printf "[$(OK)install$(OFF)] $(MSG)Running make $(INSTALL_TARGET) with 
DESTDIR in $(OFF)$*\n"
        $(INSTALL_ENV) $(MAKE) -C $* $(MAKE_ARGS) $(DESTDIR_INSTALL_ARGS) 
$(INSTALL_TARGET) DESTDIR=$(packageDESTDIR) $(OUTPUT)
        $(MAKECOOKIE)
 

=== modified file 'gar/gar.lib/gnustep.mk'
--- a/gar/gar.lib/gnustep.mk    2016-06-17 19:08:15 +0000
+++ b/gar/gar.lib/gnustep.mk    2022-10-22 17:06:31 +0000
@@ -7,9 +7,14 @@
 # author(s) shall not be liable in the event that use of the
 # software causes damage.
 
-include ../../../gar/gar.lib/auto.mk
-
-GS_SETUP = . /$(prefix)/share/GNUstep/Makefiles/GNUstep.sh
+
+WORKOBJ = $(WORKSRC)
+# until the future
+
+GS_SETUP = . $(prefix)/share/GNUstep/Makefiles/GNUstep.sh
 CONFIGURE_ENV += $(GS_SETUP) &&
 BUILD_ENV += $(GS_SETUP) &&
 INSTALL_ENV += $(GS_SETUP) &&
+
+include ../../../gar/gar.lib/auto.mk
+

=== modified file 'pkg/freedesktop/harfbuzz/Makefile'
--- a/pkg/freedesktop/harfbuzz/Makefile 2022-06-23 18:24:28 +0000
+++ b/pkg/freedesktop/harfbuzz/Makefile 2022-10-22 17:06:31 +0000
@@ -23,7 +23,7 @@
 
 NAME =    harfbuzz
 GARNAME = harfbuzz
-GARVERSION = 4.3.0
+GARVERSION = 5.3.0
 HOME_URL = http://www.freedesktop.org/wiki/Software/HarfBuzz
 DESCRIPTION = An OpenType text-shaping engine, Middle Eastern scripts
 define BLURB

=== modified file 'pkg/freedesktop/harfbuzz/sha256sums'
--- a/pkg/freedesktop/harfbuzz/sha256sums       2022-06-23 18:24:28 +0000
+++ b/pkg/freedesktop/harfbuzz/sha256sums       2022-10-22 17:06:31 +0000
@@ -1,1 +1,1 @@
-a49628f4c4c8e6d8df95ef44935a93446cf2e46366915b0e3ca30df21fffb530  
download/harfbuzz-4.3.0.tar.xz
+a05e19e3f52da24ed071522f0fddf872157d7d25e869cfd156cd6f1e81c42152  
download/harfbuzz-5.3.0.tar.xz

=== modified file 'pkg/gnu/gnufdisk/Makefile'
--- a/pkg/gnu/gnufdisk/Makefile 2022-10-22 09:37:35 +0000
+++ b/pkg/gnu/gnufdisk/Makefile 2022-10-22 17:06:31 +0000
@@ -1,6 +1,8 @@
 # Copyright © 2013 Brandon Invergo <brandon@invergo.net>
+# Copyright © 2022 Carl Hansen
 #
-# This file is part of GSRC.
+# This file is part of GSRC, the GNU Source Release Collection.
+# http://www.gnu.org/software/gsrc
 #
 # GSRC is free software: you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -14,8 +16,11 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with GSRC.  If not, see <http://www.gnu.org/licenses/>.
+#
+#
+# Send bug reports and comments about GSRC problems to bug-gsrc@gnu.org
 
-NAME = GNU fdisk
+NAME = GNUfdisk
 GARNAME = gnufdisk
 #UPSTREAMNAME = gnufdisk
 GARVERSION = 2.0.0a1

=== modified file 'pkg/gnustep/AClock/Makefile'
--- a/pkg/gnustep/AClock/Makefile       2022-08-18 20:56:57 +0000
+++ b/pkg/gnustep/AClock/Makefile       2022-10-22 17:06:31 +0000
@@ -25,7 +25,6 @@
 Has alarms and ringing.
 endef
 
-# Note: builds, but doesn't run for me. Debugging welcome.
 
 ######################################################################
 
@@ -37,7 +36,7 @@
 BUILDDEPS =
 LIBDEPS =
 CONFIGURE_SCRIPTS =
-
+WORKOBJ =$(WORKSRC)
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/Addresses/Makefile'
--- a/pkg/gnustep/Addresses/Makefile    2017-08-01 04:37:36 +0000
+++ b/pkg/gnustep/Addresses/Makefile    2022-10-22 17:06:31 +0000
@@ -44,6 +44,7 @@
 
 CONFIGURE_SCRIPTS=
 
+WORKOBJ = $(WORKSRC)
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/Cynthiune/Makefile'
--- a/pkg/gnustep/Cynthiune/Makefile    2017-08-01 04:37:36 +0000
+++ b/pkg/gnustep/Cynthiune/Makefile    2022-10-22 17:06:31 +0000
@@ -48,6 +48,8 @@
 LIBDEPS =
 CONFIGURE_SCRIPTS=
 
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/DataBasin/Makefile'
--- a/pkg/gnustep/DataBasin/Makefile    2018-07-09 16:57:42 +0000
+++ b/pkg/gnustep/DataBasin/Makefile    2022-10-22 17:06:31 +0000
@@ -41,6 +41,8 @@
 LIBDEPS = 
 CONFIGURE_SCRIPTS=
 
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/DataBasinKit/Makefile'
--- a/pkg/gnustep/DataBasinKit/Makefile 2018-07-09 16:56:37 +0000
+++ b/pkg/gnustep/DataBasinKit/Makefile 2022-10-22 17:06:31 +0000
@@ -44,6 +44,8 @@
 LIBDEPS =
 CONFIGURE_SCRIPTS=
 
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/FTP/Makefile'
--- a/pkg/gnustep/FTP/Makefile  2017-10-30 09:42:35 +0000
+++ b/pkg/gnustep/FTP/Makefile  2022-10-22 17:06:31 +0000
@@ -36,6 +36,9 @@
 BUILDDEPS =
 LIBDEPS =
 # apt install  libicns-dev libicns1 icnsutils
+
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/GMastermind/Makefile'
--- a/pkg/gnustep/GMastermind/Makefile  2017-08-01 04:37:36 +0000
+++ b/pkg/gnustep/GMastermind/Makefile  2022-10-22 17:06:31 +0000
@@ -21,7 +21,6 @@
 HOME_URL = http://www.non-gnu.org/gap/gmastermind/index.html
 DESCRIPTION = GNUstep GUI Mastermind game
 define BLURB
-
 endef
 
 ######################################################################
@@ -35,6 +34,8 @@
 LIBDEPS =
 CONFIGURE_SCRIPTS=
 
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/batmon/Makefile'
--- a/pkg/gnustep/batmon/Makefile       2017-08-01 04:37:36 +0000
+++ b/pkg/gnustep/batmon/Makefile       2022-10-22 17:06:31 +0000
@@ -1,6 +1,5 @@
 # Copyright © 2015 Carl Hansen <carlhansen@gnu.org>
 #
-#
 # This file is part of GSRC.
 #
 # GSRC is free software: you can redistribute it and/or modify it
@@ -38,6 +37,9 @@
 BUILDDEPS =
 LIBDEPS =
 CONFIGURE_SCRIPTS=
+
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/coregtk/Makefile'
--- a/pkg/gnustep/coregtk/Makefile      2021-07-27 23:02:36 +0000
+++ b/pkg/gnustep/coregtk/Makefile      2022-10-22 17:06:31 +0000
@@ -46,6 +46,8 @@
 
 CONFIGURE_SCRIPTS =
 WORKSRC = $(WORKDIR)/$(DISTNAME)/src
+WORKOBJ = $(WORKSRC)
+
 
 BUILDDEPS =
 LIBDEPS =

=== modified file 'pkg/gnustep/enterprise/Makefile'
--- a/pkg/gnustep/enterprise/Makefile   2017-08-01 03:10:08 +0000
+++ b/pkg/gnustep/enterprise/Makefile   2022-10-22 17:06:31 +0000
@@ -34,6 +34,8 @@
 #net-snmp
 LIBDEPS = 
 
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/gemas/Makefile'
--- a/pkg/gnustep/gemas/Makefile        2018-09-01 08:39:25 +0000
+++ b/pkg/gnustep/gemas/Makefile        2022-10-22 17:06:31 +0000
@@ -37,6 +37,8 @@
 LIBDEPS =
 CONFIGURE_SCRIPTS =
 
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/gnumail/Makefile'
--- a/pkg/gnustep/gnumail/Makefile      2018-06-15 22:21:39 +0000
+++ b/pkg/gnustep/gnumail/Makefile      2022-10-22 17:06:31 +0000
@@ -41,6 +41,8 @@
 BUILDDEPS = 
 LIBDEPS = 
 
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/gnustep-corebase/Makefile'
--- a/pkg/gnustep/gnustep-corebase/Makefile     2021-12-09 05:51:34 +0000
+++ b/pkg/gnustep/gnustep-corebase/Makefile     2022-10-22 17:06:31 +0000
@@ -48,6 +48,8 @@
 BUILDDEPS =
 LIBDEPS = gnustep-make gnustep-base  gnustep-gui gnustep-back
 
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/gnustep-examples/Makefile'
--- a/pkg/gnustep/gnustep-examples/Makefile     2017-08-01 04:37:36 +0000
+++ b/pkg/gnustep/gnustep-examples/Makefile     2022-10-22 17:06:31 +0000
@@ -44,6 +44,8 @@
 
 CONFIGURE_SCRIPTS =
 
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 include ../../../gar/gar.lib/gnustep.mk
 

=== modified file 'pkg/gnustep/gnustep-make/Makefile'
--- a/pkg/gnustep/gnustep-make/Makefile 2022-10-21 07:16:30 +0000
+++ b/pkg/gnustep/gnustep-make/Makefile 2022-10-22 17:06:31 +0000
@@ -35,7 +35,7 @@
 endef
 
 ######################################################################
-# 
https://github.com/gnustep/tools-make/releases/download/make-2_8_0/gnustep-make-2.8.0.tar.gz
+# 
https://github.com/gnustep/tools-make/releases/download/make-2_9_0/gnustep-make-2.9.0.tar.gz
 # https://github.com/gnustep/tools-make.git
 
 
@@ -48,6 +48,8 @@
 BUILDDEPS =
 LIBDEPS =
 
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 
 include ../../../gar/gar.lib/auto.mk

=== modified file 'pkg/gnustep/gnustep-ppd/Makefile'
--- a/pkg/gnustep/gnustep-ppd/Makefile  2022-08-18 20:56:57 +0000
+++ b/pkg/gnustep/gnustep-ppd/Makefile  2022-10-22 17:06:31 +0000
@@ -42,6 +42,8 @@
 BUILDDEPS = gnustep-make gnustep-base gnustep-gui gnustep-back
 LIBDEPS = 
 
+WORKOBJ = $(WORKSRC)
+
 ######################################################################
 
 include ../../../gar/gar.lib/gnustep.mk

=== modified file 'pkg/gnustep/libobjc2/Makefile'
--- a/pkg/gnustep/libobjc2/Makefile     2021-12-29 04:05:31 +0000
+++ b/pkg/gnustep/libobjc2/Makefile     2022-10-22 17:06:31 +0000
@@ -46,7 +46,7 @@
 SIGFILES =
 GIT_REVISION = master
 
-WORKOBJ = $(WORKSRC)/Build
+WORKOBJ = $(WORKSRC)
 
 BUILDDEPS = cmake
 LIBDEPS =
@@ -61,9 +61,9 @@
 #HINT
 # doen't build with gcc, needs clang, unless someone fixes it
 
-CC=/bin/clang
-cc=/bin/clang
-C++=/bin/clang
-c++=/bin/clang
+CC=/usr/bin/clang
+cc=/usr/bin/clang
+C++=/usr/bin/clang
+c++=/usr/bin/clang
 CFLAGS+=-std=c11
 

=== modified file 'pkg/other/cfitsio/Makefile'
--- a/pkg/other/cfitsio/Makefile        2022-10-13 01:57:18 +0000
+++ b/pkg/other/cfitsio/Makefile        2022-10-22 17:06:31 +0000
@@ -40,12 +40,15 @@
 MASTER_SUBDIR = /FTP/software/fitsio/c/
 DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz
 SIGFILES = 
-LICENSE = from U.S.A. government, paid by tax, non-copyrightable; see 
License.txt
+LICENSE = from U.S.A. government, paid by tax, free to use in USA, see 
License.txt
 
 BUILDDEPS =
 LIBDEPS =
+CONFIGURE_ARGS = --enable-reentrant --enable-sse2 --enable-ssse3 \
+                                --with-gsiftp-flavour --with-gsiftp  
-with-bzip2 
+BUILD_ARGS = shared
 
-#LDFLAGS = -lcurl
+# LDFLAGS = -lcurl
 
 WORKOBJ = $(WORKSRC)
 ######################################################################

=== modified file 'pkg/other/cfitsio/config.mk'
--- a/pkg/other/cfitsio/config.mk       2021-09-21 23:45:36 +0000
+++ b/pkg/other/cfitsio/config.mk       2022-10-22 17:06:31 +0000
@@ -1,5 +1,4 @@
 ## Configuration options  ##
 
 CONFIGURE_OPTS ?=
-#--enable-sse2 --enable-reentrant
-BUILD_OPTS ?= 
+BUILD_OPTS ?=  shared

=== modified file 'pkg/other/lynx/Makefile'
--- a/pkg/other/lynx/Makefile   2022-05-04 19:52:04 +0000
+++ b/pkg/other/lynx/Makefile   2022-10-22 17:06:31 +0000
@@ -39,6 +39,8 @@
 
 BUILDDEPS = 
 LIBDEPS =
+CONFIGURE_ARGS := --with-ssl --with-gnutls --enable-rpath
+WORKOBJ =$(WORKSRC)
 
 include ../../../gar/gar.lib/auto.mk
 include config.mk

=== modified file 'pkg/other/lynx/config.mk'
--- a/pkg/other/lynx/config.mk  2022-10-06 04:13:17 +0000
+++ b/pkg/other/lynx/config.mk  2022-10-22 17:06:31 +0000
@@ -1,5 +1,6 @@
 ## Configuration options 
 
-CONFIGURE_OPTS ?= --with-ssl
+CONFIGURE_OPTS ?=
+#--with-ssl
 #--enable-rpath
 BUILD_OPTS ?=


reply via email to

[Prev in Thread] Current Thread [Next in Thread]