* Debian package
@ 2010-03-05 5:11 Xavier Maillard
2010-03-05 7:18 ` martin f krafft
2010-03-05 8:37 ` Michal Sojka
0 siblings, 2 replies; 7+ messages in thread
From: Xavier Maillard @ 2010-03-05 5:11 UTC (permalink / raw)
To: notmuch
Hi,
I am using Debian GNU/linux SID and notmuch and I'd like to be
bleading edge with notmuch. So I am trying to figure out whether
someone is maintaining a Debian package against notmuch git
repository or not. If the former, that's nice.
Xavier
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Debian package
2010-03-05 5:11 Debian package Xavier Maillard
@ 2010-03-05 7:18 ` martin f krafft
2010-03-05 8:37 ` Michal Sojka
1 sibling, 0 replies; 7+ messages in thread
From: martin f krafft @ 2010-03-05 7:18 UTC (permalink / raw)
To: Xavier Maillard; +Cc: notmuch
[-- Attachment #1: Type: text/plain, Size: 623 bytes --]
also sprach Xavier Maillard <xma@gnu.org> [2010.03.05.0611 +0100]:
> I am using Debian GNU/linux SID and notmuch and I'd like to be
> bleading edge with notmuch. So I am trying to figure out whether
> someone is maintaining a Debian package against notmuch git
> repository or not. If the former, that's nice.
http://packages.debian.org/search?keywords=notmuch
--
martin | http://madduck.net/ | http://two.sentenc.es/
"ah, but a man's reach should exceed his grasp,
or what's a heaven for?"
-- robert browning
spamtraps: madduck.bogus@madduck.net
[-- Attachment #2: Digital signature (see http://martin-krafft.net/gpg/) --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Debian package
2010-03-05 5:11 Debian package Xavier Maillard
2010-03-05 7:18 ` martin f krafft
@ 2010-03-05 8:37 ` Michal Sojka
2010-03-06 6:02 ` Xavier Maillard
1 sibling, 1 reply; 7+ messages in thread
From: Michal Sojka @ 2010-03-05 8:37 UTC (permalink / raw)
To: Xavier Maillard, notmuch
On Fri, 05 Mar 2010, Xavier Maillard wrote:
> Hi,
>
> I am using Debian GNU/linux SID and notmuch and I'd like to be
> bleading edge with notmuch. So I am trying to figure out whether
> someone is maintaining a Debian package against notmuch git
> repository or not. If the former, that's nice.
Hi,
I do not know the current plans for Debian package, but what I do for
myself is to merge together current master, debian and seveal topic
branches (based on patches sent to the mailing list) to produce a
bleeding edge package. I use the following script to build the package.
Cheers,
Michal
#!/bin/sh
set -e
ref=$(git symbolic-ref HEAD)
branch=${ref##refs/heads/}
test "$ref" != "$branch" || die "You're on a strange branch"
export branch
die()
{
echo >&2 "fatal: $*"
exit 1
}
merge() {
git branch -D integration/all
git checkout -b integration/all
trap "git checkout $branch
git checkout -- debian/changelog
" 0
git merge `cat wsh-topic-branches|grep -v ^#`
}
case "$1" in
-m|--merge)
merge
exit
;;
esac
git diff-index --quiet HEAD || die "Working directory is not clean"
merge
read version sha1 < version
if [ "$sha1" != `git rev-parse HEAD` ]; then
version=`expr $version + 1`
sha1=`git rev-parse HEAD`
fi
git-dch --snapshot --snapshot-number=$version --debian-branch=integration/all
git-buildpackage --git-ignore-new \
--git-debian-branch=integration/all \
--git-upstream-branch=master \
-i -us -uc -b # see the example in debuild(1)
git checkout $branch
echo $version $sha1 > version
git commit -m "snapshot #$version" version
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Debian package
2010-03-05 8:37 ` Michal Sojka
@ 2010-03-06 6:02 ` Xavier Maillard
2010-03-06 8:46 ` sojkam1
0 siblings, 1 reply; 7+ messages in thread
From: Xavier Maillard @ 2010-03-06 6:02 UTC (permalink / raw)
To: Michal Sojka, notmuch
Hi Michal,
On Fri, 05 Mar 2010 09:37:40 +0100, Michal Sojka <sojkam1@fel.cvut.cz> wrote:
> On Fri, 05 Mar 2010, Xavier Maillard wrote:
> > Hi,
> >
> > I am using Debian GNU/linux SID and notmuch and I'd like to be
> > bleading edge with notmuch. So I am trying to figure out whether
> > someone is maintaining a Debian package against notmuch git
> > repository or not. If the former, that's nice.
>
> Hi,
>
> I do not know the current plans for Debian package, but what I do for
> myself is to merge together current master, debian and seveal topic
> branches (based on patches sent to the mailing list) to produce a
> bleeding edge package. I use the following script to build the package.
That's a good start but it does not work out of the box for
me. What is the integration/all branch ? Do I need something
special in order to use your script ?
Currently, I just cloned official notmuch git repository.
Thanks,
Xavier
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Debian package
2010-03-06 6:02 ` Xavier Maillard
@ 2010-03-06 8:46 ` sojkam1
2010-03-07 6:19 ` Xavier Maillard
0 siblings, 1 reply; 7+ messages in thread
From: sojkam1 @ 2010-03-06 8:46 UTC (permalink / raw)
To: Xavier Maillard; +Cc: notmuch
Cituji Xavier Maillard <xma@gnu.org>:
> That's a good start but it does not work out of the box for
> me. What is the integration/all branch ? Do I need something
> special in order to use your script ?
Hi,
I use the script in the following way. I have a branch mydebian, which
is the debian branch with this script and a file called
wsh-topic-branches added. wsh-topic-branches contains one branch name
per line and to start, it is sufficient to have there only "master".
To build the package, I checkout the mydebian branch I run the script.
It merges all the branches I want to use (the result is called
integration/all) and builds the package from the result of the merge.
If you only want to use master branch, it is probably easier to do
something like:
git checkout debian
git merge master
git-dch ...
git-buildpackage ...
Instead of ... write the parameters from the script and replace
"integration/all" by "debian".
I write this email from a comuter where I don't have notmuch sources,
so I cannot test the above. It is possible it will be necessary to
tweak some parameters of git-*.
Cheers,
Michal
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Debian package
2010-03-06 8:46 ` sojkam1
@ 2010-03-07 6:19 ` Xavier Maillard
2010-03-08 8:31 ` Michal Sojka
0 siblings, 1 reply; 7+ messages in thread
From: Xavier Maillard @ 2010-03-07 6:19 UTC (permalink / raw)
To: sojkam1; +Cc: notmuch
Hi,
On Sat, 06 Mar 2010 09:46:34 +0100, sojkam1@fel.cvut.cz wrote:
> Cituji Xavier Maillard <xma@gnu.org>:
> > That's a good start but it does not work out of the box for
> > me. What is the integration/all branch ? Do I need something
> > special in order to use your script ?
>
> Hi,
>
> I use the script in the following way. I have a branch mydebian, which
> is the debian branch with this script and a file called
> wsh-topic-branches added. wsh-topic-branches contains one branch name
> per line and to start, it is sufficient to have there only "master".
> To build the package, I checkout the mydebian branch I run the script.
> It merges all the branches I want to use (the result is called
> integration/all) and builds the package from the result of the merge.
>
> If you only want to use master branch, it is probably easier to do
> something like:
>
> git checkout debian
> git merge master
> git-dch ...
> git-buildpackage ...
>
> Instead of ... write the parameters from the script and replace
> "integration/all" by "debian".
>
> I write this email from a comuter where I don't have notmuch sources,
> so I cannot test the above. It is possible it will be necessary to
> tweak some parameters of git-*.
There are probably things to tweak but there is also something
not working for me. Apparentely, you have a special file named
'version' in which you store a version string and its sha1 as
taken from the rev HEAD. I do not have one and thus, I can't find
this file in my checkouts.
Also, while at it, could you send your wsh-topic-branches file
and the relevant git repositories ?
Regards,
Xavier
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-03-08 8:31 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-05 5:11 Debian package Xavier Maillard
2010-03-05 7:18 ` martin f krafft
2010-03-05 8:37 ` Michal Sojka
2010-03-06 6:02 ` Xavier Maillard
2010-03-06 8:46 ` sojkam1
2010-03-07 6:19 ` Xavier Maillard
2010-03-08 8:31 ` Michal Sojka
Code repositories for project(s) associated with this public inbox
https://yhetil.org/notmuch.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).