Skip to Content.
Sympa Menu

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

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 (1b5a43be42cc8114f52fdcda386266e5d843c8c0)
  • Date: Sat, 10 Jan 2015 10:44:23 -0600

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

ChangeLog | 3 +++
graphics-libs/libpng/DETAILS | 5 ++---
graphics-libs/libpng/HISTORY | 4 ++++
libs/musl/BUILD | 12 ++++++++++++
libs/musl/DETAILS | 24 ++++++++++++++++++++++++
libs/musl/HISTORY | 2 ++
utils/pwgen/DETAILS | 5 ++---
utils/pwgen/HISTORY | 4 +++-
8 files changed, 52 insertions(+), 7 deletions(-)

New commits:
commit 1b5a43be42cc8114f52fdcda386266e5d843c8c0
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

musl: new spell, musl libc

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

libpng 1.2.51

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

pwgen 2.07

diff --git a/ChangeLog b/ChangeLog
index d23af17..3fb0b48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2015-01-10 Ismael Luceno <ismael AT sourcemage.org>
+ * libs/musl: new spell, musl libc
+
2015-01-09 Ismael Luceno <ismael AT sourcemage.org>
* libs/libexplain: new spell, Explain errno values returned by libc
functions
diff --git a/graphics-libs/libpng/DETAILS b/graphics-libs/libpng/DETAILS
index 86da5c5..dcc1159 100755
--- a/graphics-libs/libpng/DETAILS
+++ b/graphics-libs/libpng/DETAILS
@@ -1,10 +1,9 @@
SPELL=libpng
- VERSION=1.2.51
-
SOURCE_HASH=sha512:76ee3a4464932565d81ff6e0f0d973d3b7eda5b3ebc8923caafb92f3f4a7a4f6250316b6b85bc291c031dbf472c81c214c781d845e77176bfecd537ad05d26ba
+ VERSION=1.2.52
+
SOURCE_HASH=sha512:08d305ed07e10b4976d6897e35d745cfa592a9c27027d120a9e61a0566afe08c88abaa150e6e56325a8905b29b79fb5cfdf069a8d23d111c563a002a0dd230d3
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
- SOURCE_URL[1]=ftp://ftp.simplesystems.org/pub/libpng/png/src/$SOURCE
if [[ $ANI_PNG == y ]]; then
SOURCE2=$SPELL-$VERSION-apng.patch.gz
SOURCE2_URL[0]=$SOURCEFORGE_URL/$SPELL-apng/$SOURCE2
diff --git a/graphics-libs/libpng/HISTORY b/graphics-libs/libpng/HISTORY
index d592165..a9a53c0 100644
--- a/graphics-libs/libpng/HISTORY
+++ b/graphics-libs/libpng/HISTORY
@@ -1,3 +1,7 @@
+2015-01-10 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: Fixed SOURCE_URL[1]
+ updated spell to 1.2.52
+
2014-02-18 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 1.2.51

diff --git a/libs/musl/BUILD b/libs/musl/BUILD
new file mode 100755
index 0000000..0d16a70
--- /dev/null
+++ b/libs/musl/BUILD
@@ -0,0 +1,12 @@
+ pfx="$INSTALL_ROOT"/usr
+conf="$INSTALL_ROOT"/etc
+slib="$INSTALL_ROOT"/lib
+ lib="$pfx"/lib/musl
+ inc="$pfx"/include/musl
+./configure \
+ --prefix="$pfx" \
+ --sysconfdir="$conf" \
+ --syslibdir="$slib" \
+ --libdir="$lib" \
+ --includedir="$inc" \
+ $OPTS
diff --git a/libs/musl/DETAILS b/libs/musl/DETAILS
new file mode 100755
index 0000000..e511937
--- /dev/null
+++ b/libs/musl/DETAILS
@@ -0,0 +1,24 @@
+ SPELL=musl
+ VERSION=1.1.5
+ SOURCE="$SPELL-$VERSION.tar.gz"
+ WEB_SITE="http://www.musl-libc.org";
+ SOURCE_URL[0]="$WEB_SITE/releases/${SOURCE}"
+
SOURCE_HASH=sha512:4436887367137cbfc6d34e0f403b8dd36db2a55a5160681fef4de7cc0cb1be38487ea708e6aa6dc1328b61c62868b6cc19f099649c9d12e1ba812dfa8844b772
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ LICENSE[0]="MIT"
+ ENTERED=20150110
+ KEYWORDS=""
+ SHORT="musl libc"
+cat << EOF
+musl, pronounced like the word "mussel", is an MIT-licensed implementation of
+the standard C library targetting the Linux syscall API, suitable for use in
a
+wide range of deployment environments. musl offers efficient static and
dynamic
+linking support, lightweight code and low runtime overhead, strong fail-safe
+guarantees under correct usage, and correctness in the sense of standards
+conformance and safety. musl is built on the principle that these goals are
+best achieved through simple code that is easy to understand and maintain.
+
+The 1.1 release series for musl features coverage for all interfaces defined
+in ISO C99 and POSIX 2008 base, along with a number of non-standardized
+interfaces for compatibility with Linux, BSD, and glibc functionality.
+EOF
diff --git a/libs/musl/HISTORY b/libs/musl/HISTORY
new file mode 100644
index 0000000..513fcd4
--- /dev/null
+++ b/libs/musl/HISTORY
@@ -0,0 +1,2 @@
+2015-01-10 Ismael Luceno <ismael AT sourcemage.org>
+ * BUILD, DETAILS: spell created
diff --git a/utils/pwgen/DETAILS b/utils/pwgen/DETAILS
index 8c39ccd..024b6f9 100755
--- a/utils/pwgen/DETAILS
+++ b/utils/pwgen/DETAILS
@@ -1,13 +1,12 @@
SPELL=pwgen
- VERSION=2.06
+ VERSION=2.07
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=${SOURCEFORGE_URL}/$SPELL/$SOURCE
WEB_SITE=http://pwgen.sourceforge.net
-
SOURCE_HASH=sha512:46cd35292cc0772ae5c89888c862e08ae14854b4d32bfe2c57aa5ab62dab2a3e858255b2a8f3ef94eec32739ea403ad12b872f4a8890d2b5157bc62e48488001
+
SOURCE_HASH=sha512:9c56ff04ca2f6f60126608a25f395ddbc4a3ac59585a6f233c87d993b6388e30b1867d43a6bc5b0f9f1f4064b12ea450eac4f7c9ac2844707a99fad1bbd2664d
LICENSE[0]=GPL
ENTERED=20040529
- UPDATED=20041204
KEYWORDS="utils"
SHORT="Automatic Password generation."

diff --git a/utils/pwgen/HISTORY b/utils/pwgen/HISTORY
index 8044dd5..088d485 100644
--- a/utils/pwgen/HISTORY
+++ b/utils/pwgen/HISTORY
@@ -1,3 +1,6 @@
+2015-01-10 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 2.07
+
2008-12-30 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: updated to 2.06

@@ -12,4 +15,3 @@

2005-12-12 Maurizio Boriani <baux AT sourcemage.org>
* DETAILS: created the spell.
-



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (1b5a43be42cc8114f52fdcda386266e5d843c8c0), Ismael Luceno, 01/10/2015

Archive powered by MHonArc 2.6.24.

Top of Page