<feed xmlns='http://www.w3.org/2005/Atom'>
<title>fedora-packager.git/src/pyfedpkg, branch initial-merge-command/2</title>
<subtitle>fedpkg fixes</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ndim/public_git/fedora-packager.git/'/>
<entry>
<title>Add "fedpkg clone --initial-merge" argument</title>
<updated>2010-08-10T14:36:28+00:00</updated>
<author>
<name>Hans Ulrich Niedermann</name>
<email>hun@n-dimensional.de</email>
</author>
<published>2010-08-10T11:13:15+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ndim/public_git/fedora-packager.git/commit/?id=0e3f5570181777e6dfdeadb3d65ded4615435430'/>
<id>0e3f5570181777e6dfdeadb3d65ded4615435430</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add "fedpkg initial-merge" command</title>
<updated>2010-08-09T13:14:08+00:00</updated>
<author>
<name>Hans Ulrich Niedermann</name>
<email>hun@n-dimensional.de</email>
</author>
<published>2010-08-09T13:14:08+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ndim/public_git/fedora-packager.git/commit/?id=d98955d508b3541ec80b8cbbd8a315fe349d18b0'/>
<id>d98955d508b3541ec80b8cbbd8a315fe349d18b0</id>
<content type='text'>
usage: fedpkg.py initial-merge [-h] [-n] [repo-path [repo-path ...]]

Performs a 'git merge' of all git branches with the same content
(i.e. with the same package spec files, patch files, etc.), regardless
of their history.

This is useful after Fedora's dist-cvs to dist-git migration, as often
different branches have different histories but the same content on the
filesystem.

After these initial merges of identical trees, future merges between
the branches will be a lot easier: Easier to follow in the dependency
graph, and easier to perform without conflicts.

positional arguments:
  repo-path      Path to a repo to initial-merge

optional arguments:
  -h, --help     show this help message and exit
  -n, --dry-run  Whether to run without actually merging
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
usage: fedpkg.py initial-merge [-h] [-n] [repo-path [repo-path ...]]

Performs a 'git merge' of all git branches with the same content
(i.e. with the same package spec files, patch files, etc.), regardless
of their history.

This is useful after Fedora's dist-cvs to dist-git migration, as often
different branches have different histories but the same content on the
filesystem.

After these initial merges of identical trees, future merges between
the branches will be a lot easier: Easier to follow in the dependency
graph, and easier to perform without conflicts.

positional arguments:
  repo-path      Path to a repo to initial-merge

optional arguments:
  -h, --help     show this help message and exit
  -n, --dry-run  Whether to run without actually merging
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove function call results as default param values</title>
<updated>2010-08-08T15:07:14+00:00</updated>
<author>
<name>Hans Ulrich Niedermann</name>
<email>hun@n-dimensional.de</email>
</author>
<published>2010-08-03T18:49:50+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ndim/public_git/fedora-packager.git/commit/?id=63570e8513a930a3d61cf8f3b07fe6cfdd8a1d2c'/>
<id>63570e8513a930a3d61cf8f3b07fe6cfdd8a1d2c</id>
<content type='text'>
The function call is evaluated once when the module code is
read. However, the os.getcwd() function might give different
results at run time than at module reading time.

Replaced those default param values with None, and let the
functions call os.getcwd() if the param happens to be None.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The function call is evaluated once when the module code is
read. However, the os.getcwd() function might give different
results at run time than at module reading time.

Replaced those default param values with None, and let the
functions call os.getcwd() if the param happens to be None.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix rawhide branch detection (define .distshort)</title>
<updated>2010-08-05T15:44:14+00:00</updated>
<author>
<name>Hans Ulrich Niedermann</name>
<email>hun@n-dimensional.de</email>
</author>
<published>2010-08-02T16:17:35+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ndim/public_git/fedora-packager.git/commit/?id=f009de8b94326085f01dd449ffc5fcb8f02462a5'/>
<id>f009de8b94326085f01dd449ffc5fcb8f02462a5</id>
<content type='text'>
Fix rawhide branch detection (define .distshort)

Also define PackageModule.distshort for rawhide branches.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix rawhide branch detection (define .distshort)

Also define PackageModule.distshort for rawhide branches.
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable branch switching without any rpm content</title>
<updated>2010-08-02T22:25:07+00:00</updated>
<author>
<name>Jesse Keating</name>
<email>jkeating@redhat.com</email>
</author>
<published>2010-08-02T21:19:10+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ndim/public_git/fedora-packager.git/commit/?id=f63baa10fe44bea53783afbfc28b58e1e79e55d3'/>
<id>f63baa10fe44bea53783afbfc28b58e1e79e55d3</id>
<content type='text'>
Without rpm content, we can't init the packagemodule, so don't try to do
that when switching branches.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Without rpm content, we can't init the packagemodule, so don't try to do
that when switching branches.
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't clog the first line of a changelog</title>
<updated>2010-08-02T22:25:07+00:00</updated>
<author>
<name>Jesse Keating</name>
<email>jkeating@redhat.com</email>
</author>
<published>2010-08-02T21:00:18+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ndim/public_git/fedora-packager.git/commit/?id=6d5c91d3bdae3fe73d26289bf79875b732229535'/>
<id>6d5c91d3bdae3fe73d26289bf79875b732229535</id>
<content type='text'>
It's redundant.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's redundant.
</pre>
</div>
</content>
</entry>
<entry>
<title>Also log on chain building</title>
<updated>2010-08-02T22:25:06+00:00</updated>
<author>
<name>Jesse Keating</name>
<email>jkeating@redhat.com</email>
</author>
<published>2010-08-02T21:00:06+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ndim/public_git/fedora-packager.git/commit/?id=129f695b499380725fcbcd5fbe4b64cc33bc39e0'/>
<id>129f695b499380725fcbcd5fbe4b64cc33bc39e0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a nvr property to the class and use it</title>
<updated>2010-08-02T22:25:06+00:00</updated>
<author>
<name>Jesse Keating</name>
<email>jkeating@redhat.com</email>
</author>
<published>2010-08-02T20:55:27+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ndim/public_git/fedora-packager.git/commit/?id=5fc346e92a13707b444e15a16e47267d2e2db643'/>
<id>5fc346e92a13707b444e15a16e47267d2e2db643</id>
<content type='text'>
We could probably use this in more places, but this is a good start.
Ticket #30
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We could probably use this in more places, but this is a good start.
Ticket #30
</pre>
</div>
</content>
</entry>
<entry>
<title>set the loacl rpms macros to match whats set in olpc-release,</title>
<updated>2010-08-01T23:14:16+00:00</updated>
<author>
<name>Dennis Gilmore</name>
<email>dennis@ausil.us</email>
</author>
<published>2010-08-01T23:13:01+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ndim/public_git/fedora-packager.git/commit/?id=8ca17966d912f8f22d30bab217d085ec7f275adf'/>
<id>8ca17966d912f8f22d30bab217d085ec7f275adf</id>
<content type='text'>
fedora-release and redhat-release. fixes a bug on local rpm creation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fedora-release and redhat-release. fixes a bug on local rpm creation
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused import</title>
<updated>2010-07-31T16:51:23+00:00</updated>
<author>
<name>Jesse Keating</name>
<email>jkeating@redhat.com</email>
</author>
<published>2010-07-31T16:50:59+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ndim/public_git/fedora-packager.git/commit/?id=06be2b0765c07275f5a9bed1a76ac92f98980b60'/>
<id>06be2b0765c07275f5a9bed1a76ac92f98980b60</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
