Skip to Content.
Sympa Menu

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

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 (549715d2014fbb61e9bd3660089cf67e1877bc65)
  • Date: Thu, 10 Mar 2022 20:43:25 +0000

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

devel/bmake/HISTORY | 1 +
devel/bmake/PROVIDES | 1 +
devel/make/HISTORY | 3 +++
devel/make/PROVIDES | 1 +
smgl/basesystem/DEPENDS | 9 ++++-----
smgl/basesystem/DETAILS | 2 +-
smgl/basesystem/HISTORY | 7 +++++++
utils/procps-ng/HISTORY | 3 +++
utils/procps-ng/PROVIDES | 1 +
utils/procps/HISTORY | 3 +++
utils/procps/PROVIDES | 1 +
11 files changed, 26 insertions(+), 6 deletions(-)

New commits:
commit 549715d2014fbb61e9bd3660089cf67e1877bc65
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

basesystem: PATCHLEVEL++

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

basesystem: use the locale spell only with glibc

commit 75e773ded90c5e595bd0fdc66c12fc866728f1f5
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

basesystem: remove installwatch

Needs to be replaced, it only works with glibc.

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

basesystem: Replace procps with PROCPS

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

procps-ng: provide PROCPS

commit 114ee25f0cf2109100c42f49b8fbfc29b3eb647f
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

procps: provide PROCPS

commit 55737758c6e8d42c5e2385f185b114e3d6b63699
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

basesystem: Replace make with MAKE

commit 5d034cafc12611c1b59d64a05062fdf578ec1188
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

make: provide MAKE

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

bmake: provide MAKE

diff --git a/devel/bmake/HISTORY b/devel/bmake/HISTORY
index 74b58e2..ec97233 100644
--- a/devel/bmake/HISTORY
+++ b/devel/bmake/HISTORY
@@ -1,5 +1,6 @@
2022-03-10 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 20220303
+ * PROVIDES: added MAKE

2021-01-24 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 20210110
diff --git a/devel/bmake/PROVIDES b/devel/bmake/PROVIDES
new file mode 100644
index 0000000..38f65f8
--- /dev/null
+++ b/devel/bmake/PROVIDES
@@ -0,0 +1 @@
+MAKE
diff --git a/devel/make/HISTORY b/devel/make/HISTORY
index 9977cb6..55b73a8 100644
--- a/devel/make/HISTORY
+++ b/devel/make/HISTORY
@@ -1,3 +1,6 @@
+2022-03-10 Ismael Luceno <ismael AT sourcemage.org>
+ * PROVIDES: added MAKE
+
2020-07-28 Eric Sandall <sandalle AT sourcemage.org>
* INSTALL: Make symlink in SOURCE_DIRECTORY then copy and preserve
Otherwise recasts without castfs break with /usr/bin/gmake already
diff --git a/devel/make/PROVIDES b/devel/make/PROVIDES
new file mode 100644
index 0000000..38f65f8
--- /dev/null
+++ b/devel/make/PROVIDES
@@ -0,0 +1 @@
+MAKE
diff --git a/smgl/basesystem/DEPENDS b/smgl/basesystem/DEPENDS
index 77bd377..fb40bee 100755
--- a/smgl/basesystem/DEPENDS
+++ b/smgl/basesystem/DEPENDS
@@ -14,7 +14,8 @@ case "$HOST" in
depends musl &&
depends libuargp ;;
*)
- depends glibc ;;
+ depends glibc &&
+ depends locale ;;
esac &&
depends GNUPG &&
depends grep &&
@@ -22,10 +23,8 @@ depends gzip &&
depends iana-etc &&
depends IFUPDOWN &&
depends INITSCRIPTS &&
-depends installwatch &&
-depends locale &&
depends lzip &&
-depends make &&
+depends MAKE &&
depends pkgconfig &&
. $GRIMOIRE/FUNCTIONS &&
local KVER=$(get_kernel_version) &&
@@ -38,7 +37,7 @@ depends net-tools &&
depends ncurses &&
depends PAGER &&
depends patch &&
-depends procps &&
+depends PROCPS &&
depends readline &&
depends sed &&
depends shadow &&
diff --git a/smgl/basesystem/DETAILS b/smgl/basesystem/DETAILS
index ca09a21..a8aad47 100755
--- a/smgl/basesystem/DETAILS
+++ b/smgl/basesystem/DETAILS
@@ -1,6 +1,6 @@
SPELL=basesystem
VERSION=0.9.9
- PATCHLEVEL=2
+ PATCHLEVEL=3
WEB_SITE=http://www.sourcemage.org
ENTERED=20021013
NO_CACHE="--cache=off"
diff --git a/smgl/basesystem/HISTORY b/smgl/basesystem/HISTORY
index 15684ef..8c2c954 100644
--- a/smgl/basesystem/HISTORY
+++ b/smgl/basesystem/HISTORY
@@ -1,3 +1,10 @@
+2022-03-10 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS: replaced make by MAKE
+ replaced procps by PROCPS
+ removed installwatch
+ use the locale spell only with glibc
+ * DETAILS: PATCHLEVEL++
+
2021-09-18 Ismael Luceno <ismael AT sourcemage.org>
* DEPENDS: added lzip
* DETAILS: PATCHLEVEL++
diff --git a/utils/procps-ng/HISTORY b/utils/procps-ng/HISTORY
index 97a4f08..00e81f3 100644
--- a/utils/procps-ng/HISTORY
+++ b/utils/procps-ng/HISTORY
@@ -1,3 +1,6 @@
+2022-03-10 Ismael Luceno <ismael AT sourcemage.org>
+ * PROVIDES: added PROCPS
+
2021-04-02 Florian Franzmann <bwlf AT bandrate.org>
* DEPENDS: Add missing quotation mark

diff --git a/utils/procps-ng/PROVIDES b/utils/procps-ng/PROVIDES
new file mode 100644
index 0000000..bc4fb48
--- /dev/null
+++ b/utils/procps-ng/PROVIDES
@@ -0,0 +1 @@
+PROCPS
diff --git a/utils/procps/HISTORY b/utils/procps/HISTORY
index 61c3cd1..6a0f746 100644
--- a/utils/procps/HISTORY
+++ b/utils/procps/HISTORY
@@ -1,3 +1,6 @@
+2022-03-10 Ismael Luceno <ismael AT sourcemage.org>
+ * PROVIDES: added PROCPS
+
2021-01-02 Florian Franzmann <bwlf AT bandrate.org>
* CONFLICTS: conflicts with procps-ng

diff --git a/utils/procps/PROVIDES b/utils/procps/PROVIDES
new file mode 100644
index 0000000..bc4fb48
--- /dev/null
+++ b/utils/procps/PROVIDES
@@ -0,0 +1 @@
+PROCPS



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (549715d2014fbb61e9bd3660089cf67e1877bc65), Ismael Luceno, 03/10/2022

Archive powered by MHonArc 2.6.24.

Top of Page