From a33a4d6351046d73962131f2685adeb3c2ffb569 Mon Sep 17 00:00:00 2001
From: Gleb Kozyrev <gleb@gkoz.com>
Date: Thu, 26 Mar 2015 00:01:06 +0200
Subject: [PATCH 1/2] Add myself

---
 Cargo.toml      | 2 +-
 glib/Cargo.toml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 736b782..22984ae 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "rgtk"
 version = "0.0.1"
-authors = ["letang.jeremy@gmail.com", "guillaume1.gomez@gmail.com", "mathijs.henquet@gmail.com", "bpgarman@fastmail.fm", "me@bstr.eu", "zsoakes@gmail.com"]
+authors = ["letang.jeremy@gmail.com", "guillaume1.gomez@gmail.com", "mathijs.henquet@gmail.com", "bpgarman@fastmail.fm", "me@bstr.eu", "zsoakes@gmail.com", "Gleb Kozyrev <gleb@gkoz.com>"]
 
 description = "A rust binding for the GTK+ library"
 repository = "https://github.com/jeremyletang/rgtk"
diff --git a/glib/Cargo.toml b/glib/Cargo.toml
index 7820e63..8db2e18 100644
--- a/glib/Cargo.toml
+++ b/glib/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "glib"
 version = "0.1.0"
-authors = ["letang.jeremy@gmail.com", "guillaume1.gomez@gmail.com", "mathijs.henquet@gmail.com", "bpgarman@fastmail.fm", "me@bstr.eu", "zsoakes@gmail.com"]
+authors = ["letang.jeremy@gmail.com", "guillaume1.gomez@gmail.com", "mathijs.henquet@gmail.com", "bpgarman@fastmail.fm", "me@bstr.eu", "zsoakes@gmail.com", "Gleb Kozyrev <gleb@gkoz.com>"]
 
 description = "A rust binding for the GLib library"
 repository = "https://github.com/jeremyletang/rgtk"

From fcaf1af12227689cc39435b21c8df229a91117af Mon Sep 17 00:00:00 2001
From: Gleb Kozyrev <gleb@gkoz.com>
Date: Thu, 26 Mar 2015 00:01:56 +0200
Subject: [PATCH 2/2] Add missing license headers

---
 glib/src/translate.rs | 15 +++++++++++++++
 glib/src/type_.rs     | 15 +++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/glib/src/translate.rs b/glib/src/translate.rs
index 584bea3..a7a29c9 100644
--- a/glib/src/translate.rs
+++ b/glib/src/translate.rs
@@ -1,3 +1,18 @@
+// This file is part of rgtk.
+//
+// rgtk is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// rgtk is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with rgtk.  If not, see <http://www.gnu.org/licenses/>.
+
 //! Translation between GLib/GLib-based FFI types and their Rust counterparts
 //!
 //! This module allows library bindings authors to decouple type translation
diff --git a/glib/src/type_.rs b/glib/src/type_.rs
index 5d79f15..982f7cc 100644
--- a/glib/src/type_.rs
+++ b/glib/src/type_.rs
@@ -1,3 +1,18 @@
+// This file is part of rgtk.
+//
+// rgtk is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// rgtk is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with rgtk.  If not, see <http://www.gnu.org/licenses/>.
+
 use std::marker::PhantomFn;
 use translate::{FromGlib, ToGlib};
 use ffi;