~ubuntu-branches/ubuntu/edgy/digikam/edgy-proposed

« back to all changes in this revision

Viewing changes to digikam/release_digikam_cl.sh

  • Committer: Bazaar Package Importer
  • Author(s): Achim Bohnet
  • Date: 2006-05-15 01:15:02 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515011502-kpyuz7766hpbuia8
Tags: 0.8.2~rc1-0ubuntu1
* sync with debian (UVF see #44102)
  0.8.2~rc1-0ubuntu1 is identical to debian's 0.8.1+0.8.2-rc1-1.
  Version was changed due to latest 0.8.1.ubuntu-0ubuntu1 upload.
  This version is unfortunately bigger than debian's 0.8.1+0.8.2-rc1-1
* Merge in ubuntu changelog

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# script to generate a changelog file
 
4
# (maybe integrate into release script?)
 
5
#
 
6
# (c) 2006 Achim Bohnet <ach@mpe.mpg.de>
 
7
# Some parts of this code taken from release_digikam.rb,
 
8
# idea from Tom Albers
 
9
# License: GNU General Public License V2
 
10
 
 
11
 
 
12
name="digikam"
 
13
egmodule="graphics"
 
14
startrev="538809"   # check existing ChangeLog file for the most recent entry
 
15
 
 
16
svnbase="https://ach@svn.kde.org/home/kde"
 
17
svnroot="branches/stable"
 
18
adminroot="$svnbase/branches/KDE/3.5"
 
19
 
 
20
#----------------------------------------------------------------
 
21
 
 
22
set -x
 
23
LC_ALL=en_US.UTF-8
 
24
 
 
25
# using accounts it with svn2log.py -u  add even more of email addresses to changelog :(
 
26
#svn cat $svnbase/trunk/KDE/kde-common/accounts > accounts.tmp.$$
 
27
svn cat $adminroot/kde-common/release/svn2log.py > svn2log.py.tmp-$$
 
28
svn log -v --xml -r HEAD:$startrev $svnbase/$svnroot/extragear/$egmodule/$name |
 
29
        python ./svn2log.py.tmp-$$ -p /$svnroot/extragear/$egmodule -o ChangeLog.new-entries
 
30
rm svn2log.py.tmp-$$