New commits:
commit 9e344e03b790bd34ae59134617d5c29539e62917
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>
python - fix install
commit 5c796b50212af9edca82a00c13a6896c09335b2e
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>
python3 - fix install
commit 9b953abbd298130263fe6791a3a36e41c1c7d4d6
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>
libressl: => 2.8.1
commit 83a9205c14037ec58f905bb0e0612b197525c76c
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>
krita: => 4.1.3
diff --git a/crypto/libressl/DETAILS b/crypto/libressl/DETAILS
index 70800d5..bf9a8ac 100755
--- a/crypto/libressl/DETAILS
+++ b/crypto/libressl/DETAILS
@@ -1,6 +1,6 @@
SPELL=libressl
if [[ "$LIBRESSL_BRANCH" == "devel" ]]; then
- VERSION=2.8.0
+ VERSION=2.8.1
SECURITY_PATCH=8
elif [[ "$LIBRESSL_BRANCH" == "stable" ]]; then
VERSION=2.7.4
diff --git a/crypto/libressl/HISTORY b/crypto/libressl/HISTORY
index f98e84f..b142457 100644
--- a/crypto/libressl/HISTORY
+++ b/crypto/libressl/HISTORY
@@ -1,3 +1,6 @@
+2018-09-27 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.8.1
+
2018-08-06 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: devel version 2.8.0, reorganized multiversioning:
stable is 2.7.4, old is 2.5.5
diff --git a/devel/python/BUILD b/devel/python/BUILD
index ab8bcd5..a156a3a 100755
--- a/devel/python/BUILD
+++ b/devel/python/BUILD
@@ -9,14 +9,4 @@ if [[ -f
$INSTALL_ROOT/usr/lib/python$PYTHON_VERSION/pydcop.py ]]; then
"$SOURCE_DIRECTORY/spell-tmp"
fi &&
-default_build &&
-
-# python -c 'print "(c)", "lynx"*3'
-# can only have one primary python, the others must be alt
-if [[ $PY2K == y ]]; then
- make install DESTDIR="$SOURCE_DIRECTORY/anywhere/$INSTALL_ROOT"
-else
- make altinstall DESTDIR="$SOURCE_DIRECTORY/anywhere/$INSTALL_ROOT"
-fi &&
-
-message "${MESSAGE_COLOR}Fake stage complete, installing to real
path...${DEFAULT_COLOR}"
+default_build
diff --git a/devel/python/HISTORY b/devel/python/HISTORY
index a1345d6..2e55fb7 100644
--- a/devel/python/HISTORY
+++ b/devel/python/HISTORY
@@ -1,3 +1,7 @@
+2018-09-27 Treeve Jelbert <treeve AT sourcemage.org>
+ * BUILD INSTALL: remove fake install
+ not needed if staging is disabled, also fixes segfault during
install
+
2018-04-30 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 2.7.15, SECURITY_PATCH++,
(CVE-2018-1060, CVE-2018-1061, CVE-2017-9233, CVE-2016-9063,
diff --git a/devel/python/INSTALL b/devel/python/INSTALL
index 71abc31..d5b4166 100755
--- a/devel/python/INSTALL
+++ b/devel/python/INSTALL
@@ -1,4 +1,9 @@
-cp -av "$SOURCE_DIRECTORY/anywhere/$INSTALL_ROOT/usr" "$INSTALL_ROOT/" &&
+# can only have one primary python, the others must be alt
+if [[ $PY2K == y ]]; then
+ make install DESTDIR="$INSTALL_ROOT"
+else
+ make altinstall DESTDIR="$INSTALL_ROOT"
+fi &&