blob: a482d4cfb41a9f3f56b5076fb0c778c3d701c6f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
how to anonymously get the current source
=========================================
git clone git://projects.vdr-developer.org/vdr-plugin-targavfd.git targavfd
how to make a new release
=========================
adapt version in targavfd.c and HISTORY
set date in HISTORY
git commit
git status # must be clean
git tag -a -m'new release' '0.0.5'
git push --tags
cd
cd tmp
rm -rf targavfd-0.0.5
git clone git://projects.vdr-developer.org/vdr-plugin-targavfd.git targavfd-0.0.5
cd targavfd-0.0.5
git checkout 0.0.5
rm -rf .git*
cd ..
tar cfz vdr-targavfd-0.0.5.tgz targavfd-0.0.5
in the project configuration, add new version 0.0.5
upload vdr-targavfd-0.0.5.tgz
announce new version at vdr@linuxtv.org
|