From cc394a12128b3aba1cebe3db2cfae8120942f58d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Tue, 18 Dec 2012 18:54:00 -0200 Subject: linux-libre-3.7.1-1: updating version --- libre/linux-libre/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libre/linux-libre/ChangeLog') diff --git a/libre/linux-libre/ChangeLog b/libre/linux-libre/ChangeLog index b41198fe5..a1aabf311 100755 --- a/libre/linux-libre/ChangeLog +++ b/libre/linux-libre/ChangeLog @@ -1,3 +1,8 @@ +2012-12-18 André Silva + + * linux-libre-3.7.1-1 + * Replaced CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" to CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="linux-libre.fsfla.org" + 2012-06-23 André Silva * linux-libre-3.4.4-1 -- cgit v1.2.3-2-g168b From 4c848bbe16a05c51b1ee80cc08f9117c8d392d86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Wed, 19 Dec 2012 03:12:51 -0200 Subject: linux-libre-3.7.1-1: fixing date on a commentary in ChangeLog due that the linux-libre-3.7.1 was released at 20121219 --- libre/linux-libre/ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre/linux-libre/ChangeLog') diff --git a/libre/linux-libre/ChangeLog b/libre/linux-libre/ChangeLog index a1aabf311..a4a67ef14 100755 --- a/libre/linux-libre/ChangeLog +++ b/libre/linux-libre/ChangeLog @@ -1,4 +1,4 @@ -2012-12-18 André Silva +2012-12-19 André Silva * linux-libre-3.7.1-1 * Replaced CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" to CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="linux-libre.fsfla.org" -- cgit v1.2.3-2-g168b From 084d0a37c8d0f1a991ce22ccc6d8c3dd8ca12a33 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 26 Dec 2012 22:14:47 -0500 Subject: (scripted) fix file permission breakage introduced in commit d62bd1 I did this with this command: git diff d62bd1^..d62bd1 | egrep '^old mode ' -C1 \ | tr '\n' ' ' | sed 's/diff --git/\n&/g' \ | sed -r 's|^diff --git a/([^ ]*) b/([^ ]*) old mode 100([0-9]*) new mode 100([0-9]*)|chmod \3 ./\1|' \ | bash The first line finds all of the file-permission changes in the commit. The second line squashes some newlines to get one line per file. This line is in the format: diff --git a/FILE b/FILE old mode OLDMODE new mode NEWMODE The third line extracts the values from those lines and transforms the line into: chmod FILE ./OLDMODE The fourth line (obviously) just executes the output. --- libre/linux-libre/ChangeLog | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 libre/linux-libre/ChangeLog (limited to 'libre/linux-libre/ChangeLog') diff --git a/libre/linux-libre/ChangeLog b/libre/linux-libre/ChangeLog old mode 100755 new mode 100644 -- cgit v1.2.3-2-g168b