Skip to content

Commit 569c360

Browse files
committed
* improved collection of localized resources
* modernized the emitted CMakeLists.txt for mulle-objc 0.16
1 parent 54b1a52 commit 569c360

File tree

28 files changed

+299
-118
lines changed

28 files changed

+299
-118
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
*.o
33
build/
44
Build/
5+
kitchen/
56
xcuserdata/
67
project.xcworkspace/
78
mulle-xcode-settings.xcodeproj/nat.pbxuser
@@ -49,4 +50,4 @@ test/
4950
src/PBXSupport/
5051
mulle-project/
5152
generate-brew-formula.sh
52-
.mullex/
53+
.mullex/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
mulle-clang
1+
mulle-clang-cl
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# -- Formula Info --
2+
# If you don't have this file, there will be no homebrew
3+
# formula operations.
4+
#
5+
PROJECT="<|PROJECT_NAME|>" # your project/repository name
6+
DESC="<|PROJECT_NAME|> is a project of sorts"
7+
LANGUAGE="<|PROJECT_LANGUAGE|>" # c,cpp, objc, bash ...
8+
# NAME="${PROJECT}" # formula filename without .rb extension
9+
10+
# OS X brew dependencies, newline separated
11+
#DEPENDENCIES=''
12+
13+
# Debian dependencies, comma separated
14+
#DEBIAN_DEPENDENCIES=""
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# -- Post Release --
2+
# Push stuff into debian repository
3+
#
4+
5+
post_release()
6+
{
7+
exekutor mulle-project-debian
8+
}
9+
Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
11
PUBLISHER="mulle-nat"
22
PUBLISHER_TAP="mulle-kybernetik/software"
33
PUBLISHER_FULLNAME="Mulle kybernetiK"
4-
PUBLISHER_EMAIL="Nat! <[email protected]>"
5-
PUBLISHER_DOMAIN="mulle-kybernetik.com"
6-
#PUBLISHER_LOGO="mulle-objc-logo-opaque-48x48.txt"
7-
PUBLISHER_LOGO="mulle-logo-48x48.txt"
8-
9-
#
10-
# derivable stuff
11-
#
12-
PUBLISHER_PUBLICKEY_URL="http://www.${PUBLISHER_DOMAIN}/dists/admin-pub.asc"
13-
PUBLISHER_DEBIAN_URL="http://www.${PUBLISHER_DOMAIN}"
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
PUBLISHER="You"
2+
PUBLISHER_TAP="your_github_name/homebrew_repo"
3+
PUBLISHER_FULLNAME="You in detail"
4+
PUBLISHER_EMAIL="You <[email protected]>"
5+
PUBLISHER_DOMAIN="your.domain"
6+
7+
#
8+
# derivable stuff for Debian
9+
# Which you will have to set up yourself
10+
# https://www.maxoberberger.net/blog/2013/05/creating-your-own-apt-repository.html
11+
#
12+
PUBLISHER_PUBLICKEY_URL="https://www.${PUBLISHER_DOMAIN}/dists/pubkey.asc"
13+
PUBLISHER_DEBIAN_URL="https://www.${PUBLISHER_DOMAIN}"

.mulle/etc/project/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.6
1+
2.1.0

.mulle/etc/sourcetree/config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Foundation;${FOUNDATION_NODETYPE:-tar};;a5ea764d-4f44-4e76-a6de-12b7ee5310b8;${FOUNDATION_URL:-https://github.com/MulleFoundation/Foundation/archive/${MULLE_BRANCH}.tar.gz};${FOUNDATION_BRANCH:-latest};;;
2-
Foundation-startup;none;no-all-load,no-build,no-cmakeinherit,no-delete,no-dependency,no-fs,no-import,no-share,no-update,only-startup;0F1D646D-A356-4CA6-9134-8B66DFD116D8;;;;;
1+
Foundation;${FOUNDATION_NODETYPE:-tar};no-singlephase;a5ea764d-4f44-4e76-a6de-12b7ee5310b8;${FOUNDATION_URL:-https://github.com/MulleFoundation/Foundation/archive/${MULLE_BRANCH}.tar.gz};${FOUNDATION_BRANCH:-latest};;;
2+
Foundation-startup;${FOUNDATION_STARTUP_NODETYPE:-tar};no-dynamic-link,no-header,no-import,no-intermediate-link;4A3ECF5B-83D4-4C76-A2E0-1177C5316A88;${FOUNDATION_STARTUP_URL:-https://github.com/MulleFoundation/Foundation-startup/archive/${MULLE_BRANCH}.tar.gz};${FOUNDATION_STARTUP_BRANCH:-latest};;;
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#
2+
#
3+
#
4+
export PREFERRED_STARTUP_LIBRARY="Foundation-startup"
5+
6+

.mulle/share/env/environment-plugin.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ export ADDICTION_DIR="${MULLE_VIRTUAL_ROOT}/addiction"
3737
#
3838
# Use common build directory
3939
#
40-
export BUILD_DIR="${MULLE_VIRTUAL_ROOT}/build"
40+
export KITCHEN_DIR="${MULLE_VIRTUAL_ROOT}/kitchen"
4141
#
4242
#
4343
#
44-
export MULLE_SDE_INSTALLED_VERSION="0.37.4"
44+
export MULLE_SDE_INSTALLED_VERSION="0.39.4"
4545

4646

0 commit comments

Comments
 (0)