mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
* for future reference batch git rename was done using this command:
find . -maxdepth 3 -type f -name '*5.39*.recipe' | grep -v 1 | a
while read fname; do git mv $fname ${fname//5.39/5.45}; done
(don't forget to repeat for .patchset files)
* batch CHECKSUM_SHA256 update was done using this script:
cd haikuports
tar --exclude download --exclude work* -zcvf kde-frameworks-`date '+%Y-%m-%d-%H-%M-%S'`.tgz kde-frameworks/
find /home/haikuports/kde-frameworks -maxdepth 2 -name "*5.39*.recipe" | while read FNAME; do \
portVersion=5.45.0 ; source $FNAME ; echo $SOURCE_URI $FNAME ;
echo `curl -s -L $SOURCE_URI | sha256sum | head -c 64`
sed -i "s/$CHECKSUM_SHA256/`curl -s -L $SOURCE_URI | sha256sum | head -c 64`/" $FNAME ; done
* the recipes were built in this order
hp extra_cmake_modules
hp phonon
hp karchive
hp kcodecs
hp kconfig
hp kcoreaddons
hp kdbusaddons
hp kguiaddons
hp ki18n
hp kitemmodels
hp kitemviews
hp kwidgetsaddons
hp kwindowsystem
hp solid
hp sonnet
hp threadweaver
hp kauth
hp kcompletion
hp kcrash
hp kdoctools
hp kunitconversion
hp kconfigwidgets
hp kservice
hp kglobalaccel
hp kpackage
hp kemoticons
hp kiconthemes
hp kjobwidgets
hp knotifications
hp ktextwidgets
hp kxmlgui
hp kbookmarks
hp kwallet
hp kio
hp kdeclarative
hp kcmutils
hp kinit
hp knotifyconfig
hp kparts
hp kactivities
hp kded
hp kdesignerplugin
hp breeze_icons
hp kdelibs4support
hp kross
hp kdiagram
37 lines
940 B
Plaintext
37 lines
940 B
Plaintext
From 9c32bdab29b345976eee3b9c1c4bebd76cdcdde2 Mon Sep 17 00:00:00 2001
|
|
From: Aleix Pol <aleixpol@kde.org>
|
|
Date: Sun, 15 Apr 2018 01:39:58 +0200
|
|
Subject: [PATCH] Don't need to run previous iterations commands again
|
|
|
|
Summary: BUG: 393141
|
|
|
|
Test Plan:
|
|
Tested building plasma-workspace, it was clearly faster (although it
|
|
would have finished eventually)
|
|
|
|
Reviewers: #frameworks, arojas, sitter
|
|
|
|
Reviewed By: sitter
|
|
|
|
Subscribers: sitter, heikobecker
|
|
|
|
Tags: #frameworks
|
|
|
|
Differential Revision: https://phabricator.kde.org/D12216
|
|
---
|
|
cmake/build-pofiles.cmake | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/cmake/build-pofiles.cmake b/cmake/build-pofiles.cmake
|
|
index d0991ad..b39be31 100644
|
|
--- a/cmake/build-pofiles.cmake
|
|
+++ b/cmake/build-pofiles.cmake
|
|
@@ -62,6 +62,7 @@ foreach(pofile IN LISTS pofiles)
|
|
if(i EQUAL ${numberOfProcesses})
|
|
_processCommands()
|
|
set(i 0)
|
|
+ set(commands)
|
|
endif()
|
|
endforeach()
|
|
|