[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Gsrc-commit] trunk r10230: gnome etc
From: |
Carl Hansen |
Subject: |
[Gsrc-commit] trunk r10230: gnome etc |
Date: |
Thu, 16 May 2024 22:36:29 -0400 (EDT) |
User-agent: |
Bazaar (2.7.0dev1) |
------------------------------------------------------------
revno: 10230
revision-id: carlhansen1234@gmail.com-20240517023622-9w692bgq6kpk0x1q
parent: carlhansen1234@gmail.com-20240517023515-4c3s5sc72pr3xi2s
committer: carlhansen1234@gmail.com
branch nick: trunk
timestamp: Thu 2024-05-16 19:36:22 -0700
message:
gnome etc
modified:
gar/gar.lib.mk gar.lib.mk-20160617013741-ul4q527k85thcz4p-1
gar/gar.lib/mesonninja.mk mesonninja.mk-20171030065946-2eocvxzl13nbloqy-1
gar/gar.mk gar.mk-20160617013745-r4h3dj0kiuppihsx-1
pkg/freedesktop/pkg-config/Makefile
makefile-20160617013746-7ygosxqw3lxxvo7f-1297
pkg/gnome/gdk-pixbuf/Makefile makefile-20160617013746-7ygosxqw3lxxvo7f-483
pkg/gnome/gdk-pixbuf/sha256sums sha256sums-20160617013746-7ygosxqw3lxxvo7f-487
pkg/gnome/gnome-maps/Makefile makefile-20160617013746-7ygosxqw3lxxvo7f-697
pkg/gnome/phosh/Makefile makefile-20211227185055-px60a148e88r22wm-3
pkg/gnome/phosh/sha256sums sha256sums-20211227185055-px60a148e88r22wm-4
pkg/gnu/gimp/Makefile makefile-20160617014725-uokjfnggs70iry9h-726
=== modified file 'gar/gar.lib.mk'
--- a/gar/gar.lib.mk 2024-04-26 19:26:59 +0000
+++ b/gar/gar.lib.mk 2024-05-17 02:36:22 +0000
@@ -1,6 +1,6 @@
#e Standard rules for GARStow ports. aka GSRC
#
-# Copyright (C) 2017-2023 Carl Hansen
+# Copyright (C) 2017-2024 Carl Hansen
# Copyright (C) 2012, 2013, 2014, 2016 Brandon Invergo
# Copyright (C) 2010, 2011 Brian Gough
# Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Adam Sampson
@@ -177,21 +177,28 @@
gitpull:
@printf "git pulling $(DOWNLOADDIRGIT)/$(GARNAME)\n";
- mkdir -p $(DOWNLOADDIRGIT)/$(GARNAME)
(cd $(DOWNLOADDIRGIT)/$(GARNAME) && git pull )
+
+gitpullrecurse:
+ @printf "git pulling $(DOWNLOADDIRGIT)/$(GARNAME) with --recurse\n";
+ (cd $(DOWNLOADDIRGIT)/$(GARNAME) && git pull --recurse )
+
+# ?? --recurse or --recurse-submodules ??
+
# don't MAKECOOKIE I think
fetch-git:
@if [ -d $(DOWNLOADDIRGIT)/$(GARNAME)/.git ]; then $(MAKE) gitpull ;
else \
printf "git cloning and checking out $(GARNAME)\n"; \
mkdir -p $(DOWNLOADDIRGIT)/$(GARNAME); \
- cd $(DOWNLOADDIRGIT) && git clone --depth=1 $(GIT_PATH)
$(GARNAME) ; \
+ cd $(DOWNLOADDIRGIT)/$(GARNAME) && git clone --depth=1
$(GIT_PATH) ; \
( cd $(GARNAME) && git checkout $(GIT_REVISION) ) ; fi
+
# don't MAKECOOKIE I think
# almost same as above; this could be rewritten, using a variable for git
options....
fetch-gitrecursive:
- @if [ -d $(DOWNLOADDIRGIT)/$(GARNAME)/.git ]; then $(MAKE) gitpull
--recurse-submodules ; else \
+ @if [ -d $(DOWNLOADDIRGIT)/$(GARNAME)/.git ]; then $(MAKE)
gitpullrecurse ; else \
printf "git cloning and checking out $(GARNAME)\n"; \
mkdir -p $(DOWNLOADDIRGIT)/$(GARNAME); \
cd $(DOWNLOADDIRGIT) && git clone --depth=1 --recursive
$(GIT_PATH) $(GARNAME) ; \
=== modified file 'gar/gar.lib/mesonninja.mk'
--- a/gar/gar.lib/mesonninja.mk 2024-04-28 03:39:38 +0000
+++ b/gar/gar.lib/mesonninja.mk 2024-05-17 02:36:22 +0000
@@ -45,6 +45,7 @@
mkdir -p $(WORKOBJ)
@echo WORKSRC==$(WORKSRC)
@echo WORKOBJ==$(WORKOBJ)
+ @echo MESON_OPTS are $(MESON_OPTS)
@echo
cd $(WORKSRC) && meson setup ../../$(WORKOBJ) --prefix=$(prefix)
$(MESON_OPTS)
@echo mbr $(MESON_BUILD_ROOT)
=== modified file 'gar/gar.mk'
--- a/gar/gar.mk 2023-10-25 06:59:30 +0000
+++ b/gar/gar.mk 2024-05-17 02:36:22 +0000
@@ -390,7 +390,8 @@
# Check in a trivially-updated package.
ci:
- brz commit . -m 'update $(GARNAME) to $(GARVERSION)'
+ bzr commit . -m 'update $(GARNAME) to $(GARVERSION)'
+ # brz commit . -m 'update $(GARNAME) to $(GARVERSION)'
#bzr commit . -m 'update $(GARNAME) to $(GARVERSION)'
=== modified file 'pkg/freedesktop/pkg-config/Makefile'
--- a/pkg/freedesktop/pkg-config/Makefile 2024-01-17 01:23:44 +0000
+++ b/pkg/freedesktop/pkg-config/Makefile 2024-05-17 02:36:22 +0000
@@ -41,7 +41,7 @@
include ../../../gar/varb.mk
include config.mk
-CONFIGURE_ARGS = --with-internal-glib
+#CONFIGURE_ARGS = --with-internal-glib
install-this: build
make -C $(WORKOBJ) DESTDIR=$(packageprefix) install
=== modified file 'pkg/gnome/gdk-pixbuf/Makefile'
--- a/pkg/gnome/gdk-pixbuf/Makefile 2024-04-22 20:16:11 +0000
+++ b/pkg/gnome/gdk-pixbuf/Makefile 2024-05-17 02:36:22 +0000
@@ -21,7 +21,7 @@
NAME = gdk-pixbuf
GARNAME = gdk-pixbuf
-GARVERSION = 2.42.11
+GARVERSION = 2.42.12
HOME_URL = http://www.gnome.org/
DESCRIPTION = An image loading library
define BLURB
=== modified file 'pkg/gnome/gdk-pixbuf/sha256sums'
--- a/pkg/gnome/gdk-pixbuf/sha256sums 2024-04-22 20:16:11 +0000
+++ b/pkg/gnome/gdk-pixbuf/sha256sums 2024-05-17 02:36:22 +0000
@@ -1,2 +1,2 @@
-49dcb402388708647e8c321d56b6fb30f21e51e515d0c5a942268d23052a2f00
download/gdk-pixbuf-2.42.11.tar.xz
-3aeb8b86d41cc2418c6ab269b008fcb161942c80f2b08f2fb703c6f2e93cb05c
download/gdk-pixbuf-2.42.11.sha256sum
+b9505b3445b9a7e48ced34760c3bcb73e966df3ac94c95a148cb669ab748e3c7
download/gdk-pixbuf-2.42.12.tar.xz
+5f92e234671a29279d0b3a817633760b8b95b1ec0b1e970c181203b0343c9294
download/gdk-pixbuf-2.42.12.sha256sum
=== modified file 'pkg/gnome/gnome-maps/Makefile'
--- a/pkg/gnome/gnome-maps/Makefile 2024-05-13 02:17:44 +0000
+++ b/pkg/gnome/gnome-maps/Makefile 2024-05-17 02:36:22 +0000
@@ -1,4 +1,4 @@
-# Copyright © 2016, 2017, 2018, 2019, 2022 Carl Hansen <carlhansen@gnu.org>
+# Copyright © 2016, 2017, 2018, 2019, 2022, 2024 Carl Hansen
<carlhansen@gnu.org>
#
# This file is part of GSRC, the GNU Source Release Collection.
# http://www.gnu.org/software/gsrc
=== modified file 'pkg/gnome/phosh/Makefile'
--- a/pkg/gnome/phosh/Makefile 2024-04-12 07:05:26 +0000
+++ b/pkg/gnome/phosh/Makefile 2024-05-17 02:36:22 +0000
@@ -20,7 +20,7 @@
NAME = phosh
GARNAME = phosh
-GARVERSION = 0.38.0
+GARVERSION = 0.39.0
HOME_URL = http://www.gnome.org/
DESCRIPTION = A pure wayland shell for mobile devices like Purism_s Librem 5.
define BLURB
=== modified file 'pkg/gnome/phosh/sha256sums'
--- a/pkg/gnome/phosh/sha256sums 2024-04-12 07:05:26 +0000
+++ b/pkg/gnome/phosh/sha256sums 2024-05-17 02:36:22 +0000
@@ -1,2 +1,2 @@
-c27ae4145ceed0e0536533b9c2bf5f756297bbdccb2f6e8c7beb80d2c9be9806
download/phosh-0.38.0.tar.xz
-9344593bee6d092a119d4c96782c53278ee37cd93dd4f82433e99834ff80902d
download/phosh-0.38.0.sha256sum
+9f565e81224052bd4b6e7d3e331eb8bc7865e1bc122447673b5c4dfd07442a5c
download/phosh-0.39.0.tar.xz
+3c7992f46c82ee674a8f0d4602b7243096dba49eeeb151b97aa57de76d10169c
download/phosh-0.39.0.sha256sum
=== modified file 'pkg/gnu/gimp/Makefile'
--- a/pkg/gnu/gimp/Makefile 2024-05-13 01:38:33 +0000
+++ b/pkg/gnu/gimp/Makefile 2024-05-17 02:36:22 +0000
@@ -51,6 +51,6 @@
######################################################################
-include ../../../gar/gar.lib/auto.mk
+include ../../../gar/gar.lib/autotools.mk
include config.mk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Gsrc-commit] trunk r10230: gnome etc,
Carl Hansen <=