public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrew Ammerlaan" <andrewammerlaan@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: /
Date: Mon,  2 May 2022 13:01:22 +0000 (UTC)	[thread overview]
Message-ID: <1651496458.8f92280db89307e2bb8fc85f3df893aca795513c.andrewammerlaan@gentoo> (raw)

commit:     8f92280db89307e2bb8fc85f3df893aca795513c
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 13:00:58 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon May  2 13:00:58 2022 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=8f92280d

*.md: update documentation: repoman --> pkgcheck and friends

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 CONTRIBUTING.md | 83 +++++++++++++++++++--------------------------------------
 README.md       |  1 -
 2 files changed, 27 insertions(+), 57 deletions(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index f46087c06..f414ef5b5 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -36,32 +36,27 @@ Create a [gpg key](http://www.gossamer-threads.com/lists/gentoo/dev/268496?do=po
 
 Now git will sign your commits to the overlay by using the gpg key.
 
-* **Install [hub](http://hub.github.com/)**, the *command-line wrapper for git that makes you better at GitHub*.
+* **Install [pkgdev](https://github.com/pkgcore/pkgdev)**, *A repository commit helper*
 
-*hub* can be used equivalent to to *git* and upstream even recommends *"alias git='hub'*.
+*pkgdev* sanitizes your commit in a convenient way and runs QA checks.
 
-    emerge dev-vcs/hub
-
-* **Install [repo-commit](https://bitbucket.org/gentoo/repo-commit/)**, *A repository commit helper*
-
-*repo-commit* sanitizes your commit in a convenient way.
-
-    emerge app-portage/repo-commit
+    emerge dev-util/pkgdev
 
 ---
 ## Contributing ebuilds
 
+### Fork the overlay
+In order to send pull request and ask for inclusion of your changes you need to have your own fork of the overlay on github. You can do this by clicking the "Fork" button in the top right of our GitHub page.
+
 ### Clone the overlay
 
-Create a local checkout of the overlay
+Create a local checkout of your fork, where `USERNAME` is your GitHub username.
 
-    hub clone gentoo-science/sci
+    git clone git@github.com:USERNAME/sci.git
 
-### Fork the overlay
-In order to send pull request and ask for inclusion of your changes you need to have your own fork of the overlay on github. You can do this by issuing
+To conveniently update your fork later, add the main repository as a second remote
 
-    cd sci
-    hub fork
+    git remote add upstream git@github.com:gentoo/sci.git
 
 ### Branch out for contribution
 It is always convenient for development as well as for the review and merging process, if the development is done in branches. Let's branch the overlay into a local branch named PACKAGE_NAME.
@@ -71,37 +66,38 @@ It is always convenient for development as well as for the review and merging pr
 For the fastest process during merging it is best to have a single branch per package.
 
 ### Work on the package
-Now you are ready to work on your package of interest. Once you are finished you should _always_ use **[repoman](http://dev.gentoo.org/~zmedico/portage/doc/man/repoman.1.html)** to do a static analysis of your work.
+Now you are ready to work on your package of interest. Once you are finished you should _always_ use **[pkgcheck](https://pkgcore.github.io/pkgcheck/man/pkgcheck.html)** to do a static analysis of your work.
 
 This can be done with
 
-    repoman full
+    pkgcheck scan --net
 
 ### Commit your work
 Once *all* reported problems are resolved, you can commit it
 
-    repo-commit "Here we write a comprehensible commit message"
+    pkgdev commit --all
 
-### Push to Github and make a pull request
+### Push to GitHub and make a pull request
 In order to facilitate potential reverts of mistakes, we prefer to keep the git history as linear as possible. For this, always rebase your changes on the latest remote changes.
 
-    hub pull --rebase=preserve github master
+    git pull --rebase=merges upstream master
+
+Next we push back the changes in the PACKAGE_NAME branch to our fork.
 
-Next we push back the changes in the PACKAGE_NAME branch to our fork and send a pull-request to the overlay maintainers.
+    pkgdev push YOUR_GITHUB_USER PACKAGE_NAME
 
-    hub push YOUR_GITHUB_USER PACKAGE_NAME
-    hub pull-request
+Now we are ready to create a Pull Request, go to your GitHub fork and press "Contribute" --> "Open pull request".
 
-Lastly you need to wait for review comments and the merge of your work. If you feel that they are slacking, don't bother to ping them again. In case you need to include some improvements, just commit your work again using *repo-commit* and push it again to your fork. No need to send another pull-request as your new changes will be added to the original one.
+Lastly you need to wait for review comments and the merge of your work. If you feel that they are slacking, don't hesitate to ping them again. In case you need to include some improvements, just commit your work again using `pkgdev commit` and push it again to your fork. No need to send another pull-request as your new changes will be added to the original one.
 
 ### What's next?
-If you would like to get direct access to the overlay, prove some contribution and ping us via sci@gentoo.org or on irc in #gentoo-science @ freenode. If you would like to become a dev yourself, prove some more contributions and again, contact us. We are always looking for new candidates.
+If you would like to get direct access to the overlay, prove some contribution and ping us via sci@gentoo.org or on irc in #gentoo-science @ Libera. If you would like to become a dev yourself, prove some more contributions and again, contact us. We are always looking for new candidates.
 
 ----
 ## Ebuild recommendations
 As the Gentoo Science overlay is a constant work-in-progress, we have some recommendations for prospective contributors:
 
-* **Aim for writing EAPI=7 ebuilds.** For certain eclasses, EAPI=7 is not allowed yet. In such cases you may use EAPI=6. We will not accept EAPI<6 ebuilds.
+* **Aim for writing EAPI=8 ebuilds.** For certain eclasses, `EAPI=8` is not allowed yet. In such cases you may use `EAPI=7`. We will not accept `EAPI<=6` ebuilds.
 * **Version bumps should always follow the latest guidelines.** For instance, a version bump of an ebuild that still employs autotools-utils.eclass should be avoided. Instead, drop 'autotools-utils', move to 'autotools' and call `default` followed by `eautoreconf` in src_prepare().
 
 ----
@@ -109,46 +105,21 @@ As the Gentoo Science overlay is a constant work-in-progress, we have some recom
 
 **It is important, that if you merge a pull request, you should feel as responsible as if you have written the commits yourself!**
 
-
-
 ### Prerequisite
 
-Make sure you have both repos (github & gentoo.org) as remotes defined.
-
-    git remote -v
-
-should give
-
->github	git@github.com:gentoo-science/sci.git (fetch)
->
->github	git@github.com:gentoo-science/sci.git (push)
->
->origin	git+ssh://git@git.overlays.gentoo.org/proj/sci.git (fetch)
->
->origin	git+ssh://git@git.overlays.gentoo.org/proj/sci.git (push)
-
+Install `app-portage/pram`
 
 ### Review process
 
-In the beginning you should review the pull request on github directly and recommend as much improvements as possible. By this you train the new contributor towards becoming a new dev, which should be our final goal.
+In the beginning you should review the pull request on GitHub directly and recommend as much improvements as possible. By this you train the new contributor towards becoming a new dev, which should be our final goal.
 
 #### Checking out the pull-request as local branch
 Once everything is fine or you like to fix the rest yourself, simply use the following command to get the pull-request in a new branch in your repo.
 
-    hub checkout https://github.com/gentoo-science/sci/pull/PULLREQUEST-NUMBER
-
-#### Testing and repoman check
-Now check the package by building and installing it, and run *repoman* in the package dir. Remember, when merging a pull request you take the responsibility for the quality of the commit.
-
-#### Merge the pull-request branch into master
-If this is also fine, merge the branch into the master
-
-    git checkout master
-    git merge USER-BRANCH
-
-#### Merging the two remote HEADs
-Finally use the script **merge-dualHEAD** from the *scripts* directory to merge the github and gentoo.org remote repo.
+    pram -r gentoo/sci PULLREQUEST-NUMBER
 
+#### Testing and pkgcheck check
+Now check the package by building and installing it, and run *pkgcheck* in the package directory. Remember, when merging a pull request you take the responsibility for the quality of the commit.
 
 ---
 #### Contribution to the document

diff --git a/README.md b/README.md
index e7618050b..3904770a0 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,5 @@
 # The [Gentoo Science Project](https://wiki.gentoo.org/wiki/Project:Science) Repository    
 [![pkgcheck](https://github.com/gentoo/sci/workflows/pkgcheck/badge.svg)](https://github.com/gentoo/sci/actions?query=workflow%3Apkgcheck)
-[![repoman](https://github.com/gentoo/sci/workflows/repoman/badge.svg)](https://github.com/gentoo/sci/actions?query=workflow%3Arepoman)
 [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg)](https://github.com/gentoo/sci#guide)
 [![chat on libera](https://img.shields.io/badge/chat-on%20libera-brightgreen.svg)](https://web.libera.chat/#gentoo-science)
 


             reply	other threads:[~2022-05-02 13:01 UTC|newest]

Thread overview: 1430+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-02 13:01 Andrew Ammerlaan [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-12 20:24 [gentoo-commits] proj/sci:master commit in: / Nowa Ammerlaan
2022-09-15  1:40 Horea Christian
2022-07-28 14:32 Horea Christian
2022-07-28 14:28 Horea Christian
2022-07-28 14:27 Horea Christian
2022-01-21 16:02 Andrew Ammerlaan
2021-06-20 13:12 Andrew Ammerlaan
2021-03-20 10:56 Andrew Ammerlaan
2021-03-20 10:44 Andrew Ammerlaan
2021-03-06  1:48 Sam James
2021-01-20 15:20 Aisha Tammy
2021-01-05  7:32 Horea Christian
2021-01-05  7:31 Horea Christian
2020-12-31 15:44 Aisha Tammy
2020-09-29 17:29 Aisha Tammy
2020-09-27 20:13 Aisha Tammy
2020-09-27 17:22 Aisha Tammy
2020-09-26 13:20 Horea Christian
2019-12-02  1:45 Horea Christian
2018-12-13 22:26 David Seifert
2018-12-13 20:57 David Seifert
2018-10-27 12:19 Justin Lecher
2018-08-20 21:40 Horea Christian
2018-08-17 20:10 Horea Christian
2018-08-16 15:42 Horea Christian
2018-08-14 20:02 Horea Christian
2018-08-03 15:52 Horea Christian
2018-06-21 20:21 Justin Lecher
2018-06-21 20:16 Justin Lecher
2018-03-21 21:41 Justin Lecher
2018-03-21 20:11 Justin Lecher
2018-01-27 14:00 Justin Lecher
2017-11-18 14:10 Justin Lecher
2017-10-30  9:41 Justin Lecher
2017-04-29  9:50 Justin Lecher
2017-04-25 22:44 Christoph Junghans
2017-04-21 20:06 Christoph Junghans
2017-04-21 20:06 Christoph Junghans
2017-04-21 20:06 Christoph Junghans
2017-04-14 11:17 Justin Lecher
2017-04-11 14:50 Marius Brehler
2017-04-03 14:55 Marius Brehler
2017-03-26 14:45 Justin Lecher
2017-03-26  8:18 Justin Lecher
2017-03-26  8:18 Justin Lecher
2017-03-23  3:12 Marius Brehler
2017-03-22 22:36 Martin Mokrejs
2017-03-16 19:35 Justin Lecher
2017-03-09 21:22 Christoph Junghans
2017-03-06 15:11 Marius Brehler
2017-02-28 20:05 Justin Lecher
2017-02-28 20:05 Justin Lecher
2017-02-27  2:30 Christoph Junghans
2017-02-25 20:53 Justin Lecher
2017-02-24 14:00 Martin Mokrejs
2017-02-24 13:50 Marius Brehler
2017-02-19 17:56 Martin Mokrejs
2017-02-19 17:20 Martin Mokrejs
2017-01-29 20:29 Justin Lecher
2017-01-29 11:59 Justin Lecher
2017-01-14 15:01 Justin Lecher
2017-01-14 15:01 Justin Lecher
2017-01-12 17:54 Justin Lecher
2017-01-12 17:54 Justin Lecher
2017-01-12 17:54 Justin Lecher
2017-01-11 23:27 Martin Mokrejs
2017-01-08 17:17 Justin Lecher
2017-01-08 11:03 Marius Brehler
2017-01-03  9:16 Marius Brehler
2016-12-23  9:48 Justin Lecher
2016-12-17 18:05 Justin Lecher
2016-12-13  6:59 Martin Mokrejs
2016-12-06 19:45 Christoph Junghans
2016-11-23  9:46 Marius Brehler
2016-11-23  8:44 Marius Brehler
2016-11-08 19:27 Martin Mokrejs
2016-10-18 17:30 Justin Lecher
2016-10-12  6:30 Marius Brehler
2016-09-14 17:26 Justin Lecher
2016-09-06  0:18 Christoph Junghans
2016-09-02 22:08 Christoph Junghans
2016-08-29 20:45 Justin Bronder
2016-08-23 20:17 Justin Lecher
2016-08-14 19:25 Justin Lecher
2016-08-06  6:46 Justin Lecher
2016-07-20 17:48 Christoph Junghans
2016-07-20 17:48 Christoph Junghans
2016-07-20 17:48 Christoph Junghans
2016-07-12 21:50 Martin Mokrejs
2016-07-12 19:57 Marius Brehler
2016-07-12 19:57 Marius Brehler
2016-07-04 20:23 Justin Lecher
2016-07-04 20:23 Justin Lecher
2016-07-02  8:45 Justin Lecher
2016-07-02  8:39 Justin Lecher
2016-07-02  8:35 Justin Lecher
2016-07-02  8:28 Justin Lecher
2016-07-02  8:28 Justin Lecher
2016-07-02  8:21 Justin Lecher
2016-07-02  8:08 Justin Lecher
2016-07-02  8:08 Justin Lecher
2016-06-28 12:46 Marius Brehler
2016-06-28 12:46 Marius Brehler
2016-06-15 14:19 Marius Brehler
2016-06-15 14:19 Marius Brehler
2016-06-09 19:33 Justin Lecher
2016-05-23  6:59 Marius Brehler
2016-05-20 14:03 Marius Brehler
2016-05-17  9:19 Marius Brehler
2016-05-17  9:19 Marius Brehler
2016-05-17  9:19 Marius Brehler
2016-05-07  9:37 Justin Lecher
2016-05-07  9:37 Justin Lecher
2016-05-07  9:29 Justin Lecher
2016-05-07  9:29 Justin Lecher
2016-05-07  9:29 Justin Lecher
2016-04-26 19:06 Justin Lecher
2016-04-26 19:06 Justin Lecher
2016-04-26 19:06 Justin Lecher
2016-04-26 19:06 Justin Lecher
2016-04-24  7:24 Justin Lecher
2016-04-23 23:21 Christoph Junghans
2016-04-13 10:47 Marius Brehler
2016-04-13 10:47 Marius Brehler
2016-04-13 10:47 Marius Brehler
2016-04-13 10:47 Marius Brehler
2016-03-30 14:41 Martin Mokrejs
2016-03-30 14:36 Honza Macháček
2016-03-29 18:36 Justin Lecher
2016-03-29 17:59 Justin Lecher
2016-03-29 17:53 Justin Lecher
2016-03-29 17:15 Justin Lecher
2016-03-29 17:15 Justin Lecher
2016-03-29 17:15 Justin Lecher
2016-03-29 16:47 Justin Lecher
2016-03-14  2:17 Christoph Junghans
2016-03-06 21:51 Justin Lecher
2016-03-06 20:54 Justin Lecher
2016-03-06 20:54 Justin Lecher
2016-03-06 19:47 Justin Lecher
2016-03-06 19:44 Justin Lecher
2016-03-06 19:41 Justin Lecher
2016-03-06 19:41 Justin Lecher
2016-02-28 20:07 Martin Mokrejs
2016-02-24 18:31 Justin Lecher
2016-02-24 18:31 Justin Lecher
2016-02-24 16:49 Justin Lecher
2016-02-24 16:49 Justin Lecher
2016-02-22  8:38 Justin Lecher
2016-02-22  8:10 Justin Lecher
2016-02-21 15:16 Justin Lecher
2016-02-21 15:16 Justin Lecher
2016-02-19 12:56 Justin Lecher
2016-02-19 10:12 Justin Lecher
2016-02-19  9:27 Justin Lecher
2016-02-19  9:27 Justin Lecher
2016-02-17 14:02 Justin Lecher
2016-02-17 14:02 Justin Lecher
2016-02-17 14:02 Justin Lecher
2016-02-15  8:19 Justin Lecher
2016-02-15  8:19 Justin Lecher
2016-02-15  8:19 Justin Lecher
2016-02-10 16:31 Martin Mokrejs
2016-02-10 14:53 Martin Mokrejs
2016-02-09 13:18 Justin Lecher
2016-02-08 13:16 Marius Brehler
2016-02-03 12:33 Justin Lecher
2016-01-25 19:47 Justin Lecher
2016-01-25  9:19 Justin Lecher
2016-01-25  9:19 Justin Lecher
2016-01-25  8:47 Justin Lecher
2016-01-22  8:15 Justin Lecher
2016-01-22  8:15 Justin Lecher
2016-01-20 21:07 Reinis Danne
2016-01-18 16:31 Justin Lecher
2016-01-14  9:54 Justin Lecher
2016-01-11 12:00 Justin Lecher
2016-01-10 15:32 Justin Lecher
2016-01-10 15:32 Justin Lecher
2016-01-07 14:11 Justin Lecher
2016-01-07  9:16 Justin Lecher
2016-01-07  9:16 Justin Lecher
2016-01-05 22:04 Martin Mokrejs
2016-01-04 14:27 Martin Mokrejs
2016-01-01 17:33 Christoph Junghans
2016-01-01 17:33 Christoph Junghans
2015-12-31  8:48 Justin Lecher
2015-12-18 17:27 Justin Lecher
2015-12-18 17:27 Justin Lecher
2015-12-18 17:27 Justin Lecher
2015-12-17 11:06 Justin Lecher
2015-12-17 11:06 Justin Lecher
2015-12-08 15:25 Justin Lecher
2015-12-08 14:52 Marius Brehler
2015-12-08 14:52 Marius Brehler
2015-12-07  8:07 Marius Brehler
2015-12-07  8:07 Marius Brehler
2015-12-04  7:01 Justin Lecher
2015-12-04  7:01 Justin Lecher
2015-12-04  7:01 Justin Lecher
2015-12-04  7:01 Justin Lecher
2015-12-03 18:56 Justin Lecher
2015-12-03  9:55 Justin Lecher
2015-12-01 12:01 Martin Mokrejs
2015-11-30 10:58 Justin Lecher
2015-11-28 18:59 Justin Lecher
2015-11-28 18:08 Justin Lecher
2015-11-27  9:46 Justin Lecher
2015-11-26 11:57 Justin Lecher
2015-11-24  5:09 Christoph Junghans
2015-11-24  2:03 Christoph Junghans
2015-11-24  2:03 Christoph Junghans
2015-11-21 15:15 Christoph Junghans
2015-11-20 11:39 Justin Lecher
2015-11-20 11:39 Justin Lecher
2015-11-20 11:39 Justin Lecher
2015-11-17 15:46 Justin Lecher
2015-11-17 15:46 Justin Lecher
2015-11-17 15:46 Justin Lecher
2015-11-17 15:46 Justin Lecher
2015-11-16  6:45 Justin Lecher
2015-11-13 10:02 Martin Mokrejs
2015-11-12  7:27 Marius Brehler
2015-11-12  7:27 Marius Brehler
2015-11-11 14:38 Justin Lecher
2015-11-11 14:38 Justin Lecher
2015-11-11  1:19 Christoph Junghans
2015-11-10  7:09 Justin Lecher
2015-11-06 16:22 Justin Lecher
2015-11-06  9:58 Marius Brehler
2015-11-05 15:14 Marius Brehler
2015-10-29 13:45 Justin Lecher
2015-10-27  9:55 Martin Mokrejs
2015-10-25 19:04 Justin Lecher
2015-10-25 19:04 Justin Lecher
2015-10-21 14:35 Justin Lecher
2015-10-21 13:44 Justin Lecher
2015-10-21 13:44 Justin Lecher
2015-10-17  7:44 Justin Lecher
2015-10-17  7:44 Justin Lecher
2015-10-16 13:38 Justin Lecher
2015-10-16 13:38 Justin Lecher
2015-10-15 17:10 Justin Lecher
2015-10-15 17:10 Justin Lecher
2015-10-13  6:29 Marius Brehler
2015-10-12  9:34 Justin Lecher
2015-10-12  6:51 Marius Brehler
2015-10-12  6:51 Marius Brehler
2015-10-10 15:41 Justin Lecher
2015-10-10 14:11 Justin Lecher
2015-10-10 14:11 Justin Lecher
2015-10-06 21:01 Marius Brehler
2015-10-06 21:01 Marius Brehler
2015-10-01  6:06 Justin Lecher
2015-10-01  6:06 Justin Lecher
2015-10-01  6:06 Justin Lecher
2015-10-01  6:06 Justin Lecher
2015-10-01  6:06 Justin Lecher
2015-09-25 16:28 Justin Lecher
2015-09-25  9:43 Justin Lecher
2015-09-25  9:43 Justin Lecher
2015-09-23 10:19 Justin Lecher
2015-09-23 10:19 Justin Lecher
2015-09-22 10:06 Justin Lecher
2015-09-22  8:19 Justin Lecher
2015-09-22  7:22 Justin Lecher
2015-09-21 19:44 Justin Lecher
2015-09-21 19:07 Justin Lecher
2015-09-21 19:05 Justin Lecher
2015-09-21 17:44 Justin Lecher
2015-09-21 14:04 Justin Lecher
2015-09-18  6:11 Justin Lecher
2015-09-17 21:56 Jauhien Piatlicki
2015-09-15 13:34 Justin Lecher
2015-09-13 18:34 Justin Lecher
2015-09-13 18:34 Justin Lecher
2015-09-09  7:11 Justin Lecher
2015-09-08 16:20 Martin Mokrejs
2015-09-07  6:49 Justin Lecher
2015-09-04  9:30 Justin Lecher
2015-09-04  9:27 Justin Lecher
2015-09-04  5:46 Justin Lecher
2015-09-03 11:04 Justin Lecher
2015-09-03 11:04 Justin Lecher
2015-09-02  9:27 Justin Lecher
2015-09-02  7:59 Justin Lecher
2015-09-02  7:59 Justin Lecher
2015-09-01 11:47 Justin Lecher
2015-09-01  7:57 Justin Lecher
2015-09-01  7:57 Justin Lecher
2015-09-01  7:57 Justin Lecher
2015-09-01  7:57 Justin Lecher
2015-08-28 11:14 Justin Lecher
2015-08-27 15:01 Justin Lecher
2015-08-20 23:29 Christoph Junghans
2015-08-20 23:29 Christoph Junghans
2015-08-16  9:13 Justin Lecher
2015-08-16  9:13 Justin Lecher
2015-08-15  6:07 Justin Lecher
2015-08-14  7:21 Justin Lecher
2015-08-10 16:50 Andrew Savchenko
2015-08-10 16:50 Andrew Savchenko
2015-08-09 13:13 Justin Lecher
2015-08-09  9:48 Justin Lecher
2015-08-04  9:16 Justin Lecher
2015-08-04  9:16 Justin Lecher
2015-08-03 12:35 Justin Lecher
2015-07-31 10:09 Justin Lecher
2015-07-31 10:09 Justin Lecher
2015-07-29  7:54 Justin Lecher
2015-07-29  7:54 Justin Lecher
2015-07-29  7:54 Justin Lecher
2015-07-25 23:39 Andrew Savchenko
2015-07-23 21:06 Jauhien Piatlicki
2015-07-23 21:06 Jauhien Piatlicki
2015-07-23 21:06 Jauhien Piatlicki
2015-07-16 19:43 Jauhien Piatlicki
2015-07-16 19:43 Jauhien Piatlicki
2015-07-16 19:42 Jauhien Piatlicki
2015-07-10  3:59 Nicolas Bock
2015-07-10  3:59 Nicolas Bock
2015-06-24  9:51 Justin Lecher
2015-06-24  9:51 Justin Lecher
2015-06-24  9:51 Justin Lecher
2015-06-24  9:51 Justin Lecher
2015-06-22 11:49 Justin Lecher
2015-06-21 10:38 Justin Lecher
2015-06-21 10:15 Justin Lecher
2015-06-21 10:15 Justin Lecher
2015-06-17  5:47 Justin Lecher
2015-06-17  5:47 Justin Lecher
2015-06-17  5:47 Justin Lecher
2015-06-16 13:32 Justin Lecher
2015-06-16 13:32 Justin Lecher
2015-06-15  7:24 Justin Lecher
2015-06-15  7:24 Justin Lecher
2015-06-07 18:33 Justin Lecher
2015-06-07 18:33 Justin Lecher
2015-06-07 18:33 Justin Lecher
2015-06-07 18:33 Justin Lecher
2015-06-06  9:46 Justin Lecher
2015-06-05  7:33 Andrew Savchenko
2015-06-04 12:58 Justin Lecher
2015-06-03 10:21 Justin Lecher
2015-06-03 10:21 Justin Lecher
2015-05-30  6:03 Justin Lecher
2015-05-26  8:10 Justin Lecher
2015-05-25 23:30 Martin Mokrejs
2015-05-25 23:02 Christoph Junghans
2015-05-25 23:02 Christoph Junghans
2015-05-24  8:14 Justin Lecher
2015-05-24  8:14 Justin Lecher
2015-05-23 17:11 Justin Lecher
2015-05-23 15:53 Justin Lecher
2015-05-23 15:53 Justin Lecher
2015-05-23 15:53 Justin Lecher
2015-05-23 15:53 Justin Lecher
2015-05-18 13:05 Justin Lecher
2015-05-18 13:05 Justin Lecher
2015-05-12 17:15 Martin Mokrejs
2015-05-12 11:18 Justin Lecher
2015-05-05 14:04 Martin Mokrejs
2015-05-04 14:02 Justin Lecher
2015-05-03 20:43 Andrew Savchenko
2015-04-20  1:11 Francois Bissey
2015-04-20  1:11 Francois Bissey
2015-04-18 16:27 Christoph Junghans
2015-04-13  6:25 Justin Lecher
2015-04-10 19:30 Nicolas Bock
2015-04-07  8:56 Justin Lecher
2015-04-07  8:56 Justin Lecher
2015-04-03 17:53 Guillaume Horel
2015-04-02 10:15 Justin Lecher
2015-03-29 10:24 Justin Lecher
2015-03-29 10:24 Justin Lecher
2015-03-28 16:41 Justin Lecher
2015-03-28 16:41 Justin Lecher
2015-03-25 17:34 Justin Lecher
2015-03-23  8:10 Justin Lecher
2015-03-23  8:10 Justin Lecher
2015-03-23  8:10 Justin Lecher
2015-03-20  4:31 Christoph Junghans
2015-03-18 13:06 Martin Mokrejs
2015-03-18  7:23 Justin Lecher
2015-03-18  7:23 Justin Lecher
2015-03-17 13:22 Martin Mokrejs
2015-03-14  8:21 Justin Lecher
2015-03-14  8:21 Justin Lecher
2015-03-11 13:18 Justin Lecher
2015-03-09 16:45 Martin Mokrejs
2015-03-09 14:50 Martin Mokrejs
2015-03-09 14:04 Justin Lecher
2015-03-08 18:08 Justin Lecher
2015-03-08 18:08 Justin Lecher
2015-03-08 18:08 Justin Lecher
2015-03-06 18:51 Christoph Junghans
2015-03-03 15:17 git@oystercatcher mirror+tproxy
2015-03-03 15:17 Justin Lecher
2015-03-03 12:26 git@oystercatcher mirror+tproxy
2015-03-03 12:26 Nicolas Bock
2015-03-02 22:36 Martin Mokrejs
2015-03-02  7:15 Andrew Savchenko
2015-03-02  7:15 Andrew Savchenko
2015-02-28 20:58 Justin Lecher
2015-02-28 20:58 Justin Lecher
2015-02-28 20:58 [gentoo-commits] proj/sci:jlec " Justin Lecher
2014-12-15 11:58 ` [gentoo-commits] proj/sci:master " Justin Lecher
2015-02-28 20:58 [gentoo-commits] proj/sci:jlec " Justin Lecher
2014-11-30 13:34 ` [gentoo-commits] proj/sci:master " Justin Lecher
2015-02-28 20:58 [gentoo-commits] proj/sci:jlec " Justin Lecher
2014-12-02  8:19 ` [gentoo-commits] proj/sci:master " Justin Lecher
2015-02-28 20:58 [gentoo-commits] proj/sci:jlec " Justin Lecher
2014-11-19  8:30 ` [gentoo-commits] proj/sci:master " Justin Lecher
2015-02-21 20:06 Christoph Junghans
2015-02-20 21:54 Christoph Junghans
2015-02-20 16:57 Christoph Junghans
2015-02-20  2:02 Christoph Junghans
2015-02-19 18:00 Christoph Junghans
2015-02-19 18:00 Christoph Junghans
2015-02-19 18:00 Christoph Junghans
2015-02-19 18:00 Christoph Junghans
2015-02-18 10:14 Justin Lecher
2015-02-18  9:28 Justin Lecher
2015-02-18  9:26 Justin Lecher
2015-02-18  9:24 Justin Lecher
2015-02-18  9:21 Justin Lecher
2015-02-18  9:17 Justin Lecher
2015-02-18  9:06 Justin Lecher
2015-02-18  8:31 Justin Lecher
2015-02-18  8:30 Justin Lecher
2015-02-18  7:08 Justin Lecher
2015-02-16 23:53 Christoph Junghans
2015-02-16 23:53 Christoph Junghans
2015-02-14 16:17 Martin Mokrejs
2015-02-13 21:53 Martin Mokrejs
2015-02-13 12:08 Justin Lecher
2015-02-13 12:04 Justin Lecher
2015-02-13 11:41 Justin Lecher
2015-02-13 10:38 Justin Lecher
2015-02-12  8:51 Justin Lecher
2015-02-10 14:37 Justin Lecher
2015-02-08 21:07 Christoph Junghans
2015-02-08 21:07 Christoph Junghans
2015-02-08 21:07 Christoph Junghans
2015-02-04  8:37 Justin Lecher
2015-02-01  3:01 Guillaume Horel
2015-01-31 20:19 Christoph Junghans
2015-01-31 20:19 Christoph Junghans
2015-01-31 20:19 Christoph Junghans
2015-01-26  7:58 Justin Lecher
2015-01-25 16:39 Justin Lecher
2015-01-23 18:19 Christoph Junghans
2015-01-23 11:48 Justin Lecher
2015-01-23 11:48 Justin Lecher
2015-01-22 10:14 Justin Lecher
2015-01-22  0:12 Christoph Junghans
2015-01-22  0:12 Christoph Junghans
2015-01-22  0:12 Christoph Junghans
2015-01-22  0:09 Christoph Junghans
2015-01-22  0:09 Christoph Junghans
2015-01-19 17:59 Justin Lecher
2015-01-18  2:16 Christoph Junghans
2015-01-18  2:16 Christoph Junghans
2015-01-18  2:16 Christoph Junghans
2015-01-18  2:16 Christoph Junghans
2015-01-18  2:16 Christoph Junghans
2015-01-18  2:16 Christoph Junghans
2015-01-15 15:57 Christoph Junghans
2015-01-15 11:14 Martin Mokrejs
2015-01-15  9:57 Martin Mokrejs
2015-01-15  6:53 Justin Lecher
2015-01-15  6:53 Justin Lecher
2015-01-15  6:53 Justin Lecher
2015-01-13  2:06 Christoph Junghans
2015-01-13  2:06 Christoph Junghans
2015-01-12 20:24 Christoph Junghans
2015-01-12 20:24 Christoph Junghans
2015-01-12 20:24 Christoph Junghans
2015-01-12 20:24 Christoph Junghans
2015-01-12 20:24 Christoph Junghans
2015-01-12 20:24 Christoph Junghans
2015-01-12 16:44 Martin Mokrejs
2015-01-12  0:00 Christoph Junghans
2015-01-12  0:00 Christoph Junghans
2015-01-12  0:00 Christoph Junghans
2015-01-12  0:00 Christoph Junghans
2015-01-11  9:09 Justin Lecher
2015-01-11  9:09 Justin Lecher
2015-01-11  9:09 Justin Lecher
2015-01-11  9:09 Justin Lecher
2015-01-10 18:03 Justin Lecher
2015-01-10 18:03 Justin Lecher
2015-01-10 18:03 Justin Lecher
2015-01-10 14:57 Justin Lecher
2015-01-10 14:37 Justin Lecher
2015-01-10 14:37 Justin Lecher
2015-01-10 14:08 Justin Lecher
2015-01-10 14:08 Justin Lecher
2015-01-10 11:44 Justin Lecher
2015-01-10 11:44 Justin Lecher
2015-01-08 20:03 Martin Mokrejs
2015-01-08 12:43 Martin Mokrejs
2015-01-08  6:57 Justin Lecher
2015-01-08  6:57 Justin Lecher
2015-01-06  0:19 Christoph Junghans
2015-01-06  0:19 Christoph Junghans
2015-01-01 23:12 Andrew Savchenko
2015-01-01 15:26 Andrew Savchenko
2014-12-26 18:24 Justin Lecher
2014-12-26 12:16 Justin Lecher
2014-12-26 12:16 Justin Lecher
2014-12-26 12:16 Justin Lecher
2014-12-26 12:16 Justin Lecher
2014-12-26 12:16 Justin Lecher
2014-12-26  1:35 Christoph Junghans
2014-12-24 18:54 Christoph Junghans
2014-12-24 18:54 Christoph Junghans
2014-12-16 23:01 Christoph Junghans
2014-12-16 23:01 Christoph Junghans
2014-12-15 11:58 Justin Lecher
2014-12-15 11:58 Justin Lecher
2014-12-09 17:58 Christoph Junghans
2014-12-02  8:19 Justin Lecher
2014-12-01  9:28 Justin Lecher
2014-11-30 13:34 Justin Lecher
2014-11-24 16:20 Christoph Junghans
2014-11-24 16:20 Christoph Junghans
2014-11-19  8:30 Justin Lecher
2014-11-17  7:12 Justin Lecher
2014-11-17  7:12 Justin Lecher
2014-11-15  0:21 Christoph Junghans
2014-11-14 23:05 Christoph Junghans
2014-11-14 23:05 Christoph Junghans
2014-11-14 11:41 Justin Lecher
2014-11-13  0:15 Christoph Junghans
2014-11-11  8:30 Justin Lecher
2014-11-10 15:14 Justin Lecher
2014-11-10 15:14 Justin Lecher
2014-10-27 17:18 Justin Lecher
2014-10-26 16:16 Justin Lecher
2014-10-24  3:40 Christoph Junghans
2014-10-24  3:33 Christoph Junghans
2014-10-24  3:33 Christoph Junghans
2014-10-20 18:01 Justin Lecher
2014-10-20 18:01 Justin Lecher
2014-10-19  0:18 Mark Wright
2014-10-19  0:18 Mark Wright
2014-10-16 15:50 Christoph Junghans
2014-10-16 15:50 Christoph Junghans
2014-10-10  6:27 Justin Lecher
2014-10-06  5:56 Justin Lecher
2014-09-28 11:30 Justin Lecher
2014-09-24  6:45 Justin Lecher
2014-09-18 20:37 Justin Lecher
2014-09-16  0:27 Christoph Junghans
2014-09-16  0:27 Christoph Junghans
2014-09-12 15:56 Christoph Junghans
2014-09-12  9:03 Jauhien Piatlicki
2014-09-10 10:47 Jauhien Piatlicki
2014-09-07 15:43 Jauhien Piatlicki
2014-09-07 10:11 Jauhien Piatlicki
2014-09-07 10:11 Jauhien Piatlicki
2014-09-06 19:46 Jauhien Piatlicki
2014-09-05 15:24 Jauhien Piatlicki
2014-09-05 15:24 Jauhien Piatlicki
2014-09-05 15:24 Jauhien Piatlicki
2014-09-05 13:09 Honza Macháček
2014-09-04 16:12 Jauhien Piatlicki
2014-09-01 19:47 Jauhien Piatlicki
2014-08-29 19:28 Christoph Junghans
2014-08-29 19:28 Christoph Junghans
2014-08-25 22:43 Christoph Junghans
2014-08-25 22:43 Christoph Junghans
2014-08-22 19:09 Justin Lecher
2014-08-21  8:32 Justin Lecher
2014-08-21  8:32 Justin Lecher
2014-08-19 21:51 Christoph Junghans
2014-08-19 21:51 Christoph Junghans
2014-08-19 21:51 Christoph Junghans
2014-08-19 21:51 Christoph Junghans
2014-08-11 21:38 Christoph Junghans
2014-08-19 21:51 ` Christoph Junghans
2014-08-11 21:38 Christoph Junghans
2014-08-19 21:51 ` Christoph Junghans
2014-08-10  8:05 Justin Lecher
2014-08-10  8:05 Justin Lecher
2014-08-10  8:05 Justin Lecher
2014-08-10  8:05 Justin Lecher
2014-07-27 13:09 Guillaume Horel
2014-07-27  8:58 Justin Lecher
2014-07-24 21:51 Jens-Malte Gottfried
2014-07-24 21:51 Jens-Malte Gottfried
2014-07-22  6:24 Justin Lecher
2014-07-21 22:47 Christoph Junghans
2014-07-21 22:47 Christoph Junghans
2014-07-21 22:47 Christoph Junghans
2014-07-21 22:47 Christoph Junghans
2014-07-21 22:47 Christoph Junghans
2014-07-12 19:54 Guillaume Horel
2014-07-10  8:53 Justin Lecher
2014-07-10  8:53 Justin Lecher
2014-07-10  8:53 Justin Lecher
2014-07-07  6:36 Justin Lecher
2014-07-07  6:36 Justin Lecher
2014-07-07  6:36 Justin Lecher
2014-07-03 22:23 Sebastien Fabbro
2014-07-03 22:23 Sebastien Fabbro
2014-07-02 23:15 Martin Mokrejs
2014-07-02 22:42 Martin Mokrejs
2014-07-02 22:12 Francois Bissey
2014-07-02 22:12 Francois Bissey
2014-07-02 11:14 Jauhien Piatlicki
2014-07-02 11:14 Jauhien Piatlicki
2014-07-01  6:53 Justin Lecher
2014-06-28 21:24 Jauhien Piatlicki
2014-06-26 13:30 Martin Mokrejs
2014-06-16 10:24 Jauhien Piatlicki
2014-06-16 10:24 Jauhien Piatlicki
2014-06-10 21:08 Thomas Kahle
2014-06-10 21:08 Thomas Kahle
2014-06-10 21:08 Thomas Kahle
2014-06-10 21:08 Thomas Kahle
2014-06-10 21:08 Thomas Kahle
2014-06-10 21:06 Thomas Kahle
2014-06-10 21:06 Thomas Kahle
2014-06-09 16:36 Sebastien Fabbro
2014-06-09 16:36 Sebastien Fabbro
2014-06-09 16:36 Sebastien Fabbro
2014-06-03  0:26 Martin Mokrejs
2014-06-02 20:30 Jauhien Piatlicki
2014-06-02 12:11 Jauhien Piatlicki
2014-06-02 12:11 Jauhien Piatlicki
2014-06-02 12:11 Jauhien Piatlicki
2014-06-02 12:11 Jauhien Piatlicki
2014-06-02 12:11 Jauhien Piatlicki
2014-05-12  2:18 Christoph Junghans
2014-05-12  2:18 Christoph Junghans
2014-05-12  2:18 Christoph Junghans
2014-05-07 23:19 Sebastien Fabbro
2014-04-22 11:58 Martin Mokrejs
2014-04-18 18:14 Martin Mokrejs
2014-04-17 22:02 Sebastien Fabbro
2014-04-16 22:32 Sebastien Fabbro
2014-04-16 22:32 Sebastien Fabbro
2014-04-16 22:31 Sebastien Fabbro
2014-04-16 22:31 Sebastien Fabbro
2014-04-15 14:33 Honza Macháček
2014-04-15  8:54 Martin Mokrejs
2014-04-15  0:00 Christoph Junghans
2014-04-15  0:00 Christoph Junghans
2014-04-12 12:35 Martin Mokrejs
2014-04-10 18:00 Sebastien Fabbro
2014-04-10 18:00 Sebastien Fabbro
2014-04-09 11:07 Justin Lecher
2014-04-09 11:07 Justin Lecher
2014-04-09 11:07 Justin Lecher
2014-04-09 11:07 Justin Lecher
2014-04-09 11:07 Justin Lecher
2014-04-03 17:48 Sebastien Fabbro
2014-04-03 17:48 Sebastien Fabbro
2014-04-02 23:05 Sebastien Fabbro
2014-04-02 23:05 Sebastien Fabbro
2014-04-02 23:05 Sebastien Fabbro
2014-04-02 23:05 Sebastien Fabbro
2014-03-31 15:28 Nicolas Bock
2014-03-31 15:28 Nicolas Bock
2014-03-31 15:28 Nicolas Bock
2014-03-28 13:57 Martin Mokrejs
2014-03-27 21:51 Sebastien Fabbro
2014-03-27 21:51 Sebastien Fabbro
2014-03-25 10:48 Martin Mokrejs
2014-03-24 15:28 Justin Lecher
2014-03-23 15:49 Martin Mokrejs
2014-03-23 13:58 Christoph Junghans
2014-03-23 13:58 Christoph Junghans
2014-03-23 13:58 Christoph Junghans
2014-03-23 13:58 Christoph Junghans
2014-03-23 13:58 Christoph Junghans
2014-03-23 13:58 Christoph Junghans
2014-03-23 13:58 Christoph Junghans
2014-03-22  9:45 Justin Lecher
2014-03-22  9:45 Justin Lecher
2014-03-22  9:45 Justin Lecher
2014-03-21 17:10 Sebastien Fabbro
2014-03-19 17:46 Sebastien Fabbro
2014-03-19 17:46 Sebastien Fabbro
2014-03-18 19:28 Justin Lecher
2014-03-18 19:28 Justin Lecher
2014-03-03 20:37 Sebastien Fabbro
2014-03-03 20:37 Sebastien Fabbro
2014-03-03 20:37 Sebastien Fabbro
2014-02-21 16:19 Justin Lecher
2014-02-21 16:19 Justin Lecher
2014-02-21 16:19 Justin Lecher
2014-02-21 16:19 Justin Lecher
2014-02-21 16:19 Justin Lecher
2014-02-21 16:19 Justin Lecher
2014-02-20 18:33 Nicolas Bock
2014-02-19 21:54 Nicolas Bock
2014-02-17 17:28 Sebastien Fabbro
2014-02-16 12:55 Reinis Danne
2014-02-16 12:55 Reinis Danne
2014-02-14 18:19 Reinis Danne
2014-02-14 18:19 Reinis Danne
2014-02-10  4:14 Sebastien Fabbro
2014-02-06 19:48 Nicolas Bock
2014-02-06 19:48 Nicolas Bock
2014-02-06 19:48 Nicolas Bock
2014-02-05  4:38 Nicolas Bock
2014-02-05  4:38 Nicolas Bock
2014-02-05  4:38 Nicolas Bock
2014-02-05  4:38 Nicolas Bock
2014-02-03  1:39 Sebastien Fabbro
2014-02-02 17:01 Reinis Danne
2014-02-02 17:01 Reinis Danne
2014-02-02 17:01 Reinis Danne
2014-02-01 23:06 Nicolas Bock
2014-02-01 23:06 Nicolas Bock
2014-02-01 23:06 Nicolas Bock
2014-01-29 11:39 Justin Lecher
2014-01-29  9:17 Justin Lecher
2014-01-29  9:17 Justin Lecher
2014-01-29  9:17 Justin Lecher
2014-01-29  9:17 Justin Lecher
2014-01-29  9:17 Justin Lecher
2014-01-29  9:17 Justin Lecher
2014-01-29  7:47 Justin Lecher
2014-01-28 19:46 Sebastien Fabbro
2014-01-28 19:46 Sebastien Fabbro
2014-01-28 19:46 Sebastien Fabbro
2014-01-28 19:46 Sebastien Fabbro
2014-01-28 19:46 Sebastien Fabbro
2014-01-28 19:46 Sebastien Fabbro
2014-01-28 19:46 Sebastien Fabbro
2014-01-28 19:46 Sebastien Fabbro
2014-01-28 19:46 Sebastien Fabbro
2014-01-28 19:02 Sebastien Fabbro
2014-01-28 19:02 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-28 19:01 Sebastien Fabbro
2014-01-27  3:00 Guillaume Horel
2014-01-26 22:52 Nicolas Bock
2014-01-22 10:09 Reinis Danne
2014-01-22 10:09 Reinis Danne
2014-01-21 19:38 Reinis Danne
2014-01-20  9:00 Justin Lecher
2014-01-20  9:00 Justin Lecher
2014-01-19 18:34 Justin Lecher
2014-01-18  7:39 Justin Lecher
2014-01-18  7:39 Justin Lecher
2014-01-18  7:39 Justin Lecher
2014-01-18  7:39 Justin Lecher
2014-01-18  7:39 Justin Lecher
2014-01-08 11:20 Justin Lecher
2014-01-07  7:45 Justin Lecher
2014-01-06 17:41 Justin Lecher
2014-01-05 18:38 Justin Lecher
2014-01-04 12:08 Justin Lecher
2014-01-04 12:08 Justin Lecher
2013-12-29 10:11 Justin Lecher
2013-12-28 23:17 Justin Lecher
2013-12-28 23:17 Justin Lecher
2013-12-28  8:43 Justin Lecher
2013-12-08  5:00 Sebastien Fabbro
2013-12-04 12:29 Justin Lecher
2013-12-03 14:53 Justin Lecher
2013-12-03 14:53 Justin Lecher
2013-12-03 14:52 Justin Lecher
2013-12-02 16:21 Justin Lecher
2013-12-02 16:19 Justin Lecher
2013-12-02 13:12 Justin Lecher
2013-12-02 13:12 Justin Lecher
2013-11-26 22:30 Sebastien Fabbro
2013-11-26 22:30 Sebastien Fabbro
2013-11-26 22:30 Sebastien Fabbro
2013-11-26  5:29 Sebastien Fabbro
2013-11-26  5:29 Sebastien Fabbro
2013-11-26  5:29 Sebastien Fabbro
2013-11-26  5:29 Sebastien Fabbro
2013-11-26  5:29 Sebastien Fabbro
2013-11-26  5:29 Sebastien Fabbro
2013-11-26  5:29 Sebastien Fabbro
2013-11-26  5:29 Sebastien Fabbro
2013-11-26  5:29 Sebastien Fabbro
2013-11-26  5:29 Sebastien Fabbro
2013-11-26  5:29 Sebastien Fabbro
2013-11-26  5:29 Sebastien Fabbro
2013-11-26  5:28 Sebastien Fabbro
2013-11-26  5:28 Sebastien Fabbro
2013-11-26  5:28 Sebastien Fabbro
2013-11-26  5:28 Sebastien Fabbro
2013-11-26  5:28 Sebastien Fabbro
2013-11-26  5:28 Sebastien Fabbro
2013-11-25 18:48 Justin Lecher
2013-11-25 18:48 Justin Lecher
2013-11-22 16:42 Nicolas Bock
2013-11-18 20:01 Justin Lecher
2013-11-18  8:01 Justin Lecher
2013-11-16 17:03 Guillaume Horel
2013-11-16 17:03 Guillaume Horel
2013-11-16 17:03 Guillaume Horel
2013-11-16 17:00 Guillaume Horel
2013-11-12 16:43 Nicolas Bock
2013-11-12 16:43 Nicolas Bock
2013-11-12 16:43 Nicolas Bock
2013-11-11 21:48 Nicolas Bock
2013-11-10 12:39 Justin Lecher
2013-11-09  8:55 Justin Lecher
2013-11-09  8:55 Justin Lecher
2013-11-09  8:55 Justin Lecher
2013-11-07 20:05 Alexey Shvetsov
2013-11-07 20:05 Alexey Shvetsov
2013-11-07 20:05 Alexey Shvetsov
2013-11-07 20:05 Alexey Shvetsov
2013-11-07 20:05 Alexey Shvetsov
2013-11-07 20:05 Alexey Shvetsov
2013-11-07  0:37 Guillaume Horel
2013-10-28 22:32 Guillaume Horel
2013-10-24 17:56 Nicolas Bock
2013-10-21 21:41 Christoph Junghans
2013-10-21 21:41 Christoph Junghans
2013-10-21 21:41 Christoph Junghans
2013-10-19  9:36 Honza Macháček
2013-10-18 16:19 Christoph Junghans
2013-10-18 16:19 Christoph Junghans
2013-10-18 16:19 Christoph Junghans
2013-10-16  4:49 Nicolas Bock
2013-10-14 21:07 Nicolas Bock
2013-10-01 15:42 Christoph Junghans
2013-10-01  3:59 Nicolas Bock
2013-09-27 17:36 Nicolas Bock
2013-09-27 15:05 Nicolas Bock
2013-09-26  9:41 Honza Macháček
2013-09-26  9:41 Honza Macháček
2013-09-26  9:41 Honza Macháček
2013-09-25 12:29 Martin Mokrejs
2013-09-20 20:49 Nicolas Bock
2013-09-18 13:51 Nicolas Bock
2013-09-17 19:13 Christoph Junghans
2013-09-17 19:13 Christoph Junghans
2013-09-17 17:33 Nicolas Bock
2013-09-17 17:24 Sebastien Fabbro
2013-09-17 17:24 Sebastien Fabbro
2013-09-17 17:24 Sebastien Fabbro
2013-09-17  9:07 Kacper Kowalik
2013-09-17  9:07 Kacper Kowalik
2013-09-16 18:42 Martin Mokrejs
2013-09-16 18:17 Nicolas Bock
2013-09-15  5:19 Kacper Kowalik
2013-09-14 12:43 Nicolas Bock
2013-09-11 20:43 Martin Mokrejs
2013-09-11 20:32 Nicolas Bock
2013-09-11 20:19 Martin Mokrejs
2013-09-11 17:27 Nicolas Bock
2013-09-11 17:27 Nicolas Bock
2013-09-07 12:45 Kacper Kowalik
2013-09-05  6:23 Kacper Kowalik
2013-09-05  6:23 Kacper Kowalik
2013-09-05  6:23 Kacper Kowalik
2013-09-05  6:23 Kacper Kowalik
2013-09-05  6:23 Kacper Kowalik
2013-09-05  6:23 Kacper Kowalik
2013-09-05  6:23 Kacper Kowalik
2013-09-04  5:11 Kacper Kowalik
2013-09-04  5:11 Kacper Kowalik
2013-09-04  5:11 Kacper Kowalik
2013-09-04  5:11 Kacper Kowalik
2013-09-02 18:17 Nicolas Bock
2013-08-30  7:28 Kacper Kowalik
2013-08-12 21:28 Sebastien Fabbro
2013-08-12 21:28 Sebastien Fabbro
2013-08-12 21:28 Sebastien Fabbro
2013-08-12 21:28 Sebastien Fabbro
2013-08-12 21:28 Sebastien Fabbro
2013-08-06 15:49 Sebastien Fabbro
2013-08-06 15:49 Sebastien Fabbro
2013-07-26 16:14 Nicolas Bock
2013-07-26 16:14 Nicolas Bock
2013-07-26 16:14 Nicolas Bock
2013-07-26 16:14 Nicolas Bock
2013-07-26 16:13 Nicolas Bock
2013-07-19 18:27 Alexey Shvetsov
2013-07-19 18:27 Alexey Shvetsov
2013-07-18  9:49 Justin Lecher
2013-07-17 13:12 Justin Lecher
2013-07-16 21:04 Nicolas Bock
2013-07-16 20:13 Justin Lecher
2013-07-15 13:57 Sebastien Fabbro
2013-07-15 13:57 Sebastien Fabbro
2013-07-12 17:37 Sebastien Fabbro
2013-07-12 17:37 Sebastien Fabbro
2013-07-12 17:37 Sebastien Fabbro
2013-07-12 17:37 Sebastien Fabbro
2013-07-12 17:37 Sebastien Fabbro
2013-07-12 17:37 Sebastien Fabbro
2013-07-11 20:27 [gentoo-commits] proj/sci:vtk " Justin Lecher
2013-07-11 18:32 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-07-11 20:27 [gentoo-commits] proj/sci:vtk " Justin Lecher
2013-07-08 12:08 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-07-11 20:26 [gentoo-commits] proj/sci:vtk " Justin Lecher
2013-06-26 14:55 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-07-11 20:26 [gentoo-commits] proj/sci:vtk " Justin Lecher
2013-07-08 12:08 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-07-11 20:26 [gentoo-commits] proj/sci:vtk " Justin Lecher
2013-07-08 12:08 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-07-09 23:49 Sebastien Fabbro
2013-07-08 12:08 Justin Lecher
2013-07-08 11:54 [gentoo-commits] proj/sci:ccp4 " Justin Lecher
2013-06-26 14:53 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-07-07 23:30 Christoph Junghans
2013-07-07 23:30 Christoph Junghans
2013-07-07 23:30 Christoph Junghans
2013-07-04 19:10 Christoph Junghans
2013-07-04 19:10 Christoph Junghans
2013-07-04 19:10 Christoph Junghans
2013-07-04 19:10 Christoph Junghans
2013-07-04 19:10 Christoph Junghans
2013-07-04 19:10 Christoph Junghans
2013-07-04 19:10 Christoph Junghans
2013-07-04 19:10 Christoph Junghans
2013-07-03 19:58 Sebastien Fabbro
2013-07-03 16:41 Nicolas Bock
2013-06-26 18:33 Nicolas Bock
2013-06-26 17:23 Sebastien Fabbro
2013-06-26 17:23 Sebastien Fabbro
2013-06-26  7:09 [gentoo-commits] proj/sci:jlec " Justin Lecher
2013-07-08 12:08 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-06-18 13:57 Honza Macháček
2013-06-18 13:57 Honza Macháček
2013-06-17 19:07 Honza Macháček
2013-06-18 13:57 ` Honza Macháček
2013-06-17  5:55 [gentoo-commits] proj/sci:jlec " Justin Lecher
2013-06-12 11:44 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-06-17  5:55 [gentoo-commits] proj/sci:jlec " Justin Lecher
2013-06-11 14:25 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-06-17  5:55 [gentoo-commits] proj/sci:jlec " Justin Lecher
2013-06-12 11:44 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-06-17  5:55 [gentoo-commits] proj/sci:fixing " Justin Lecher
2013-06-16 20:19 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-06-17  5:55 [gentoo-commits] proj/sci:ccp4 " Justin Lecher
2013-06-16 17:23 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-06-17  1:07 Sebastien Fabbro
2013-06-17  1:07 Sebastien Fabbro
2013-06-16 17:23 Justin Lecher
2013-06-16 14:23 [gentoo-commits] proj/sci:fixing " Justin Lecher
2013-06-16 11:31 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-06-13 11:21 Justin Lecher
2013-06-13 11:21 Justin Lecher
2013-06-13  7:08 [gentoo-commits] proj/sci:ccp4 " Justin Lecher
2013-06-11 14:25 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-06-12 22:02 Sebastien Fabbro
2013-06-10 11:57 Justin Lecher
2013-06-10 11:35 Justin Lecher
2013-06-07 23:44 Sebastien Fabbro
2013-06-03 23:33 Christoph Junghans
2013-06-03 23:33 Christoph Junghans
2013-06-03 23:33 Christoph Junghans
2013-05-31 15:31 Nicolas Bock
2013-05-31 15:31 Nicolas Bock
2013-05-30 10:31 [gentoo-commits] proj/sci:ccp4 " Justin Lecher
2013-05-07 10:13 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-05-30 10:31 [gentoo-commits] proj/sci:ccp4 " Justin Lecher
2013-05-06  8:26 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-05-30 10:31 [gentoo-commits] proj/sci:ccp4 " Justin Lecher
2013-05-06  8:26 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-05-30 10:31 [gentoo-commits] proj/sci:ccp4 " Justin Lecher
2013-05-06  8:26 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-05-30 10:31 [gentoo-commits] proj/sci:ccp4 " Justin Lecher
2013-05-06  8:26 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-05-28 20:28 Andrew Savchenko
2013-05-16 21:23 Nicolas Bock
2013-05-16 21:23 Nicolas Bock
2013-05-15 20:29 Kacper Kowalik
2013-05-15 11:35 Kacper Kowalik
2013-05-15 11:35 Kacper Kowalik
2013-05-15 11:35 Kacper Kowalik
2013-05-15 11:35 Kacper Kowalik
2013-05-15  6:19 Justin Lecher
2013-05-15  6:19 Justin Lecher
2013-05-06  8:26 Justin Lecher
2013-05-01 20:09 Kacper Kowalik
2013-05-01 20:09 Kacper Kowalik
2013-05-01 20:09 Kacper Kowalik
2013-05-01 20:09 Kacper Kowalik
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-29 16:32 Sebastien Fabbro
2013-04-22  1:40 Christoph Junghans
2013-04-22  1:40 Christoph Junghans
2013-04-22  1:40 Christoph Junghans
2013-04-22  1:40 Christoph Junghans
2013-04-15  6:17 Justin Lecher
2013-04-08  8:48 Justin Lecher
2013-04-08  8:48 Justin Lecher
2013-04-01 13:26 Justin Lecher
2013-03-31 11:15 Alexey Shvetsov
2013-03-31 11:15 Alexey Shvetsov
2013-03-26 15:34 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1651496458.8f92280db89307e2bb8fc85f3df893aca795513c.andrewammerlaan@gentoo \
    --to=andrewammerlaan@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox