gsrc-commit
[Top][All Lists]
Advanced

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

[Gsrc-commit] trunk r10143: fix git download partially and bunch of admi


From: Carl Hansen
Subject: [Gsrc-commit] trunk r10143: fix git download partially and bunch of admin touches
Date: Tue, 16 Apr 2024 17:46:13 -0400 (EDT)
User-agent: Bazaar (2.7.0dev1)

------------------------------------------------------------
revno: 10143
revision-id: carlhansen1234@gmail.com-20240416214604-ifxh055nn9jdyvgo
parent: carlhansen@gnu.org-20240416211244-p1h2cs1k2b7zd57v
committer: carlhansen1234@gmail.com
branch nick: trunk
timestamp: Tue 2024-04-16 14:46:04 -0700
message:
  fix git download partially and bunch of admin touches
modified:
  gar/gar.lib.mk                 gar.lib.mk-20160617013741-ul4q527k85thcz4p-1
  pkg/bio/barrnap/sha256sums     sha256sums-20160617195624-kwz1a09vkg4le6fu-72
  pkg/bio/beagle-lib/sha256sums  sha256sums-20171205205121-7i9sp22ogc1uztof-1
  pkg/bio/mrbayes/sha256sums     sha256sums-20160617195624-kwz1a09vkg4le6fu-131
  pkg/bio/newick-utils/sha256sums sha256sums-20160617195624-kwz1a09vkg4le6fu-141
  pkg/bio/prokka/sha256sums      sha256sums-20160617195624-kwz1a09vkg4le6fu-161
  pkg/freedesktop/accountsservice/Makefile 
makefile-20160617013746-7ygosxqw3lxxvo7f-278
  pkg/freedesktop/accountsservice/sha256sums 
sha256sums-20160617013746-7ygosxqw3lxxvo7f-282
  pkg/gnome/gnome-online-miners/sha256sums 
sha256sums-20160617013746-7ygosxqw3lxxvo7f-736
  pkg/gnome/gtk-engines/sha256sums sha256sums-20170522061549-q4nsvaw9mak778it-4
  pkg/gnome/gtk-mac-integration/sha256sums 
sha256sums-20210705195810-v8meuotohmgw80m5-4
  pkg/gnome/gtk-vnc/sha256sums   sha256sums-20160617013746-7ygosxqw3lxxvo7f-931
  pkg/gnome/gtkglext/sha256sums  sha256sums-20170403220411-cwan4nh9jn0zvf3t-4
  pkg/gnome/gtkglextmm/sha256sums sha256sums-20170403230104-zt309twycrizmvoz-4
  pkg/gnome/gtksourceviewmm/sha256sums 
sha256sums-20160617013746-7ygosxqw3lxxvo7f-951
  pkg/gnome/xdg-user-dirs-gtk/sha256sums 
sha256sums-20221014193640-b2xtiai13hfq3jsj-4
  pkg/gnu/anubis/sha256sums      sha256sums-20160617014725-uokjfnggs70iry9h-401
  pkg/gnu/autogen-alpha/sha256sums sha256sums-20201026011830-1007hu56cz0ku0wd-5
  pkg/gnu/gnuhealth-client/sha256sums 
sha256sums-20181229144109-cqucom66oof9khap-5
  pkg/gnu/gnuspeech_sa/sha256sums sha256sums-20160617014725-uokjfnggs70iry9h-890
  pkg/gnu/gpaint/sha256sums      sha256sums-20160617014725-uokjfnggs70iry9h-916
  pkg/gnu/guile-dbi/sha256sums   sha256sums-20160617014725-uokjfnggs70iry9h-977
  pkg/gnu/metahtml/sha256sums    sha256sums-20160617014725-uokjfnggs70iry9h-1376
  pkg/gnu/xnee/sha256sums        sha256sums-20160617014725-uokjfnggs70iry9h-2034
  pkg/gnustep/coregtk/sha256sums sha256sums-20161121035830-235z5tw7gh8dspii-4
  pkg/other/guile-dsv/sha256sums sha256sums-20200512220547-x7xs0r19qige18i3-4
  pkg/other/guile-eris/sha256sums sha256sums-20221010185633-8rgmydtgmryrwzpb-4
  pkg/other/guile-hall/sha256sums sha256sums-20180701215618-guu3zvxbq0t3lk6c-4
  pkg/other/guile-hoot/sha256sums sha256sums-20231203183242-v6s61bk1x7j10gqd-4
  pkg/other/lean4/Makefile       makefile-20230710184822-xw6fpmfpxysr7wef-3
  pkg/other/libmypaint/sha256sums sha256sums-20170901053124-9kgam4xj2ihid0jg-4
  pkg/other/nlopt/sha256sums     sha256sums-20160617200040-lqf8h520dfq0rtk7-56
=== modified file 'gar/gar.lib.mk'
--- a/gar/gar.lib.mk    2024-03-18 04:43:43 +0000
+++ b/gar/gar.lib.mk    2024-04-16 21:46:04 +0000
@@ -185,7 +185,7 @@
        @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 $(GIT_PATH) $(GARNAME)  ; \
+              cd $(DOWNLOADDIRGIT) &&  git clone --depth=1 $(GIT_PATH) 
$(GARNAME)  ; \
              ( cd $(GARNAME) &&  git checkout $(GIT_REVISION) ) ;  fi 
 # don't MAKECOOKIE I think
 
@@ -194,7 +194,7 @@
        @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 --recursive $(GIT_PATH) 
$(GARNAME)  ; \
+              cd $(DOWNLOADDIRGIT) &&  git clone --depth=1 --recursive 
$(GIT_PATH) $(GARNAME)  ; \
              ( cd $(GARNAME) &&  git checkout $(GIT_REVISION) ) ;  fi 
 # don't MAKECOOKIE I think
 

=== modified file 'pkg/bio/barrnap/sha256sums'
--- a/pkg/bio/barrnap/sha256sums        2023-11-26 05:36:53 +0000
+++ b/pkg/bio/barrnap/sha256sums        2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-36c27cd4350531d98b3b2fb7d294a2d35c15b7365771476456d7873ba33cce15  
download/0.9.tar.gz

=== modified file 'pkg/bio/beagle-lib/sha256sums'
--- a/pkg/bio/beagle-lib/sha256sums     2024-01-19 19:04:14 +0000
+++ b/pkg/bio/beagle-lib/sha256sums     2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-9d258cd9bedd86d7c28b91587acd1132f4e01d4f095c657ad4dc93bd83d4f120  
download/v4.0.1.tar.gz

=== modified file 'pkg/bio/mrbayes/sha256sums'
--- a/pkg/bio/mrbayes/sha256sums        2024-01-19 18:49:40 +0000
+++ b/pkg/bio/mrbayes/sha256sums        2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-3eed2e3b1d9e46f265b6067a502a89732b6f430585d258b886e008e846ecc5c6  
download/v3.2.7a.tar.gz

=== modified file 'pkg/bio/newick-utils/sha256sums'
--- a/pkg/bio/newick-utils/sha256sums   2023-01-15 07:01:24 +0000
+++ b/pkg/bio/newick-utils/sha256sums   2024-04-16 21:46:04 +0000
@@ -1,1 +1,1 @@
-2c142a2806f6e1598585c8be5afba6d448c572ad21c142e70d6fd61877fee798  
download/newick-utils-1.6.tar.gz
+102b5f2d45d26d3a8e02904236ca732b224743bec9eb54502683a609910cb334  
download/newick-utils-1.6.tar.gz

=== modified file 'pkg/bio/prokka/sha256sums'
--- a/pkg/bio/prokka/sha256sums 2023-11-26 08:10:22 +0000
+++ b/pkg/bio/prokka/sha256sums 2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-03550e44db5acfb2b583a4a9eef4b500c2cc33ccad08a9282cdd2764950f6876  
download/v1.14.5.tar.gz

=== modified file 'pkg/freedesktop/accountsservice/Makefile'
--- a/pkg/freedesktop/accountsservice/Makefile  2022-04-15 23:26:50 +0000
+++ b/pkg/freedesktop/accountsservice/Makefile  2024-04-16 21:46:04 +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
@@ -22,7 +22,7 @@
 
 NAME =    AccountsService
 GARNAME = accountsservice
-GARVERSION = 22.08.8
+GARVERSION = 23.13.9
 HOME_URL = http://www.freedesktop.org/
 DESCRIPTION = AccountsService is a D-Bus service for accessing the list of 
user accounts. 
 define BLURB
@@ -38,8 +38,9 @@
 SIGFILES = 
 
 BUILDDEPS = 
-LIBDEPS = #  glib gobject-introspection polkit-gobject libsystemd-login
+LIBDEPS =
 # apt install libpolkit-gobject-1-dev
+#  glib gobject-introspection polkit-gobject libsystemd-login
 
 ######################################################################
 

=== modified file 'pkg/freedesktop/accountsservice/sha256sums'
--- a/pkg/freedesktop/accountsservice/sha256sums        2022-04-15 23:26:50 
+0000
+++ b/pkg/freedesktop/accountsservice/sha256sums        2024-04-16 21:46:04 
+0000
@@ -1,1 +1,1 @@
-909997a76919fe7dc138a9a01cea70bd622d5a932dbc9fb13010113023a7a391  
download/accountsservice-22.08.8.tar.xz
+adda4cdeae24fa0992e7df3ffff9effa7090be3ac233a3edfdf69d5a9c9b924f  
download/accountsservice-23.13.9.tar.xz

=== modified file 'pkg/gnome/gnome-online-miners/sha256sums'
--- a/pkg/gnome/gnome-online-miners/sha256sums  2019-11-11 06:28:39 +0000
+++ b/pkg/gnome/gnome-online-miners/sha256sums  2024-04-16 21:46:04 +0000
@@ -1,2 +0,0 @@
-845c2260fb12f14315c800d04d60f37e076c7c7b4222587ae75f108562fa52d8  
download/gnome-online-miners-3.34.0.tar.xz
-6e0b1de58f3b8f48ab9d3945b739202edf8247d48e02b518024970cf20770b20  
download/gnome-online-miners-3.34.0.sha256sum

=== modified file 'pkg/gnome/gtk-engines/sha256sums'
--- a/pkg/gnome/gtk-engines/sha256sums  2018-11-04 05:07:30 +0000
+++ b/pkg/gnome/gtk-engines/sha256sums  2024-04-16 21:46:04 +0000
@@ -1,2 +0,0 @@
-e0ed144cdd298bc69b53face0e907369fb6a51f1eb333b5d04331f12758b454c  
download/gtk-engines-2.91.1.tar.bz2
-49915e195738c62a971cd9459d3da7f2a57b2f512a5e77bbdc31c3725423974c  
download/gtk-engines-2.91.1.sha256sum

=== modified file 'pkg/gnome/gtk-mac-integration/sha256sums'
--- a/pkg/gnome/gtk-mac-integration/sha256sums  2021-07-05 20:45:28 +0000
+++ b/pkg/gnome/gtk-mac-integration/sha256sums  2024-04-16 21:46:04 +0000
@@ -1,2 +0,0 @@
-f19e35bc4534963127bbe629b9b3ccb9677ef012fc7f8e97fd5e890873ceb22d  
download/gtk-mac-integration-3.0.1.tar.xz
-9dfa700062845b92ecd69336b3090a992ffbf6deb8b584f51dead94d9ea7f7de  
download/gtk-mac-integration-3.0.1.sha256sum

=== modified file 'pkg/gnome/gtk-vnc/sha256sums'
--- a/pkg/gnome/gtk-vnc/sha256sums      2021-12-19 23:53:19 +0000
+++ b/pkg/gnome/gtk-vnc/sha256sums      2024-04-16 21:46:04 +0000
@@ -1,2 +0,0 @@
-5faaa5823b8cbe8c0b0ba1e456c4e70c4b1ae6685c9fe81a4282d98cf00a211d  
download/gtk-vnc-1.3.0.tar.xz
-9baad6a2f86182a7a35368ecea65bcdf0bfe197e10b9914971b93f1e1e1a1ef6  
download/gtk-vnc-1.3.0.sha256sum

=== modified file 'pkg/gnome/gtkglext/sha256sums'
--- a/pkg/gnome/gtkglext/sha256sums     2017-04-03 22:05:11 +0000
+++ b/pkg/gnome/gtkglext/sha256sums     2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-e5073f3c6b816e7fa67d359d9745a5bb5de94a628ac85f624c992925a46844f9  
download/gtkglext-1.2.0.tar.gz

=== modified file 'pkg/gnome/gtkglextmm/sha256sums'
--- a/pkg/gnome/gtkglextmm/sha256sums   2017-04-03 23:01:26 +0000
+++ b/pkg/gnome/gtkglextmm/sha256sums   2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-8f499c1f95678c56cce908c10bf2c1d0f2267b87e0c480385fa4b128c75bdf7b  
download/gtkglextmm-1.2.0.tar.gz

=== modified file 'pkg/gnome/gtksourceviewmm/sha256sums'
--- a/pkg/gnome/gtksourceviewmm/sha256sums      2021-05-24 02:05:42 +0000
+++ b/pkg/gnome/gtksourceviewmm/sha256sums      2024-04-16 21:46:04 +0000
@@ -1,2 +0,0 @@
-dbb00b1c28e0407cc27d8b07a2ed0b4ea22f92e4b3e3006431cbd6726b6256b5  
download/gtksourceviewmm-3.21.3.tar.xz
-4c7291463862f0dee6372cfd8e496d834ed9c166c00d5d295b837e147130fd7e  
download/gtksourceviewmm-3.21.3.sha256sum

=== modified file 'pkg/gnome/xdg-user-dirs-gtk/sha256sums'
--- a/pkg/gnome/xdg-user-dirs-gtk/sha256sums    2022-10-14 19:36:51 +0000
+++ b/pkg/gnome/xdg-user-dirs-gtk/sha256sums    2024-04-16 21:46:04 +0000
@@ -1,2 +0,0 @@
-534bd563d3c0e3f8dcbf3578cb8ab0e49d3ba41c966d477c8af9438364121e7d  
download/xdg-user-dirs-gtk-0.11.tar.xz
-6c1d9c96dbee57d5ae11b7467928a67733fe5f0a280c31ac8abe3bc41733fc10  
download/xdg-user-dirs-gtk-0.11.sha256sum

=== modified file 'pkg/gnu/anubis/sha256sums'
--- a/pkg/gnu/anubis/sha256sums 2024-01-06 18:38:33 +0000
+++ b/pkg/gnu/anubis/sha256sums 2024-04-16 21:46:04 +0000
@@ -1,3 +1,2 @@
 ff0af3337c462218e5ee244c7ef90188af9efdf095bc05b6333401cf9882af2c  
download/anubis-4.3.tar.gz
-072c0d89c8a31f5cf7c97b4c732cae72a5b72541897e9366149ec659940678a4  
download/anubis-4.2.extern.diff
 637388035a5d552536aa0a6ad583899c11c7e86d0ba110d6363993d62d3cede4  
download/anubis-4.3.tar.gz.sig

=== modified file 'pkg/gnu/autogen-alpha/sha256sums'
--- a/pkg/gnu/autogen-alpha/sha256sums  2020-10-26 01:18:47 +0000
+++ b/pkg/gnu/autogen-alpha/sha256sums  2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-48725c6dd94ca0eb703d0b92d7e7efcad6b5f4e8935a65af0423e2d0cfb4e195  
download/autogen-5.19.96.tar.gz

=== modified file 'pkg/gnu/gnuhealth-client/sha256sums'
--- a/pkg/gnu/gnuhealth-client/sha256sums       2023-02-13 18:52:22 +0000
+++ b/pkg/gnu/gnuhealth-client/sha256sums       2024-04-16 21:46:04 +0000
@@ -1,2 +1,2 @@
-f32948ee4d5591d40ebe95729deedf2fdc40c52ebe82d42939cb41b378a294b6  
download/gnuhealth-client-4.2.0.tar.gz
-3259afddb1c6d5d44dceb1865137df84e085becd5d7b994808fafbe464ab32ae  
download/gnuhealth-client-4.2.0.tar.gz.sig
+025f6bdfa07d5ac78454653d2dfe9dbe8c87c55168cf26bf1c87d30e7b5b06f5  
download/gnuhealth-client-4.2.1.tar.gz
+f7eff6915728d26dd47fea69c6b907fd72d612e962b46e35853d6195caeca390  
download/gnuhealth-client-4.2.1.tar.gz.sig

=== modified file 'pkg/gnu/gnuspeech_sa/sha256sums'
--- a/pkg/gnu/gnuspeech_sa/sha256sums   2023-04-17 00:27:17 +0000
+++ b/pkg/gnu/gnuspeech_sa/sha256sums   2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-52367d302b7944aa593134c798ec1cdb467c10d1bc3aa81b506441e696bf455b  
download/v0.1.8.tar.gz

=== modified file 'pkg/gnu/gpaint/sha256sums'
--- a/pkg/gnu/gpaint/sha256sums 2016-06-17 19:08:15 +0000
+++ b/pkg/gnu/gpaint/sha256sums 2024-04-16 21:46:04 +0000
@@ -1,2 +1,1 @@
 541706460610c8bd917225a0370762b66e378e756afa780e67677eeb0a2dd0eb  
download/gpaint-2-0.3.3.tar.gz
-10431b85676878a769dd0ef18d3d05acd39067e9613ef44ca083811588cda7d2  
download/gpaint-2-0.3.3.drawing.c.diff

=== modified file 'pkg/gnu/guile-dbi/sha256sums'
--- a/pkg/gnu/guile-dbi/sha256sums      2023-07-05 04:41:21 +0000
+++ b/pkg/gnu/guile-dbi/sha256sums      2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-25c38fe7e7176b4340951093fcbd13a9e6532d76399310cb6df19e169ec19347  
download/guile-dbi-2.1.9.tar.gz

=== modified file 'pkg/gnu/metahtml/sha256sums'
--- a/pkg/gnu/metahtml/sha256sums       2016-06-17 19:08:15 +0000
+++ b/pkg/gnu/metahtml/sha256sums       2024-04-16 21:46:04 +0000
@@ -1,8 +1,1 @@
 c1b39352c4868895087b72fa2beb0c0d36e50ce4b7f4e53686ffe15ae8fbd9c9  
download/metahtml-5.091.tar.gz
-c54b2f1b628c7ed2a1144404a52f010e59377f63d124ed9ee40a5fae702c6306  
download/metahtml-5.091-escape-newlines.diff
-e10a10c8f53fa581529c3eb96f6d18d223827548ae4f80cfd3edc74436c116df  
download/metahtml-5.091-force-sys-readline.diff
-19966d8bccbcf88fc4eb5493ae4141fb69fb10b6cc82837ef6ba6c8a28367753  
download/metahtml-5.091-gifq_c-add-errno_h.diff
-88ad839662eafd22bcfb13bb57f215c08f82e55b10eaea5963c3f07b28f198ca  
download/metahtml-5.091-fix-ldflags-typo.diff
-3c7f6fe15ca57dbf65a4bdaa9e1bfda8279ac626579c45d3114c1184826d78a0  
download/metahtml-5.091-make-gd_o-w-fpic.diff
-e912503c13c79cd744125b491deadb69d9eaf127488943eaaf2871030ad38cde  
download/metahtml-5.091-dont-build-docs.diff
-86c99f238549c4d66314f0fbcf11feb08ab7de53f8dc8d1b2f9608a801c165fc  
download/metahtml-5.091-destdir-install.diff

=== modified file 'pkg/gnu/xnee/sha256sums'
--- a/pkg/gnu/xnee/sha256sums   2021-10-08 06:21:07 +0000
+++ b/pkg/gnu/xnee/sha256sums   2024-04-16 21:46:04 +0000
@@ -1,3 +1,2 @@
 52a41e5cf62f81b7a3e5b58124eb3565e1e12028abda63f547fbbe0d98a2c212  
download/xnee-3.19.tar.gz
-6709bce735990431c1ad13ad057154dc2fcec6e9cec8e7ea0a7de0b61f8a9fcf  
download/enum-decl.patch
 7c0d7d44f52659e67b74b5c780adafa0373cbdf6fac87f8e7abd4ac4b2599a4e  
download/xnee-3.19.tar.gz.sig

=== modified file 'pkg/gnustep/coregtk/sha256sums'
--- a/pkg/gnustep/coregtk/sha256sums    2023-04-25 23:09:14 +0000
+++ b/pkg/gnustep/coregtk/sha256sums    2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-b5a13b6a26d9cc2b6a765dc5a9fb51182f0375609a13b63473b57243b6a4b276  
download/v3.22.0.tar.gz

=== modified file 'pkg/other/guile-dsv/sha256sums'
--- a/pkg/other/guile-dsv/sha256sums    2023-10-22 18:20:45 +0000
+++ b/pkg/other/guile-dsv/sha256sums    2024-04-16 21:46:04 +0000
@@ -1,1 +1,1 @@
-bfa9078f8abecd5662e7b4dc60fc031d297b69dc7cc50d3c61faf59b05aaac09  
download/v0.7.1.tar.gz
+18ed61c9af094c41cd6bb164d8370522b3d422d926e0c45c1abc5c6903e885a6  
download/v0.7.1.tar.gz

=== modified file 'pkg/other/guile-eris/sha256sums'
--- a/pkg/other/guile-eris/sha256sums   2023-06-11 19:39:07 +0000
+++ b/pkg/other/guile-eris/sha256sums   2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-d3fa3762cbe22e5d07f7e899a4ceba22d038454a830b7ea8fa2449fb36bba463  
download/v1.1.0.tar.gz

=== modified file 'pkg/other/guile-hall/sha256sums'
--- a/pkg/other/guile-hall/sha256sums   2020-05-16 20:23:57 +0000
+++ b/pkg/other/guile-hall/sha256sums   2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-ec5b1a7e23b0c52f15b27faaf6a3d35cb2dc477ca14042b176220e32c49b51a9  
download/guile-hall-0.3.0.tar.bz2

=== modified file 'pkg/other/guile-hoot/sha256sums'
--- a/pkg/other/guile-hoot/sha256sums   2024-01-31 03:21:59 +0000
+++ b/pkg/other/guile-hoot/sha256sums   2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-c12aa415c17d3d529a59065cefd275917596fb518f03d96fe38fa06efbb9ecfd  
download/guile-hoot-0.3.0.tar.gz

=== modified file 'pkg/other/lean4/Makefile'
--- a/pkg/other/lean4/Makefile  2023-11-26 05:30:16 +0000
+++ b/pkg/other/lean4/Makefile  2024-04-16 21:46:04 +0000
@@ -43,6 +43,7 @@
 
 GIT_REVISION = master
 #GITSRC =  $(BASEDIRABS)/$(DOWNLOADDIRGIT)/$(GARNAME)
+# FIX, cp....
 WORKSRC =               $(DOWNLOADDIRGIT)/$(GARNAME)
 
 WORKOBJ =  $(WORKDIR)/$(GARNAME)-$(GIT_REVISION)-build

=== modified file 'pkg/other/libmypaint/sha256sums'
--- a/pkg/other/libmypaint/sha256sums   2023-01-16 00:29:11 +0000
+++ b/pkg/other/libmypaint/sha256sums   2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-9d888a0f13deeba06f2d63949426f4a5e4656f451b9052e4d8f7fd372a6f274e  
download/v1.6.1.tar.gz

=== modified file 'pkg/other/nlopt/sha256sums'
--- a/pkg/other/nlopt/sha256sums        2022-03-28 18:20:27 +0000
+++ b/pkg/other/nlopt/sha256sums        2024-04-16 21:46:04 +0000
@@ -1,1 +0,0 @@
-db88232fa5cef0ff6e39943fc63ab6074208831dc0031cf1545f6ecd31ae2a1a  
download/v2.7.1.tar.gz


reply via email to

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