Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Frida
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coenen, Joachim
Frida
Commits
6bc003a0
Commit
6bc003a0
authored
8 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
This is release 2.3.5a
parent
5641424b
No related branches found
Branches containing commit
Tags
v2.4.0d
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
distrib/core/HOWTO
+7
-14
7 additions, 14 deletions
distrib/core/HOWTO
pub/CHANGELOG
+1
-1
1 addition, 1 deletion
pub/CHANGELOG
pub/CMakeLists.txt
+1
-1
1 addition, 1 deletion
pub/CMakeLists.txt
with
9 additions
and
16 deletions
distrib/core/HOWTO
+
7
−
14
View file @
6bc003a0
cd /G/f2
### merge devel into master
# git rebase -i HEAD~99 # correct commit messages; do not go past last tag or branch from master
git checkout master
git pull origin master
git merge --no-ff devel
git push origin master
### prepare
git push origin master
vi pub/CMakeLists.txt # increment version number, remove "post-"
vi pub/CHANGELOG
### purge
rm -r /G/f2/pub/build
rm -r /G/f2/pub/qtbuild
cd /G/f2/pub
...
...
@@ -19,18 +15,16 @@ rm *~
rm */*~
rm */*/*~
rm */Doxyfile.bak
### pack
export V=2. # 2.<major>.<minor><bugfix>
export A=frida$V
cd /tmp
rm $A
slink /G/f2/pub $A
tar czvfh ~/data/tgz/$A.tgz $A/*
dl ~/data/tgz/frida2.* # CHECK size
rm $A
### update git
rm $A
cd /G/f2
kcom -m "This is release $V"
kush
...
...
@@ -38,10 +32,10 @@ k tag v$V # Yes! Our IT wants version tags to start with "v".
# to delete erroneous tag: git tag -d $X; git push origin :refs/tags/$X
kush --tags
### upload tgz
ssh wuttke@a mv /www/apps/src/frida/frida2.* /www/apps/src/frida/old/
scp ~/data/tgz/$A.tgz wuttke@a:/www/apps/src/frida/
scp /G/f2/pub/CHANGELOG wuttke@a:/www/apps/src/frida/frida2-CHANGELOG
### advertise
...
...
@@ -54,10 +48,9 @@ git checkout devel
git rebase master
cd /G/f2/pub
vi CMakeLists.txt # version becomes "post-<release>"
kcom -m "Starting post-$V"
kush
### rebuild
cd /G/f2/pub
mkdir build
cd build
...
...
This diff is collapsed.
Click to expand it.
pub/CHANGELOG
+
1
−
1
View file @
6bc003a0
Release 2.3.5a of
Release 2.3.5a of
01feb17:
- CMake machinery now uses variables like ${library_name}_LIBRARY
- Renamed libfrida -> libfridacore, libtrivia -> libfridatrivia
...
...
This diff is collapsed.
Click to expand it.
pub/CMakeLists.txt
+
1
−
1
View file @
6bc003a0
...
...
@@ -8,7 +8,7 @@ set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)
project
(
Frida
)
set
(
Frida_VERSION
post-
2.3.
4d
)
set
(
Frida_VERSION 2.3.
5a
)
include
(
CTest
)
# equivalent to "enable_testing() ???
add_custom_target
(
check COMMAND
${
CMAKE_CTEST_COMMAND
}
)
# => 'make check' is an alias for 'ctest'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment