[gentoo-commits] gentoo commit in src/patchsets/gcc/6.4.0/gentoo: 10_all_default-fortify-source.patch 11_all_default-warn-format-security.patch 12_all_default-warn-trampolines.patch 13_all_default-ssp

2017-08-02 Thread Anthony G. Basile (blueness)
blueness17/08/02 18:21:23

  Added:10_all_default-fortify-source.patch
11_all_default-warn-format-security.patch
12_all_default-warn-trampolines.patch
13_all_default-ssp-fix.patch
25_all_alpha-mieee-default.patch
29_all_arm_armv4t-default.patch
34_all_ia64_note.GNU-stack.patch
42_all_superh_default-multilib.patch
50_all_libiberty-asprintf.patch
51_all_libiberty-pic.patch
54_all_nopie-all-flags.patch
55_all_extra-options.patch
90_all_pr55930-dependency-tracking.patch
README.history
  Log:
  Add patchset ver 1.0 for 6.4.0

Revision  ChangesPath
1.1  
src/patchsets/gcc/6.4.0/gentoo/10_all_default-fortify-source.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/10_all_default-fortify-source.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/10_all_default-fortify-source.patch?rev=1.1=text/plain

Index: 10_all_default-fortify-source.patch
===
Enable -D_FORTIFY_SOURCE=2 by default.


--- a/gcc/c-family/c-cppbuiltin.c
+++ b/gcc/c-family/c-cppbuiltin.c
@@ -951,6 +951,9 @@ c_cpp_builtins (cpp_reader *pfile)
   builtin_define_with_value ("__REGISTER_PREFIX__", REGISTER_PREFIX, 0);
   builtin_define_with_value ("__USER_LABEL_PREFIX__", user_label_prefix, 0);
 
+  /* Fortify Source enabled by default w/optimization.  */
+  cpp_define (pfile, "_FORTIFY_SOURCE=((defined __OPTIMIZE__ && __OPTIMIZE__ > 
0) ? 2 : 0)");
+
   /* Misc.  */
   if (flag_gnu89_inline)
 cpp_define (pfile, "__GNUC_GNU_INLINE__");



1.1  
src/patchsets/gcc/6.4.0/gentoo/11_all_default-warn-format-security.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/11_all_default-warn-format-security.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/11_all_default-warn-format-security.patch?rev=1.1=text/plain

Index: 11_all_default-warn-format-security.patch
===
Enable -Wformat and -Wformat-security by default.

--- a/gcc/c-family/c.opt2016-03-23 18:51:56.0 +0100
+++ b/gcc/c-family/c.opt2016-04-28 23:45:54.063351272 +0200
@@ -459,7 +459,7 @@ C ObjC C++ ObjC++ Var(warn_format_nonlit
 Warn about format strings that are not literals.
 
 Wformat-security
-C ObjC C++ ObjC++ Var(warn_format_security) Warning LangEnabledBy(C ObjC C++ 
ObjC++,Wformat=, warn_format >= 2, 0)
+C ObjC C++ ObjC++ Var(warn_format_security) Init(1) Warning LangEnabledBy(C 
ObjC C++ ObjC++,Wformat=, warn_format >= 2, 0)
 Warn about possible security problems with format functions.
 
 Wformat-signedness
@@ -475,7 +475,7 @@ C ObjC C++ ObjC++ Var(warn_format_zero_l
 Warn about zero-length formats.
 
 Wformat=
-C ObjC C++ ObjC++ Joined RejectNegative UInteger Var(warn_format) Warning 
LangEnabledBy(C ObjC C++ ObjC++,Wall, 1, 0)
+C ObjC C++ ObjC++ Joined RejectNegative UInteger Var(warn_format) Init(1) 
Warning LangEnabledBy(C ObjC C++ ObjC++,Wall, 1, 0)
 Warn about printf/scanf/strftime/strfmon format string anomalies.
 
 Wignored-qualifiers



1.1  
src/patchsets/gcc/6.4.0/gentoo/12_all_default-warn-trampolines.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/12_all_default-warn-trampolines.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/12_all_default-warn-trampolines.patch?rev=1.1=text/plain

Index: 12_all_default-warn-trampolines.patch
===
Enable -Wtrampolines by default.

--- a/gcc/common.opt
+++ b/gcc/common.opt
@@ -712,7 +712,7 @@ Common Var(warn_system_headers) Warning
 Do not suppress warnings from system headers.
 
 Wtrampolines
-Common Var(warn_trampolines) Warning
+Common Var(warn_trampolines) Init(1) Warning
 Warn whenever a trampoline is generated.
 
 Wtype-limits



1.1  src/patchsets/gcc/6.4.0/gentoo/13_all_default-ssp-fix.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/13_all_default-ssp-fix.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/13_all_default-ssp-fix.patch?rev=1.1=text/plain

Index: 13_all_default-ssp-fix.patch
===
We disable ssp on -nostdlib and -ffreestanding as we did on older gcc
and change the buffer size.

--- a/gcc/c-family/c-opts.c 2016-03-08 23:30:44.0 +0100
+++ b/gcc/c-family/c-opts.c 2016-09-18 

[gentoo-commits] gentoo commit in src/patchsets/gcc/6.4.0/gentoo: - New directory

2017-08-02 Thread Anthony G. Basile (blueness)
blueness17/08/02 18:17:13

  Log:
  Directory /var/cvsroot/gentoo/src/patchsets/gcc/6.4.0/gentoo added to the 
repository



[gentoo-commits] gentoo commit in src/patchsets/gcc/6.4.0: - New directory

2017-08-02 Thread Anthony G. Basile (blueness)
blueness17/08/02 18:17:02

  Log:
  Directory /var/cvsroot/gentoo/src/patchsets/gcc/6.4.0 added to the repository



[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.4/gentoo: 09_all_default-ssp.patch 10_all_default-fortify-source.patch 11_all_default-warn-format-security.patch 12_all_default-warn-trampolines

2016-08-14 Thread Anthony G. Basile (blueness)
blueness16/08/14 21:35:00

  Added:09_all_default-ssp.patch
10_all_default-fortify-source.patch
11_all_default-warn-format-security.patch
12_all_default-warn-trampolines.patch
13_all_default-color.patch
15_all_libgfortran-Werror.patch
16_all_libgomp-Werror.patch
17_all_libitm-Werror.patch
18_all_libatomic-Werror.patch
19_all_libbacktrace-Werror.patch
20_all_msgfmt-libstdc++-link.patch
25_all_alpha-mieee-default.patch
26_all_alpha-asm-mcpu.patch
29_all_arm_armv4t-default.patch
34_all_ia64_note.GNU-stack.patch
34_all_libjava-classpath-locale-sort.patch
38_all_sh_pr24836_all-archs.patch
42_all_superh_default-multilib.patch
50_all_libiberty-asprintf.patch
51_all_libiberty-pic.patch
52_all_netbsd-Bsymbolic.patch
53_all_libitm-no-fortify-source.patch
67_all_gcc-poison-system-directories.patch
74_all_gcc49_cloog-dl.patch
90_all_pr55930-dependency-tracking.patch
91_all_pr61538-atomic-compare-exchange.patch

93_all_gcc-4.9-config.h-bconfig.h-parallel-PR57125-PR61899.patch
README.history
  Log:
  initial 4.9.4 patchset based on last 4.9.3 patchset

Revision  ChangesPath
1.1  src/patchsets/gcc/4.9.4/gentoo/09_all_default-ssp.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/gentoo/09_all_default-ssp.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/gentoo/09_all_default-ssp.patch?rev=1.1=text/plain

Index: 09_all_default-ssp.patch
===
2014-04-27  Magnus Granberg  

Patch orig: Debian/Ubuntu
# 484714
We Add -fstack-protector-strong as default and change
ssp-buffer-size

--- a/configure.ac
+++ b/configure.ac
@@ -3238,6 +3238,9 @@ case $build in
 esac ;;
 esac
 
+# Needed when we build with -fstack-protector as default.
+stage1_cflags="$stage1_cflags -fno-stack-protector"
+
 AC_SUBST(stage1_cflags)
 
 # Enable --enable-checking in stage1 of the compiler.
--- a/configure
+++ b/configure
@@ -14453,7 +14453,8 @@ case $build in
 esac ;;
 esac
 
-
+# Needed when we build with -fstack-protector as default.
+stage1_cflags="$stage1_cflags -fno-stack-protector"
 
 # Enable --enable-checking in stage1 of the compiler.
 # Check whether --enable-stage1-checking was given.
--- a/Makefile.in
+++ b/Makefile.in
@@ -362,7 +362,7 @@ BUILD_PREFIX_1 = @BUILD_PREFIX_1@
 
 # Flags to pass to stage2 and later makes.  They are defined
 # here so that they can be overridden by Makefile fragments.
-BOOT_CFLAGS= -g -O2
+BOOT_CFLAGS= -g -O2 -fno-stack-protector
 BOOT_LDFLAGS=
 BOOT_ADAFLAGS= -gnatpg
 
@@ -408,9 +408,9 @@ GNATMAKE = @GNATMAKE@
 
 CFLAGS = @CFLAGS@
 LDFLAGS = @LDFLAGS@
-LIBCFLAGS = $(CFLAGS)
+LIBCFLAGS = $(CFLAGS) -fno-stack-protector
 CXXFLAGS = @CXXFLAGS@
-LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
+LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates -fno-stack-protector
 GOCFLAGS = $(CFLAGS)
 
 TFLAGS =
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -9239,6 +9251,11 @@ Like @option{-fstack-protector} but incl
 be protected --- those that have local array definitions, or have
 references to local frame addresses.
 
+NOTE: In Gentoo GCC 4.9.0 and later versions this option is enabled by default
+for C, C++, ObjC, and ObjC++ if none of the options 
@option{-fno-stack-protector},
+@option{-nostdlib}, @option{-ffreestanding}, @option{-fstack-protector},
+@option{-fstack-protector-strong}, or @option{-fstack-protector-all} are found.
+
 @item -fsection-anchors
 @opindex fsection-anchors
 Try to reduce the number of symbolic address calculations by using
@@ -9461,6 +9465,9 @@
 The minimum size of buffers (i.e.@: arrays) that receive stack smashing
 protection when @option{-fstack-protection} is used.
 
+NOTE: In Gentoo this is change from "8" to "4", to increase
+the number of functions protected by the stack protector.
+
 @item min-size-for-stack-sharing
 The minimum size of variables taking part in stack slot sharing when not
 optimizing. The default value is 32.
--- a/gcc/cp/lang-specs.h
+++ b/gcc/cp/lang-specs.h
@@ -46,7 +46,7 @@ along with GCC; see the file COPYING3.  If not see
%(cpp_options) %2 -o %{save-temps*:%b.ii} %{!save-temps*:%g.ii} 
\n}\
   cc1plus %{save-temps*|no-integrated-cpp:-fpreprocessed 
%{save-temps*:%b.ii} 

[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.4/uclibc: 90_all_100-uclibc-conf.patch 90_all_301-missing-execinfo_h.patch 90_all_302-c99-snprintf.patch

2016-08-14 Thread Anthony G. Basile (blueness)
blueness16/08/14 21:35:00

  Added:90_all_100-uclibc-conf.patch
90_all_301-missing-execinfo_h.patch
90_all_302-c99-snprintf.patch
  Log:
  initial 4.9.4 patchset based on last 4.9.3 patchset

Revision  ChangesPath
1.1  src/patchsets/gcc/4.9.4/uclibc/90_all_100-uclibc-conf.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/uclibc/90_all_100-uclibc-conf.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/uclibc/90_all_100-uclibc-conf.patch?rev=1.1=text/plain

Index: 90_all_100-uclibc-conf.patch
===
--- gcc/contrib/regression/objs-gcc.sh
+++ gcc/contrib/regression/objs-gcc.sh
@@ -105,6 +105,10 @@
  then
   make all-gdb all-dejagnu all-ld || exit 1
   make install-gdb install-dejagnu install-ld || exit 1
+elif [ $H_REAL_TARGET = $H_REAL_HOST -a $H_REAL_TARGET = i686-pc-linux-uclibc ]
+ then
+  make all-gdb all-dejagnu all-ld || exit 1
+  make install-gdb install-dejagnu install-ld || exit 1
 elif [ $H_REAL_TARGET = $H_REAL_HOST ] ; then
   make bootstrap || exit 1
   make install || exit 1
--- gcc/libjava/classpath/ltconfig
+++ gcc/libjava/classpath/ltconfig
@@ -603,7 +603,7 @@
 
 # Transform linux* to *-*-linux-gnu*, to support old configure scripts.
 case $host_os in
-linux-gnu*) ;;
+linux-gnu*|linux-uclibc*) ;;
 linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'`
 esac
 
@@ -1251,7 +1251,7 @@
   ;;
 
 # This must be Linux ELF.
-linux-gnu*)
+linux*)
   version_type=linux
   need_lib_prefix=no
   need_version=no



1.1  
src/patchsets/gcc/4.9.4/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.1=text/plain

Index: 90_all_301-missing-execinfo_h.patch
===
https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06

2007-12-18  Hans Boehm  (really Radek Polak)

* include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.

--- a/boehm-gc/include/gc.h
+++ b/boehm-gc/include/gc.h
@@ -500,7 +500,7 @@
 #ifdef __linux__
 # include 
 # if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1 || __GLIBC__ > 2) \
- && !defined(__ia64__)
+ && !defined(__ia64__) && !defined(__UCLIBC__)
 #   ifndef GC_HAVE_BUILTIN_BACKTRACE
 # define GC_HAVE_BUILTIN_BACKTRACE
 #   endif



1.1  
src/patchsets/gcc/4.9.4/uclibc/90_all_302-c99-snprintf.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/uclibc/90_all_302-c99-snprintf.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/uclibc/90_all_302-c99-snprintf.patch?rev=1.1=text/plain

Index: 90_all_302-c99-snprintf.patch
===
Index: gcc-4.3.0/libstdc++-v3/include/c_global/cstdio
===
--- gcc-4.3.0/libstdc++-v3/include/c_global/cstdio  (revision 129202)
+++ gcc-4.3.0/libstdc++-v3/include/c_global/cstdio  (working copy)
@@ -144,7 +144,7 @@
 
 _GLIBCXX_END_NAMESPACE
 
-#if _GLIBCXX_USE_C99
+#if _GLIBCXX_USE_C99 || defined __UCLIBC__
 
 #undef snprintf
 #undef vfscanf






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.4/pie: 01_all_gcc49_configure.patch 02_all_gcc48_config.in.patch 03_all_gcc49_Makefile.in.patch 05_all_gcc48_gcc.c.patch 16_all_gcc47_nopie_opti

2016-08-14 Thread Anthony G. Basile (blueness)
blueness16/08/14 21:35:00

  Added:01_all_gcc49_configure.patch
02_all_gcc48_config.in.patch
03_all_gcc49_Makefile.in.patch
05_all_gcc48_gcc.c.patch
16_all_gcc47_nopie_option.patch
20_all_gcc49_config_crtbeginp.patch
24_all_gcc49_invoke.texi.patch
33_all_gcc48_config_rs6000.patch
34_all_gcc48_config_i386.patch
35_all_gcc48_config_arm.patch
36_all_gcc48_config_mips.patch
37_all_gcc48_config_ia64.patch
40_all_gcc49_config_esp.patch README
README.Changelog README.history
  Log:
  initial 4.9.4 patchset based on last 4.9.3 patchset

Revision  ChangesPath
1.1  src/patchsets/gcc/4.9.4/pie/01_all_gcc49_configure.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/pie/01_all_gcc49_configure.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/pie/01_all_gcc49_configure.patch?rev=1.1=text/plain

Index: 01_all_gcc49_configure.patch
===
2013-12-30  Magnus Granberg 

* gcc/configure.ac  Add --enable-esp and define ENABLE_ESP.
Check if we support crtbeginP and define ENABLE_CRTBEGINP.
* gcc/configure Regenerated


--- a/gcc/configure.ac  2011-11-18 11:52:32.0 +0100
+++ b/gcc/configure.ac  2012-10-02 17:39:15.649526241 +0200
@@ -5130,6 +5237,55 @@ if test x"${LINKER_HASH_STYLE}" != x; th
  [The linker hash style])
 fi
 
+# --
+# Esp checks
+# --
+
+# Check whether --enable-esp was given and target have the support.
+AC_ARG_ENABLE([esp],
+[AS_HELP_STRING([--enable-esp],
+   [Enable Stack protector and Position independent executable as
+default if we have suppot for it when compiling
+and link with -z now as default.
+Linux targets supported i*86, x86_64, x32,
+powerpc, powerpc64, ia64, arm and mips.])],
+  enable_esp=$enableval,
+  enable_esp=no)
+if test $enable_esp = yes ; then
+  AC_MSG_CHECKING(if $target support esp)
+  case "$target" in
+i?86*-*-linux* | x86_64-*-linux* | powerpc*-*-linux* | mips-*-linux* | 
arm*-*-linux* | ia64-*-linux*)
+  enable_esp=yes
+  AC_DEFINE(ENABLE_ESP, 1,
+[Define if your target support esp and you have enable it.])
+  ;;
+*)
+  enable_esp=no
+  ;;
+  esac
+AC_MSG_RESULT($enable_esp)
+fi
+AC_SUBST([enable_esp])
+if test $enable_esp = yes ; then
+  AC_MSG_CHECKING(checking for crtbeginP.o support)
+if test x$enable_esp = xyes ; then
+  case "$target" in
+ia64*-*-linux*)
+  enable_crtbeginP=no ;;
+*-*-linux*)
+  if test x$gcc_cv_ld_pie = xyes && test 
x$lt_cv_prog_compiler_static_works = xyes; then
+enable_crtbeginP=yes
+AC_DEFINE(ENABLE_CRTBEGINP, 1,
+  [Define if your compiler will support crtbeginP.])
+  fi
+  ;;
+*) enable_crtbeginP=no ;;
+  esac
+fi
+  AC_MSG_RESULT($enable_crtbeginP)
+fi
+AC_SUBST([enable_crtbeginP])
+
 # Configure the subdirectories
 # AC_CONFIG_SUBDIRS($subdirs)
 
--- a/gcc/configure 2013-02-01 21:26:24.0 +0100
+++ b/gcc/configure 2013-02-12 01:59:20.0 +0100
@@ -600,6 +600,8 @@
 ac_subst_vars='LTLIBOBJS
 LIBOBJS
 PICFLAG
+enable_crtbeginP
+enable_esp
 enable_host_shared
 enable_plugin
 pluginlibs
@@ -920,6 +922,7 @@
 enable_plugin
 enable_libquadmath_support
 with_linker_hash_style
+enable_esp
 '
   ac_precious_vars='build_alias
 host_alias
@@ -1633,6 +1636,11 @@
   --enable-plugin enable plugin support
   --disable-libquadmath-support
   disable libquadmath support for Fortran
+  --enable-espEnable Stack protector and Position independent
+  executable as default if we have suppot for it when
+  compiling and link with -z now as default.
+  Linux targets supported i*86, x86_64, x32,
+  powerpc, powerpc64, ia64, arm and mips.
 
 Optional Packages:
   --with-PACKAGE[=ARG]use PACKAGE [ARG=yes]
@@ -27419,6 +27427,59 @@
 
 fi
 
+# --
+# Esp checks
+# --
+
+# Check whether --enable-esp was given and target have the support.
+# Check whether --enable-esp was given.
+if test "${enable_esp+set}" = set; then :
+  enableval=$enable_esp; enable_esp=$enableval
+else
+  enable_esp=no
+fi
+
+if test $enable_esp = yes ; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $target support esp" >&5
+$as_echo_n "checking if $target support esp... " >&6; }
+  

[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.4/uclibc: - New directory

2016-08-14 Thread Anthony G. Basile (blueness)
blueness16/08/14 16:45:55

  Log:
  Directory /var/cvsroot/gentoo/src/patchsets/gcc/4.9.4/uclibc added to the 
repository



[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.4/pie: - New directory

2016-08-14 Thread Anthony G. Basile (blueness)
blueness16/08/14 16:45:46

  Log:
  Directory /var/cvsroot/gentoo/src/patchsets/gcc/4.9.4/pie added to the 
repository



[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.4: - New directory

2016-08-14 Thread Anthony G. Basile (blueness)
blueness16/08/14 16:45:21

  Log:
  Directory /var/cvsroot/gentoo/src/patchsets/gcc/4.9.4 added to the repository



[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.4/gentoo: - New directory

2016-08-14 Thread Anthony G. Basile (blueness)
blueness16/08/14 16:45:35

  Log:
  Directory /var/cvsroot/gentoo/src/patchsets/gcc/4.9.4/gentoo added to the 
repository



[gentoo-commits] gentoo-x86 commit in net-misc/ipv6calc: ipv6calc-0.98.0.ebuild ipv6calc-0.97.4.ebuild ChangeLog

2015-08-07 Thread Anthony G. Basile (blueness)
blueness15/08/08 00:49:16

  Modified: ipv6calc-0.97.4.ebuild ChangeLog
  Added:ipv6calc-0.98.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.2  net-misc/ipv6calc/ipv6calc-0.97.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.97.4.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.97.4.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.97.4.ebuild?r1=1.1r2=1.2

Index: ipv6calc-0.97.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.97.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ipv6calc-0.97.4.ebuild  3 Aug 2014 23:34:19 -   1.1
+++ ipv6calc-0.97.4.ebuild  8 Aug 2015 00:49:16 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.97.4.ebuild,v 
1.1 2014/08/03 23:34:19 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.97.4.ebuild,v 
1.2 2015/08/08 00:49:16 blueness Exp $
 
 EAPI=5
 inherit eutils



1.82 net-misc/ipv6calc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ChangeLog?rev=1.82view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ChangeLog?rev=1.82content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ChangeLog?r1=1.81r2=1.82

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog   3 Aug 2014 23:44:35 -   1.81
+++ ChangeLog   8 Aug 2015 00:49:16 -   1.82
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/ipv6calc
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.81 
2014/08/03 23:44:35 blueness Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.82 
2015/08/08 00:49:16 blueness Exp $
+
+*ipv6calc-0.98.0 (08 Aug 2015)
+
+  08 Aug 2015; Anthony G. Basile bluen...@gentoo.org +ipv6calc-0.98.0.ebuild,
+  ipv6calc-0.97.4.ebuild:
+  Version bump.
 
   03 Aug 2014; Anthony G. Basile bluen...@gentoo.org
   -files/ipv6calc-fix-configure-opts.patch, -ipv6calc-0.97.2-r1.ebuild:



1.1  net-misc/ipv6calc/ipv6calc-0.98.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.98.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.98.0.ebuild?rev=1.1content-type=text/plain

Index: ipv6calc-0.98.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.98.0.ebuild,v 
1.1 2015/08/08 00:49:16 blueness Exp $

EAPI=5
inherit eutils

DESCRIPTION=IPv6 address calculator
HOMEPAGE=http://www.deepspace6.net/projects/ipv6calc.html;
SRC_URI=ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/${P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux
IUSE=geoip test

RDEPEND=
dev-libs/openssl
geoip? ( =dev-libs/geoip-1.4.7 )

DEPEND=${RDEPEND}
test? ( dev-perl/Digest-SHA1 )


#dev-perl/URI is needed for web interface, that is not installed now

src_configure() {
# These options are broken.  You can't disable them.  That's
# okay because we want then force enabled.
# --disable-db-as-registry
# --disable-db-cc-registry
if use geoip; then
myconf=$(use_enable geoip)
myconf+= --with-geoip-db=${EPREFIX}/usr/share/GeoIP
fi
econf \
--disable-bundled-getopt \
--disable-bundled-md5 \
--enable-shared \
--enable-dynamic-load \
--enable-db-ieee \
--enable-db-ipv4 \
--enable-db-ipv6 \
--disable-dbip \
--disable-external \
--disable-ip2location \
${myconf}
}

src_compile() {
# Disable default CFLAGS (-O2 and -g)
emake DEFAULT_CFLAGS=
}

src_test() {
if [[ ${EUID} -eq 0 ]]; then
# Disable tests that fail 

[gentoo-commits] gentoo-x86 commit in net-misc/ipv6calc: ipv6calc-0.97.4.ebuild ipv6calc-0.98.0.ebuild ChangeLog ipv6calc-0.93.1.ebuild ipv6calc-0.96.0.ebuild ipv6calc-0.95.0.ebuild

2015-08-07 Thread Anthony G. Basile (blueness)
blueness15/08/08 01:27:54

  Modified: ipv6calc-0.97.4.ebuild ipv6calc-0.98.0.ebuild
ChangeLog
  Removed:  ipv6calc-0.93.1.ebuild ipv6calc-0.96.0.ebuild
ipv6calc-0.95.0.ebuild
  Log:
  Remove older versions.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.3  net-misc/ipv6calc/ipv6calc-0.97.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.97.4.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.97.4.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.97.4.ebuild?r1=1.2r2=1.3

Index: ipv6calc-0.97.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.97.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ipv6calc-0.97.4.ebuild  8 Aug 2015 00:49:16 -   1.2
+++ ipv6calc-0.97.4.ebuild  8 Aug 2015 01:27:54 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.97.4.ebuild,v 
1.2 2015/08/08 00:49:16 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.97.4.ebuild,v 
1.3 2015/08/08 01:27:54 blueness Exp $
 
 EAPI=5
 inherit eutils
@@ -15,7 +15,7 @@
 IUSE=geoip test
 
 RDEPEND=
-   dev-libs/openssl
+   dev-libs/openssl:=
geoip? ( =dev-libs/geoip-1.4.7 )
 
 DEPEND=${RDEPEND}



1.2  net-misc/ipv6calc/ipv6calc-0.98.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.98.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.98.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.98.0.ebuild?r1=1.1r2=1.2

Index: ipv6calc-0.98.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.98.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ipv6calc-0.98.0.ebuild  8 Aug 2015 00:49:16 -   1.1
+++ ipv6calc-0.98.0.ebuild  8 Aug 2015 01:27:54 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.98.0.ebuild,v 
1.1 2015/08/08 00:49:16 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.98.0.ebuild,v 
1.2 2015/08/08 01:27:54 blueness Exp $
 
 EAPI=5
 inherit eutils
@@ -15,7 +15,7 @@
 IUSE=geoip test
 
 RDEPEND=
-   dev-libs/openssl
+   dev-libs/openssl:=
geoip? ( =dev-libs/geoip-1.4.7 )
 
 DEPEND=${RDEPEND}



1.83 net-misc/ipv6calc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ChangeLog?rev=1.83view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ChangeLog?rev=1.83content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ipv6calc/ChangeLog?r1=1.82r2=1.83

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog   8 Aug 2015 00:49:16 -   1.82
+++ ChangeLog   8 Aug 2015 01:27:54 -   1.83
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/ipv6calc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.82 
2015/08/08 00:49:16 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.83 
2015/08/08 01:27:54 blueness Exp $
+
+  08 Aug 2015; Anthony G. Basile bluen...@gentoo.org -ipv6calc-0.93.1.ebuild,
+  -ipv6calc-0.95.0.ebuild, -ipv6calc-0.96.0.ebuild, ipv6calc-0.97.4.ebuild,
+  ipv6calc-0.98.0.ebuild:
+  Remove older versions.
 
 *ipv6calc-0.98.0 (08 Aug 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-python/amodem: amodem-1.11.ebuild ChangeLog

2015-08-07 Thread Anthony G. Basile (blueness)
blueness15/08/08 01:35:37

  Modified: ChangeLog
  Added:amodem-1.11.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.6  dev-python/amodem/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/amodem/ChangeLog?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/amodem/ChangeLog?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/amodem/ChangeLog?r1=1.5r2=1.6

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/amodem/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   3 Jul 2015 12:28:35 -   1.5
+++ ChangeLog   8 Aug 2015 01:35:37 -   1.6
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/amodem
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/amodem/ChangeLog,v 1.5 
2015/07/03 12:28:35 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/amodem/ChangeLog,v 1.6 
2015/08/08 01:35:37 blueness Exp $
+
+*amodem-1.11 (08 Aug 2015)
+
+  08 Aug 2015; Anthony G. Basile bluen...@gentoo.org +amodem-1.11.ebuild:
+  Version bump.
 
 *amodem-1.10 (03 Jul 2015)
 



1.1  dev-python/amodem/amodem-1.11.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/amodem/amodem-1.11.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/amodem/amodem-1.11.ebuild?rev=1.1content-type=text/plain

Index: amodem-1.11.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/amodem/amodem-1.11.ebuild,v 1.1 
2015/08/08 01:35:37 blueness Exp $

EAPI=5

PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )

inherit distutils-r1

DESCRIPTION=Transmit data between two computers using audio
HOMEPAGE=https://github.com/romanz/amodem;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=






[gentoo-commits] gentoo-x86 commit in sys-libs/fortify-headers: fortify-headers-0.6.ebuild ChangeLog

2015-08-07 Thread Anthony G. Basile (blueness)
blueness15/08/07 17:46:36

  Modified: ChangeLog
  Added:fortify-headers-0.6.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.3  sys-libs/fortify-headers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/fortify-headers/ChangeLog?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/fortify-headers/ChangeLog?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/fortify-headers/ChangeLog?r1=1.2r2=1.3

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/fortify-headers/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   3 Jul 2015 13:23:08 -   1.2
+++ ChangeLog   7 Aug 2015 17:46:36 -   1.3
@@ -1,6 +1,12 @@
 # ChangeLog for sys-libs/fortify-headers
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/fortify-headers/ChangeLog,v 1.2 
2015/07/03 13:23:08 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/fortify-headers/ChangeLog,v 1.3 
2015/08/07 17:46:36 blueness Exp $
+
+*fortify-headers-0.6 (07 Aug 2015)
+
+  07 Aug 2015; Anthony G. Basile bluen...@gentoo.org
+  +fortify-headers-0.6.ebuild:
+  Version bump.
 
 *fortify-headers-0.5 (03 Jul 2015)
 *fortify-headers- (03 Jul 2015)



1.1  sys-libs/fortify-headers/fortify-headers-0.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/fortify-headers/fortify-headers-0.6.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/fortify-headers/fortify-headers-0.6.ebuild?rev=1.1content-type=text/plain

Index: fortify-headers-0.6.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-libs/fortify-headers/fortify-headers-0.6.ebuild,v 
1.1 2015/08/07 17:46:36 blueness Exp $

EAPI=5

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://git.2f30.org/fortify-headers
inherit git-2
else

SRC_URI=http://git.2f30.org/fortify-headers/snapshot/fortify-headers-${PV}.tar.gz;
KEYWORDS=~amd64 ~arm ~mips ~ppc ~x86
fi

DESCRIPTION=A standalone implementation of fortify source.
HOMEPAGE=http://git.2f30.org/fortify-headers/;

LICENSE=ISC
SLOT=0
IUSE=

DEPEND=
RDEPEND=${DEPEND}

src_prepare() {
sed -i -e 's|^PREFIX = /usr/local|PREFIX = /usr|g' Makefile
export DESTDIR=${D}
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: hardened-sources-3.14.49.ebuild ChangeLog

2015-08-04 Thread Anthony G. Basile (blueness)
blueness15/08/05 05:17:58

  Modified: ChangeLog
  Added:hardened-sources-3.14.49.ebuild
  Log:
  vanilla-3.14.49 + genpatches-3.14-53 + grsecurity-3.1-3.14.49-201508032312
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1333   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1333view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1333content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1332r2=1.1333

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1332
retrieving revision 1.1333
diff -u -r1.1332 -r1.1333
--- ChangeLog   3 Aug 2015 08:25:42 -   1.1332
+++ ChangeLog   5 Aug 2015 05:17:58 -   1.1333
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1332 2015/08/03 08:25:42 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1333 2015/08/05 05:17:58 blueness Exp $
+
+*hardened-sources-3.14.49 (05 Aug 2015)
+
+  05 Aug 2015; Anthony G. Basile bluen...@gentoo.org
+  +hardened-sources-3.14.49.ebuild:
+  vanilla-3.14.49 + genpatches-3.14-53 + grsecurity-3.1-3.14.49-201508032312
 
   03 Aug 2015; Anthony G. Basile bluen...@gentoo.org
   -hardened-sources-3.14.35.ebuild, -hardened-sources-3.2.68.ebuild:



1.1  sys-kernel/hardened-sources/hardened-sources-3.14.49.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.49.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.49.ebuild?rev=1.1content-type=text/plain

Index: hardened-sources-3.14.49.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.49.ebuild,v
 1.1 2015/08/05 05:17:58 blueness Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base
K_GENPATCHES_VER=53
K_DEBLOB_AVAILABLE=1

inherit kernel-2
detect_version

HGPV=${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-1
HGPV_URI=http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
SRC_URI=${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}

UNIPATCH_LIST=${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2
UNIPATCH_EXCLUDE=
1500_XATTR_USER_PREFIX.patch
2900_dev-root-proc-mount-fix.patch

DESCRIPTION=Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})
HOMEPAGE=http://www.gentoo.org/proj/en/hardened/;
IUSE=deblob

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86

RDEPEND==sys-devel/gcc-4.5

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT=sys-apps/gradm-3.1*

ewarn
ewarn Users of grsecurity's RBAC system must ensure they are using
ewarn ${GRADM_COMPAT}, which is compatible with ${PF}.
ewarn It is strongly recommended that the following command is issued
ewarn prior to booting a ${PF} kernel for the first time:
ewarn
ewarn emerge -na =${GRADM_COMPAT}
ewarn
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: hardened-sources-4.1.4.ebuild ChangeLog

2015-08-04 Thread Anthony G. Basile (blueness)
blueness15/08/05 05:21:01

  Modified: ChangeLog
  Added:hardened-sources-4.1.4.ebuild
  Log:
  vanilla-4.1.4 + genpatches-4.1-7 + grsecurity-3.1-4.1.4-201508032312
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1334   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1334view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1334content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1333r2=1.1334

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1333
retrieving revision 1.1334
diff -u -r1.1333 -r1.1334
--- ChangeLog   5 Aug 2015 05:17:58 -   1.1333
+++ ChangeLog   5 Aug 2015 05:21:00 -   1.1334
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1333 2015/08/05 05:17:58 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1334 2015/08/05 05:21:00 blueness Exp $
+
+*hardened-sources-4.1.4 (05 Aug 2015)
+
+  05 Aug 2015; Anthony G. Basile bluen...@gentoo.org
+  +hardened-sources-4.1.4.ebuild:
+  vanilla-4.1.4 + genpatches-4.1-7 + grsecurity-3.1-4.1.4-201508032312
 
 *hardened-sources-3.14.49 (05 Aug 2015)
 



1.1  sys-kernel/hardened-sources/hardened-sources-4.1.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.4.ebuild?rev=1.1content-type=text/plain

Index: hardened-sources-4.1.4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.4.ebuild,v
 1.1 2015/08/05 05:21:00 blueness Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base
K_GENPATCHES_VER=7
K_DEBLOB_AVAILABLE=1

inherit kernel-2
detect_version

HGPV=${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-1
HGPV_URI=http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
SRC_URI=${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}

UNIPATCH_LIST=${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2
UNIPATCH_EXCLUDE=
1500_XATTR_USER_PREFIX.patch
2900_dev-root-proc-mount-fix.patch

DESCRIPTION=Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})
HOMEPAGE=http://www.gentoo.org/proj/en/hardened/;
IUSE=deblob

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86

RDEPEND==sys-devel/gcc-4.5

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT=sys-apps/gradm-3.1*

ewarn
ewarn Users of grsecurity's RBAC system must ensure they are using
ewarn ${GRADM_COMPAT}, which is compatible with ${PF}.
ewarn It is strongly recommended that the following command is issued
ewarn prior to booting a ${PF} kernel for the first time:
ewarn
ewarn emerge -na =${GRADM_COMPAT}
ewarn
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: hardened-sources-3.14.48-r3.ebuild ChangeLog

2015-08-03 Thread Anthony G. Basile (blueness)
blueness15/08/03 08:20:38

  Modified: ChangeLog
  Added:hardened-sources-3.14.48-r3.ebuild
  Log:
  vanilla-3.14.48 + genpatches-3.14-53 + grsecurity-3.1-3.14.48-201508020901
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1330   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1330view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1330content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1329r2=1.1330

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1329
retrieving revision 1.1330
diff -u -r1.1329 -r1.1330
--- ChangeLog   3 Aug 2015 08:18:07 -   1.1329
+++ ChangeLog   3 Aug 2015 08:20:38 -   1.1330
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1329 2015/08/03 08:18:07 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1330 2015/08/03 08:20:38 blueness Exp $
+
+*hardened-sources-3.14.48-r3 (03 Aug 2015)
+
+  03 Aug 2015; Anthony G. Basile bluen...@gentoo.org
+  +hardened-sources-3.14.48-r3.ebuild:
+  vanilla-3.14.48 + genpatches-3.14-53 + grsecurity-3.1-3.14.48-201508020901
 
 *hardened-sources-3.2.69-r13 (03 Aug 2015)
 



1.1  
sys-kernel/hardened-sources/hardened-sources-3.14.48-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.48-r3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.48-r3.ebuild?rev=1.1content-type=text/plain

Index: hardened-sources-3.14.48-r3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.48-r3.ebuild,v
 1.1 2015/08/03 08:20:38 blueness Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base
K_GENPATCHES_VER=53
K_DEBLOB_AVAILABLE=1

inherit kernel-2
detect_version

HGPV=${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-4
HGPV_URI=http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
SRC_URI=${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}

UNIPATCH_LIST=${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2
UNIPATCH_EXCLUDE=
1500_XATTR_USER_PREFIX.patch
2900_dev-root-proc-mount-fix.patch

DESCRIPTION=Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})
HOMEPAGE=http://www.gentoo.org/proj/en/hardened/;
IUSE=deblob

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86

RDEPEND==sys-devel/gcc-4.5

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT=sys-apps/gradm-3.1*

ewarn
ewarn Users of grsecurity's RBAC system must ensure they are using
ewarn ${GRADM_COMPAT}, which is compatible with ${PF}.
ewarn It is strongly recommended that the following command is issued
ewarn prior to booting a ${PF} kernel for the first time:
ewarn
ewarn emerge -na =${GRADM_COMPAT}
ewarn
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: ChangeLog hardened-sources-3.14.35.ebuild hardened-sources-3.2.68.ebuild

2015-08-03 Thread Anthony G. Basile (blueness)
blueness15/08/03 08:25:42

  Modified: ChangeLog
  Removed:  hardened-sources-3.14.35.ebuild
hardened-sources-3.2.68.ebuild
  Log:
  Remove older stable versions.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1332   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1332view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1332content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1331r2=1.1332

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1331
retrieving revision 1.1332
diff -u -r1.1331 -r1.1332
--- ChangeLog   3 Aug 2015 08:23:48 -   1.1331
+++ ChangeLog   3 Aug 2015 08:25:42 -   1.1332
@@ -1,6 +1,10 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1331 2015/08/03 08:23:48 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1332 2015/08/03 08:25:42 blueness Exp $
+
+  03 Aug 2015; Anthony G. Basile bluen...@gentoo.org
+  -hardened-sources-3.14.35.ebuild, -hardened-sources-3.2.68.ebuild:
+  Remove older stable versions.
 
 *hardened-sources-4.1.3-r3 (03 Aug 2015)
 






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: hardened-sources-3.2.69-r13.ebuild ChangeLog

2015-08-03 Thread Anthony G. Basile (blueness)
blueness15/08/03 08:18:07

  Modified: ChangeLog
  Added:hardened-sources-3.2.69-r13.ebuild
  Log:
  vanilla-3.2.69 + genpatches-3.2-16 + grsecurity-3.1-3.2.69-201508020900
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1329   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1329view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1329content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1328r2=1.1329

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1328
retrieving revision 1.1329
diff -u -r1.1328 -r1.1329
--- ChangeLog   30 Jul 2015 11:08:32 -  1.1328
+++ ChangeLog   3 Aug 2015 08:18:07 -   1.1329
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1328 2015/07/30 11:08:32 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1329 2015/08/03 08:18:07 blueness Exp $
+
+*hardened-sources-3.2.69-r13 (03 Aug 2015)
+
+  03 Aug 2015; Anthony G. Basile bluen...@gentoo.org
+  +hardened-sources-3.2.69-r13.ebuild:
+  vanilla-3.2.69 + genpatches-3.2-16 + grsecurity-3.1-3.2.69-201508020900
 
   30 Jul 2015; Anthony G. Basile bluen...@gentoo.org
   -hardened-sources-4.1.3-r1.ebuild:



1.1  
sys-kernel/hardened-sources/hardened-sources-3.2.69-r13.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.2.69-r13.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.2.69-r13.ebuild?rev=1.1content-type=text/plain

Index: hardened-sources-3.2.69-r13.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.2.69-r13.ebuild,v
 1.1 2015/08/03 08:18:07 blueness Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base extras
K_GENPATCHES_VER=16
K_DEBLOB_AVAILABLE=1

inherit kernel-2
detect_version

HGPV=${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-14
HGPV_URI=http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
SRC_URI=${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}

UNIPATCH_LIST=${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2
UNIPATCH_EXCLUDE=4200_fbcondecor-0.9.6.patch

DESCRIPTION=Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})
HOMEPAGE=http://www.gentoo.org/proj/en/hardened/;
IUSE=deblob

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86

RDEPEND==sys-devel/gcc-4.5

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT=sys-apps/gradm-3.1*

ewarn
ewarn Users of grsecurity's RBAC system must ensure they are using
ewarn ${GRADM_COMPAT}, which is compatible with ${PF}.
ewarn It is strongly recommended that the following command is issued
ewarn prior to booting a ${PF} kernel for the first time:
ewarn
ewarn emerge -na =${GRADM_COMPAT}
ewarn
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: hardened-sources-4.1.3-r3.ebuild ChangeLog

2015-08-03 Thread Anthony G. Basile (blueness)
blueness15/08/03 08:23:48

  Modified: ChangeLog
  Added:hardened-sources-4.1.3-r3.ebuild
  Log:
  vanilla-4.1.3 + genpatches-4.1-7 + grsecurity-3.1-4.1.3-201508011613
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1331   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1331view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1331content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1330r2=1.1331

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1330
retrieving revision 1.1331
diff -u -r1.1330 -r1.1331
--- ChangeLog   3 Aug 2015 08:20:38 -   1.1330
+++ ChangeLog   3 Aug 2015 08:23:48 -   1.1331
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1330 2015/08/03 08:20:38 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1331 2015/08/03 08:23:48 blueness Exp $
+
+*hardened-sources-4.1.3-r3 (03 Aug 2015)
+
+  03 Aug 2015; Anthony G. Basile bluen...@gentoo.org
+  +hardened-sources-4.1.3-r3.ebuild:
+  vanilla-4.1.3 + genpatches-4.1-7 + grsecurity-3.1-4.1.3-201508011613
 
 *hardened-sources-3.14.48-r3 (03 Aug 2015)
 



1.1  
sys-kernel/hardened-sources/hardened-sources-4.1.3-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.3-r3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.3-r3.ebuild?rev=1.1content-type=text/plain

Index: hardened-sources-4.1.3-r3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.3-r3.ebuild,v
 1.1 2015/08/03 08:23:48 blueness Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base
K_GENPATCHES_VER=7
K_DEBLOB_AVAILABLE=1

inherit kernel-2
detect_version

HGPV=${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-4
HGPV_URI=http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
SRC_URI=${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}

UNIPATCH_LIST=${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2
UNIPATCH_EXCLUDE=
1500_XATTR_USER_PREFIX.patch
2900_dev-root-proc-mount-fix.patch

DESCRIPTION=Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})
HOMEPAGE=http://www.gentoo.org/proj/en/hardened/;
IUSE=deblob

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86

RDEPEND==sys-devel/gcc-4.5

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT=sys-apps/gradm-3.1*

ewarn
ewarn Users of grsecurity's RBAC system must ensure they are using
ewarn ${GRADM_COMPAT}, which is compatible with ${PF}.
ewarn It is strongly recommended that the following command is issued
ewarn prior to booting a ${PF} kernel for the first time:
ewarn
ewarn emerge -na =${GRADM_COMPAT}
ewarn
}






[gentoo-commits] gentoo-x86 commit in profiles/arch/powerpc/ppc64/64ul: use.mask

2015-08-01 Thread Anthony G. Basile (blueness)
blueness15/08/01 11:55:09

  Modified: use.mask
  Log:
  use.mask USE=luajittex.  There is no luajit support on ppc64/64ul.  Bug 
#554376.

Revision  ChangesPath
1.15 profiles/arch/powerpc/ppc64/64ul/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ppc64/64ul/use.mask?rev=1.15view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ppc64/64ul/use.mask?rev=1.15content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ppc64/64ul/use.mask?r1=1.14r2=1.15

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ppc64/64ul/use.mask,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- use.mask10 May 2015 18:19:16 -  1.14
+++ use.mask1 Aug 2015 11:55:09 -   1.15
@@ -1,5 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ppc64/64ul/use.mask,v 
1.14 2015/05/10 18:19:16 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ppc64/64ul/use.mask,v 
1.15 2015/08/01 11:55:09 blueness Exp $
+
+# Anthony G. Basile bluen...@gentoo.org (01 Aug 2015)
+# There is no luajit support on ppc64 userland.  Bug #554376.
+luajittex
 
 # Jeroen Roovers j...@gentoo.org (10 May 2015)
 # virtual/opencl requires media-libs/mesa[opencl] (bug #549096)






[gentoo-commits] gentoo-x86 commit in profiles/arch/powerpc: ChangeLog

2015-08-01 Thread Anthony G. Basile (blueness)
blueness15/08/01 11:55:09

  Modified: ChangeLog
  Log:
  use.mask USE=luajittex.  There is no luajit support on ppc64/64ul.  Bug 
#554376.

Revision  ChangesPath
1.343profiles/arch/powerpc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ChangeLog?rev=1.343view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ChangeLog?rev=1.343content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ChangeLog?r1=1.342r2=1.343

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v
retrieving revision 1.342
retrieving revision 1.343
diff -u -r1.342 -r1.343
--- ChangeLog   25 Jul 2015 15:41:19 -  1.342
+++ ChangeLog   1 Aug 2015 11:55:09 -   1.343
@@ -1,6 +1,10 @@
 # ChangeLog for Gentoo/PPC profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v 1.342 
2015/07/25 15:41:19 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v 1.343 
2015/08/01 11:55:09 blueness Exp $
+
+  01 Aug 2015; Anthony G. Basile bluen...@gentoo.org ppc64/64ul/use.mask:
+  use.mask USE=luajittex. There is no luajit support on ppc64/64ul. Bug
+  #554376.
 
   25 Jul 2015; Mike Gilbert flop...@gentoo.org make.defaults:
   Remove python_targets override.






[gentoo-commits] gentoo-x86 commit in profiles/arch/mips: ChangeLog use.mask

2015-08-01 Thread Anthony G. Basile (blueness)
blueness15/08/01 11:50:25

  Modified: ChangeLog use.mask
  Log:
  use.mask USE=luajittex.  There is no luajit support on mips.  Bug #554376.

Revision  ChangesPath
1.163profiles/arch/mips/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/ChangeLog?rev=1.163view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/ChangeLog?rev=1.163content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/ChangeLog?r1=1.162r2=1.163

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/mips/ChangeLog,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -r1.162 -r1.163
--- ChangeLog   24 May 2015 04:32:58 -  1.162
+++ ChangeLog   1 Aug 2015 11:50:25 -   1.163
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/MIPS profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/ChangeLog,v 1.162 
2015/05/24 04:32:58 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/ChangeLog,v 1.163 
2015/08/01 11:50:25 blueness Exp $
+
+  01 Aug 2015; Anthony G. Basile bluen...@gentoo.org use.mask:
+  use.mask USE=luajittex. There is no luajit support on mips. Bug #554376.
 
   24 May 2015; Matt Turner matts...@gentoo.org package.use.mask:
   Drop dead r600-llvm-compiler USE flag from package.use.mask.



1.84 profiles/arch/mips/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/use.mask?rev=1.84view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/use.mask?rev=1.84content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/use.mask?r1=1.83r2=1.84

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/mips/use.mask,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- use.mask16 Apr 2015 22:05:25 -  1.83
+++ use.mask1 Aug 2015 11:50:25 -   1.84
@@ -1,10 +1,14 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/use.mask,v 1.83 
2015/04/16 22:05:25 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/use.mask,v 1.84 
2015/08/01 11:50:25 blueness Exp $
 
 # Unmask the flag which corresponds to ARCH.
 -mips
 
+# Anthony G. Basile bluen...@gentoo.org (01 Aug 2015)
+# There is no luajit support on mips.  Bug #554376.
+luajittex
+
 # Markos Chandras hwoar...@gentoo.org
 # app-arch/lz4 does not seem to build on MIPS
 # Original bug report: #501600






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: hardened-sources-4.1.3-r2.ebuild ChangeLog

2015-07-30 Thread Anthony G. Basile (blueness)
blueness15/07/30 11:06:16

  Modified: ChangeLog
  Added:hardened-sources-4.1.3-r2.ebuild
  Log:
  vanilla-4.1.3 + genpatches-4.1-7 + grsecurity-3.1-4.1.3-201507281943
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1327   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1327view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1327content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1326r2=1.1327

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1326
retrieving revision 1.1327
diff -u -r1.1326 -r1.1327
--- ChangeLog   27 Jul 2015 18:13:28 -  1.1326
+++ ChangeLog   30 Jul 2015 11:06:16 -  1.1327
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1326 2015/07/27 18:13:28 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1327 2015/07/30 11:06:16 blueness Exp $
+
+*hardened-sources-4.1.3-r2 (30 Jul 2015)
+
+  30 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  +hardened-sources-4.1.3-r2.ebuild:
+  vanilla-4.1.3 + genpatches-4.1-7 + grsecurity-3.1-4.1.3-201507281943
 
   27 Jul 2015; Anthony G. Basile bluen...@gentoo.org
   -hardened-sources-3.14.48-r1.ebuild, -hardened-sources-4.1.3.ebuild:



1.1  
sys-kernel/hardened-sources/hardened-sources-4.1.3-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.3-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.3-r2.ebuild?rev=1.1content-type=text/plain

Index: hardened-sources-4.1.3-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.3-r2.ebuild,v
 1.1 2015/07/30 11:06:16 blueness Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base
K_GENPATCHES_VER=7
K_DEBLOB_AVAILABLE=1

inherit kernel-2
detect_version

HGPV=${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-3
HGPV_URI=http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
SRC_URI=${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}

UNIPATCH_LIST=${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2
UNIPATCH_EXCLUDE=
1500_XATTR_USER_PREFIX.patch
2900_dev-root-proc-mount-fix.patch

DESCRIPTION=Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})
HOMEPAGE=http://www.gentoo.org/proj/en/hardened/;
IUSE=deblob

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86

RDEPEND==sys-devel/gcc-4.5

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT=sys-apps/gradm-3.1*

ewarn
ewarn Users of grsecurity's RBAC system must ensure they are using
ewarn ${GRADM_COMPAT}, which is compatible with ${PF}.
ewarn It is strongly recommended that the following command is issued
ewarn prior to booting a ${PF} kernel for the first time:
ewarn
ewarn emerge -na =${GRADM_COMPAT}
ewarn
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: ChangeLog hardened-sources-4.1.3-r1.ebuild

2015-07-30 Thread Anthony G. Basile (blueness)
blueness15/07/30 11:08:32

  Modified: ChangeLog
  Removed:  hardened-sources-4.1.3-r1.ebuild
  Log:
  Remove older unstable version.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1328   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1328view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1328content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1327r2=1.1328

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1327
retrieving revision 1.1328
diff -u -r1.1327 -r1.1328
--- ChangeLog   30 Jul 2015 11:06:16 -  1.1327
+++ ChangeLog   30 Jul 2015 11:08:32 -  1.1328
@@ -1,6 +1,10 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1327 2015/07/30 11:06:16 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1328 2015/07/30 11:08:32 blueness Exp $
+
+  30 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  -hardened-sources-4.1.3-r1.ebuild:
+  Remove older unstable version.
 
 *hardened-sources-4.1.3-r2 (30 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in net-misc/stunnel: stunnel-5.22.ebuild ChangeLog stunnel-5.21.ebuild

2015-07-30 Thread Anthony G. Basile (blueness)
blueness15/07/30 11:19:13

  Modified: ChangeLog
  Added:stunnel-5.22.ebuild
  Removed:  stunnel-5.21.ebuild
  Log:
  Version bump to fix ipv6 passive resolver.  Remove buggy unstable.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.240net-misc/stunnel/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.240view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.240content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?r1=1.239r2=1.240

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.239
retrieving revision 1.240
diff -u -r1.239 -r1.240
--- ChangeLog   29 Jul 2015 13:14:41 -  1.239
+++ ChangeLog   30 Jul 2015 11:19:13 -  1.240
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/stunnel
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.239 
2015/07/29 13:14:41 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.240 
2015/07/30 11:19:13 blueness Exp $
+
+*stunnel-5.22 (30 Jul 2015)
+
+  30 Jul 2015; Anthony G. Basile bluen...@gentoo.org +stunnel-5.22.ebuild,
+  -stunnel-5.21.ebuild:
+  Version bump to fix ipv6 passive resolver.  Remove buggy unstable.
 
   29 Jul 2015; Anthony G. Basile bluen...@gentoo.org stunnel-5.20.ebuild:
   Stable on ppc and ppc64.  Bug #551890.



1.1  net-misc/stunnel/stunnel-5.22.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.22.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.22.ebuild?rev=1.1content-type=text/plain

Index: stunnel-5.22.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.22.ebuild,v 1.1 
2015/07/30 11:19:13 blueness Exp $

EAPI=5

inherit ssl-cert eutils multilib systemd user

DESCRIPTION=TLS/SSL - Port Wrapper
HOMEPAGE=http://www.stunnel.org/index.html;
SRC_URI=ftp://ftp.stunnel.org/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
http://www.usenix.org.uk/mirrors/stunnel/archive/${PV%%.*}.x/${P}.tar.gz

http://ftp.nluug.nl/pub/networking/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
http://www.namesdir.com/mirrors/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
http://stunnel.cybermirror.org/archive/${PV%%.*}.x/${P}.tar.gz
http://mirrors.zerg.biz/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
ftp://mirrors.go-parts.com/stunnel/archive/${PV%%.*}.x/${P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos
IUSE=ipv6 selinux stunnel3 tcpd

DEPEND=tcpd? ( sys-apps/tcp-wrappers )
dev-libs/openssl:=
RDEPEND=${DEPEND}
stunnel3? ( dev-lang/perl )
selinux? ( sec-policy/selinux-stunnel )

RESTRICT=test

pkg_setup() {
enewgroup stunnel
enewuser stunnel -1 -1 -1 stunnel
}

src_prepare() {
# Hack away generation of certificate
sed -i -e s/^install-data-local:/do-not-run-this:/ \
tools/Makefile.in || die sed failed

echo CONFIG_PROTECT=\/etc/stunnel/stunnel.conf\  ${T}/20stunnel
}

src_configure() {
econf \
--libdir=${EPREFIX}/usr/$(get_libdir) \
$(use_enable ipv6) \
$(use_enable tcpd libwrap) \
--with-ssl=${EPREFIX}/usr \
--disable-fips
}

src_install() {
emake DESTDIR=${D} install
rm -rf ${ED}/usr/share/doc/${PN}
rm -f ${ED}/etc/stunnel/stunnel.conf-sample \
${ED}/usr/share/man/man8/stunnel.{fr,pl}.8
use stunnel3 || rm -f ${ED}/usr/bin/stunnel3

# The binary was moved to /usr/bin with 4.21,
# symlink for backwards compatibility
dosym ../bin/stunnel /usr/sbin/stunnel

dodoc AUTHORS BUGS CREDITS PORTS README TODO ChangeLog
dohtml doc/stunnel.html doc/en/VNC_StunnelHOWTO.html tools/ca.html \
tools/importCA.html

insinto /etc/stunnel
doins ${FILESDIR}/stunnel.conf
doinitd ${FILESDIR}/stunnel

doenvd ${T}/20stunnel

systemd_dounit ${S}/tools/stunnel.service
systemd_newtmpfilesd ${FILESDIR}/stunnel.tmpfiles.conf stunnel.conf
}

pkg_postinst() {
if [ ! -f ${EROOT}/etc/stunnel/stunnel.key ]; then
install_cert /etc/stunnel/stunnel
chown stunnel:stunnel 

[gentoo-commits] gentoo-x86 commit in net-misc/stunnel: stunnel-5.20.ebuild ChangeLog

2015-07-29 Thread Anthony G. Basile (blueness)
blueness15/07/29 13:14:41

  Modified: stunnel-5.20.ebuild ChangeLog
  Log:
  Stable on ppc and ppc64.  Bug #551890.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.3  net-misc/stunnel/stunnel-5.20.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.20.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.20.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.20.ebuild?r1=1.2r2=1.3

Index: stunnel-5.20.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.20.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- stunnel-5.20.ebuild 29 Jul 2015 13:13:25 -  1.2
+++ stunnel-5.20.ebuild 29 Jul 2015 13:14:41 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.20.ebuild,v 1.2 
2015/07/29 13:13:25 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.20.ebuild,v 1.3 
2015/07/29 13:14:41 blueness Exp $
 
 EAPI=5
 
@@ -18,7 +18,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos
+KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos
 IUSE=ipv6 selinux stunnel3 tcpd
 
 DEPEND=tcpd? ( sys-apps/tcp-wrappers )



1.239net-misc/stunnel/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.239view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.239content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?r1=1.238r2=1.239

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.238
retrieving revision 1.239
diff -u -r1.238 -r1.239
--- ChangeLog   29 Jul 2015 13:13:25 -  1.238
+++ ChangeLog   29 Jul 2015 13:14:41 -  1.239
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/stunnel
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.238 
2015/07/29 13:13:25 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.239 
2015/07/29 13:14:41 blueness Exp $
+
+  29 Jul 2015; Anthony G. Basile bluen...@gentoo.org stunnel-5.20.ebuild:
+  Stable on ppc and ppc64.  Bug #551890.
 
   29 Jul 2015; Anthony G. Basile bluen...@gentoo.org stunnel-5.20.ebuild,
   stunnel-5.21.ebuild:






[gentoo-commits] gentoo-x86 commit in net-misc/stunnel: stunnel-5.21.ebuild stunnel-5.20.ebuild ChangeLog

2015-07-29 Thread Anthony G. Basile (blueness)
blueness15/07/29 13:13:26

  Modified: stunnel-5.21.ebuild stunnel-5.20.ebuild ChangeLog
  Log:
  Restrict tests.  Bug #556206.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.2  net-misc/stunnel/stunnel-5.21.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.21.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.21.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.21.ebuild?r1=1.1r2=1.2

Index: stunnel-5.21.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.21.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- stunnel-5.21.ebuild 28 Jul 2015 12:01:09 -  1.1
+++ stunnel-5.21.ebuild 29 Jul 2015 13:13:25 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.21.ebuild,v 1.1 
2015/07/28 12:01:09 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.21.ebuild,v 1.2 
2015/07/29 13:13:25 blueness Exp $
 
 EAPI=5
 
@@ -27,6 +27,8 @@
stunnel3? ( dev-lang/perl )
selinux? ( sec-policy/selinux-stunnel )
 
+RESTRICT=test
+
 pkg_setup() {
enewgroup stunnel
enewuser stunnel -1 -1 -1 stunnel



1.2  net-misc/stunnel/stunnel-5.20.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.20.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.20.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.20.ebuild?r1=1.1r2=1.2

Index: stunnel-5.20.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.20.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- stunnel-5.20.ebuild 9 Jul 2015 14:38:38 -   1.1
+++ stunnel-5.20.ebuild 29 Jul 2015 13:13:25 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.20.ebuild,v 1.1 
2015/07/09 14:38:38 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.20.ebuild,v 1.2 
2015/07/29 13:13:25 blueness Exp $
 
 EAPI=5
 
@@ -27,6 +27,8 @@
stunnel3? ( dev-lang/perl )
selinux? ( sec-policy/selinux-stunnel )
 
+RESTRICT=test
+
 pkg_setup() {
enewgroup stunnel
enewuser stunnel -1 -1 -1 stunnel



1.238net-misc/stunnel/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.238view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.238content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?r1=1.237r2=1.238

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.237
retrieving revision 1.238
diff -u -r1.237 -r1.238
--- ChangeLog   28 Jul 2015 12:01:09 -  1.237
+++ ChangeLog   29 Jul 2015 13:13:25 -  1.238
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/stunnel
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.237 
2015/07/28 12:01:09 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.238 
2015/07/29 13:13:25 blueness Exp $
+
+  29 Jul 2015; Anthony G. Basile bluen...@gentoo.org stunnel-5.20.ebuild,
+  stunnel-5.21.ebuild:
+  Restrict tests.  Bug #556206.
 
 *stunnel-5.21 (28 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-util/valgrind: valgrind-3.10.1.ebuild ChangeLog

2015-07-28 Thread Anthony G. Basile (blueness)
blueness15/07/29 02:44:45

  Modified: valgrind-3.10.1.ebuild ChangeLog
  Log:
  Patch 3.10.1 to build against glibc-2.21.  Bug #554808.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.8  dev-util/valgrind/valgrind-3.10.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/valgrind-3.10.1.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/valgrind-3.10.1.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/valgrind-3.10.1.ebuild?r1=1.7r2=1.8

Index: valgrind-3.10.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.10.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- valgrind-3.10.1.ebuild  25 Mar 2015 13:40:39 -  1.7
+++ valgrind-3.10.1.ebuild  29 Jul 2015 02:44:45 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.10.1.ebuild,v 
1.7 2015/03/25 13:40:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.10.1.ebuild,v 
1.8 2015/07/29 02:44:45 blueness Exp $
 
 EAPI=4
 inherit autotools eutils flag-o-matic toolchain-funcs multilib pax-utils
@@ -43,6 +43,9 @@
# valgrind works fine on linux-4, bug #543648
epatch ${FILESDIR}/${PN}-3.10.1-linux-4.patch
 
+   # glibc 2.21 fix.  Bug #554808.
+   epatch ${FILESDIR}/${PN}-3.10.1-glibc-2.21.patch
+
# Allow users to test their own patches
epatch_user
 



1.186dev-util/valgrind/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/ChangeLog?rev=1.186view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/ChangeLog?rev=1.186content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/ChangeLog?r1=1.185r2=1.186

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- ChangeLog   25 Mar 2015 13:40:39 -  1.185
+++ ChangeLog   29 Jul 2015 02:44:45 -  1.186
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/valgrind
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.185 
2015/03/25 13:40:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.186 
2015/07/29 02:44:45 blueness Exp $
+
+  29 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  +files/valgrind-3.10.1-glibc-2.21.patch, valgrind-3.10.1.ebuild:
+  Patch 3.10.1 to build against glibc-2.21.  Bug #554808.
 
   25 Mar 2015; Agostino Sarubbo a...@gentoo.org valgrind-3.10.1.ebuild:
   Stable for x86, wrt bug #541952






[gentoo-commits] gentoo-x86 commit in dev-util/valgrind/files: valgrind-3.10.1-glibc-2.21.patch

2015-07-28 Thread Anthony G. Basile (blueness)
blueness15/07/29 02:44:45

  Added:valgrind-3.10.1-glibc-2.21.patch
  Log:
  Patch 3.10.1 to build against glibc-2.21.  Bug #554808.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1  dev-util/valgrind/files/valgrind-3.10.1-glibc-2.21.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/files/valgrind-3.10.1-glibc-2.21.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/files/valgrind-3.10.1-glibc-2.21.patch?rev=1.1content-type=text/plain

Index: valgrind-3.10.1-glibc-2.21.patch
===
diff -Naur valgrind-3.10.1.orig/configure.ac valgrind-3.10.1/configure.ac
--- valgrind-3.10.1.orig/configure.ac   2014-11-25 14:41:13.0 -0500
+++ valgrind-3.10.1/configure.ac2015-07-28 22:35:22.315604804 -0400
@@ -1018,6 +1018,13 @@
DEFAULT_SUPP=glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}
DEFAULT_SUPP=glibc-2.X-drd.supp ${DEFAULT_SUPP}
;;
+ 2.21)
+   AC_MSG_RESULT(2.21 family)
+   AC_DEFINE([GLIBC_2_21], 1, [Define to 1 if you're using glibc 2.21.x])
+   DEFAULT_SUPP=glibc-2.X.supp ${DEFAULT_SUPP}
+   DEFAULT_SUPP=glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}
+   DEFAULT_SUPP=glibc-2.X-drd.supp ${DEFAULT_SUPP}
+   ;;
  darwin)
AC_MSG_RESULT(Darwin)
AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])






[gentoo-commits] gentoo-x86 commit in net-misc/tor: tor-0.2.7.2_alpha.ebuild ChangeLog

2015-07-28 Thread Anthony G. Basile (blueness)
blueness15/07/28 11:53:29

  Modified: ChangeLog
  Added:tor-0.2.7.2_alpha.ebuild
  Log:
  Version bump alpha.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.488net-misc/tor/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?rev=1.488view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?rev=1.488content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?r1=1.487r2=1.488

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v
retrieving revision 1.487
retrieving revision 1.488
diff -u -r1.487 -r1.488
--- ChangeLog   26 Jul 2015 23:32:39 -  1.487
+++ ChangeLog   28 Jul 2015 11:53:29 -  1.488
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/tor
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.487 2015/07/26 
23:32:39 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.488 2015/07/28 
11:53:29 blueness Exp $
+
+*tor-0.2.7.2_alpha (28 Jul 2015)
+
+  28 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  +tor-0.2.7.2_alpha.ebuild:
+  Version bump alpha.
 
   26 Jul 2015; Anthony G. Basile bluen...@gentoo.org tor-0.2.6.10.ebuild:
   Add conditional dependency on sys-apps/systemd.  Bug #554522.



1.1  net-misc/tor/tor-0.2.7.2_alpha.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/tor-0.2.7.2_alpha.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/tor-0.2.7.2_alpha.ebuild?rev=1.1content-type=text/plain

Index: tor-0.2.7.2_alpha.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.7.2_alpha.ebuild,v 1.1 
2015/07/28 11:53:29 blueness Exp $

EAPI=5

inherit eutils flag-o-matic readme.gentoo systemd toolchain-funcs versionator 
user

MY_PV=$(replace_version_separator 4 -)
MY_PF=${PN}-${MY_PV}
DESCRIPTION=Anonymizing overlay network for TCP
HOMEPAGE=http://www.torproject.org/;
SRC_URI=https://www.torproject.org/dist/${MY_PF}.tar.gz
https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz;
S=${WORKDIR}/${MY_PF}

LICENSE=BSD GPL-2
SLOT=0
KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86
IUSE=-bufferevents nat-pmp scrypt seccomp selinux stats systemd tor-hardening 
transparent-proxy test upnp web

DEPEND=dev-libs/openssl:=
sys-libs/zlib
dev-libs/libevent
bufferevents? ( dev-libs/libevent[ssl] )
nat-pmp? ( net-libs/libnatpmp )
scrypt? ( app-crypt/libscrypt )
seccomp? ( sys-libs/libseccomp )
systemd? ( sys-apps/systemd )
upnp? ( net-libs/miniupnpc )
RDEPEND=${DEPEND}
selinux? ( sec-policy/selinux-tor )

pkg_setup() {
enewgroup tor
enewuser tor -1 -1 /var/lib/tor tor
}

src_prepare() {
epatch ${FILESDIR}/${PN}-0.2.3.14_alpha-torrc.sample.patch
epatch_user
}

src_configure() {
# Upstream isn't sure of all the user provided CFLAGS that
# will break tor, but does recommend against -fstrict-aliasing.
# We'll filter-flags them here as we encounter them.
filter-flags -fstrict-aliasing

econf \
--enable-system-torrc \
--enable-asciidoc \
--docdir=/usr/share/doc/${PF} \
$(use_enable stats instrument-downloads) \
$(use_enable bufferevents) \
$(use_enable nat-pmp) \
$(use_enable scrypt libscrypt) \
$(use_enable seccomp) \
$(use_enable systemd) \
$(use_enable tor-hardening gcc-hardening) \
$(use_enable tor-hardening linker-hardening) \
$(use_enable transparent-proxy transparent) \
$(use_enable upnp) \
$(use_enable web tor2web-mode) \
$(use_enable test unittests) \
$(use_enable test coverage)
}

src_install() {
readme.gentoo_create_doc

newconfd ${FILESDIR}/tor.confd tor
newinitd ${FILESDIR}/tor.initd-r7 tor
systemd_dounit ${FILESDIR}/${PN}.service
systemd_dotmpfilesd ${FILESDIR}/${PN}.conf

emake DESTDIR=${D} install

keepdir /var/lib/tor

dodoc README ChangeLog ReleaseNotes doc/HACKING

fperms 750 /var/lib/tor
fowners tor:tor /var/lib/tor

insinto /etc/tor/
newins ${FILESDIR}/torrc-r1 torrc
}

pkg_postinst() {
readme.gentoo_pkg_postinst

if [[ $(gcc-major-version) -eq 4  $(gcc-minor-version) -eq 8  

[gentoo-commits] gentoo-x86 commit in net-misc/stunnel: stunnel-5.21.ebuild ChangeLog

2015-07-28 Thread Anthony G. Basile (blueness)
blueness15/07/28 12:01:09

  Modified: ChangeLog
  Added:stunnel-5.21.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.237net-misc/stunnel/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.237view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.237content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?r1=1.236r2=1.237

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.236
retrieving revision 1.237
diff -u -r1.236 -r1.237
--- ChangeLog   9 Jul 2015 14:38:38 -   1.236
+++ ChangeLog   28 Jul 2015 12:01:09 -  1.237
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/stunnel
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.236 
2015/07/09 14:38:38 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.237 
2015/07/28 12:01:09 blueness Exp $
+
+*stunnel-5.21 (28 Jul 2015)
+
+  28 Jul 2015; Anthony G. Basile bluen...@gentoo.org +stunnel-5.21.ebuild:
+  Version bump.
 
 *stunnel-5.20 (09 Jul 2015)
 



1.1  net-misc/stunnel/stunnel-5.21.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.21.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.21.ebuild?rev=1.1content-type=text/plain

Index: stunnel-5.21.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.21.ebuild,v 1.1 
2015/07/28 12:01:09 blueness Exp $

EAPI=5

inherit ssl-cert eutils multilib systemd user

DESCRIPTION=TLS/SSL - Port Wrapper
HOMEPAGE=http://www.stunnel.org/index.html;
SRC_URI=ftp://ftp.stunnel.org/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
http://www.usenix.org.uk/mirrors/stunnel/archive/${PV%%.*}.x/${P}.tar.gz

http://ftp.nluug.nl/pub/networking/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
http://www.namesdir.com/mirrors/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
http://stunnel.cybermirror.org/archive/${PV%%.*}.x/${P}.tar.gz
http://mirrors.zerg.biz/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
ftp://mirrors.go-parts.com/stunnel/archive/${PV%%.*}.x/${P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos
IUSE=ipv6 selinux stunnel3 tcpd

DEPEND=tcpd? ( sys-apps/tcp-wrappers )
dev-libs/openssl:=
RDEPEND=${DEPEND}
stunnel3? ( dev-lang/perl )
selinux? ( sec-policy/selinux-stunnel )

pkg_setup() {
enewgroup stunnel
enewuser stunnel -1 -1 -1 stunnel
}

src_prepare() {
# Hack away generation of certificate
sed -i -e s/^install-data-local:/do-not-run-this:/ \
tools/Makefile.in || die sed failed

echo CONFIG_PROTECT=\/etc/stunnel/stunnel.conf\  ${T}/20stunnel
}

src_configure() {
econf \
--libdir=${EPREFIX}/usr/$(get_libdir) \
$(use_enable ipv6) \
$(use_enable tcpd libwrap) \
--with-ssl=${EPREFIX}/usr \
--disable-fips
}

src_install() {
emake DESTDIR=${D} install
rm -rf ${ED}/usr/share/doc/${PN}
rm -f ${ED}/etc/stunnel/stunnel.conf-sample \
${ED}/usr/share/man/man8/stunnel.{fr,pl}.8
use stunnel3 || rm -f ${ED}/usr/bin/stunnel3

# The binary was moved to /usr/bin with 4.21,
# symlink for backwards compatibility
dosym ../bin/stunnel /usr/sbin/stunnel

dodoc AUTHORS BUGS CREDITS PORTS README TODO ChangeLog
dohtml doc/stunnel.html doc/en/VNC_StunnelHOWTO.html tools/ca.html \
tools/importCA.html

insinto /etc/stunnel
doins ${FILESDIR}/stunnel.conf
doinitd ${FILESDIR}/stunnel

doenvd ${T}/20stunnel

systemd_dounit ${S}/tools/stunnel.service
systemd_newtmpfilesd ${FILESDIR}/stunnel.tmpfiles.conf stunnel.conf
}

pkg_postinst() {
if [ ! -f ${EROOT}/etc/stunnel/stunnel.key ]; then
install_cert /etc/stunnel/stunnel
chown stunnel:stunnel 
${EROOT}/etc/stunnel/stunnel.{crt,csr,key,pem}
chmod 0640 ${EROOT}/etc/stunnel/stunnel.{crt,csr,key,pem}
fi

einfo If you want to run multiple instances of stunnel, create a new 
config
einfo file ending with .conf in /etc/stunnel/. **Make sure** you 
change 

[gentoo-commits] gentoo-x86 commit in net-misc/tor: ChangeLog tor-0.2.6.9.ebuild tor-0.2.7.1_alpha.ebuild

2015-07-28 Thread Anthony G. Basile (blueness)
blueness15/07/28 11:56:16

  Modified: ChangeLog
  Removed:  tor-0.2.6.9.ebuild tor-0.2.7.1_alpha.ebuild
  Log:
  Remove older unstable versions.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.489net-misc/tor/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?rev=1.489view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?rev=1.489content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?r1=1.488r2=1.489

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v
retrieving revision 1.488
retrieving revision 1.489
diff -u -r1.488 -r1.489
--- ChangeLog   28 Jul 2015 11:53:29 -  1.488
+++ ChangeLog   28 Jul 2015 11:56:16 -  1.489
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/tor
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.488 2015/07/28 
11:53:29 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.489 2015/07/28 
11:56:16 blueness Exp $
+
+  28 Jul 2015; Anthony G. Basile bluen...@gentoo.org -tor-0.2.6.9.ebuild,
+  -tor-0.2.7.1_alpha.ebuild:
+  Remove older unstable versions.
 
 *tor-0.2.7.2_alpha (28 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-libs/cloog: cloog-0.18.4.ebuild cloog-9999.ebuild ChangeLog

2015-07-28 Thread Anthony G. Basile (blueness)
blueness15/07/28 12:53:43

  Modified: cloog-.ebuild ChangeLog
  Added:cloog-0.18.4.ebuild
  Log:
  Version bump: gmp-6.0.0 and above required.  isl-0.15 is bundled, we match 
version with the system isl.  Patch to avoid use of undocumented isl print 
functions committed uptream f38b4fa.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.6  dev-libs/cloog/cloog-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog/cloog-.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog/cloog-.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog/cloog-.ebuild?r1=1.5r2=1.6

Index: cloog-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/cloog/cloog-.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cloog-.ebuild   17 Mar 2015 05:29:23 -  1.5
+++ cloog-.ebuild   28 Jul 2015 12:53:43 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/cloog/cloog-.ebuild,v 1.5 
2015/03/17 05:29:23 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/cloog/cloog-.ebuild,v 1.6 
2015/07/28 12:53:43 blueness Exp $
 
 EAPI=5
 
@@ -21,8 +21,8 @@
 SLOT=0/4
 IUSE=static-libs
 
-RDEPEND==dev-libs/gmp-5.1.3-r1[${MULTILIB_USEDEP}]
-   =dev-libs/isl-0.14:0/14[${MULTILIB_USEDEP}]
+RDEPEND==dev-libs/gmp-6.0.0[${MULTILIB_USEDEP}]
+   =dev-libs/isl-0.15:0=[${MULTILIB_USEDEP}]
!dev-libs/cloog-ppl
 DEPEND=${DEPEND}
virtual/pkgconfig
@@ -38,6 +38,9 @@
# sed to avoid eautoreconf
sed -i -e '/Libs:/s:@LDFLAGS@ ::' configure || die
fi
+
+   # Make sure we always use the system isl.
+   rm -rf isl
 }
 
 multilib_src_configure() {
@@ -48,6 +51,12 @@
$(use_enable static-libs static)
 }
 
+# The default src_test() fails, so we'll just run these directly
+multilib_src_test () {
+   echo  Test phase [check]: ${CATEGORY}/${PF}
+   emake -j1 check
+}
+
 multilib_src_install_all() {
einstalldocs
prune_libtool_files



1.34 dev-libs/cloog/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog/ChangeLog?rev=1.34view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog/ChangeLog?rev=1.34content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog/ChangeLog?r1=1.33r2=1.34

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/cloog/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog   15 Jul 2015 08:39:03 -  1.33
+++ ChangeLog   28 Jul 2015 12:53:43 -  1.34
@@ -1,6 +1,14 @@
 # ChangeLog for dev-libs/cloog
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/cloog/ChangeLog,v 1.33 2015/07/15 
08:39:03 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/cloog/ChangeLog,v 1.34 2015/07/28 
12:53:43 blueness Exp $
+
+*cloog-0.18.4 (28 Jul 2015)
+
+  28 Jul 2015; Anthony G. Basile bluen...@gentoo.org +cloog-0.18.4.ebuild,
+  cloog-.ebuild:
+  Version bump: gmp-6.0.0 and above required.  isl-0.15 is bundled, we match
+  version with the system isl.  Patch to avoid use of undocumented isl print
+  functions committed uptream f38b4fa.
 
   15 Jul 2015; Mike Frysinger vap...@gentoo.org
   files/cloog-0.18.3-isl-0.15.patch:



1.1  dev-libs/cloog/cloog-0.18.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog/cloog-0.18.4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog/cloog-0.18.4.ebuild?rev=1.1content-type=text/plain

Index: cloog-0.18.4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/cloog/cloog-0.18.4.ebuild,v 1.1 
2015/07/28 12:53:43 blueness Exp $

EAPI=5

inherit eutils multilib-minimal

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://repo.or.cz/cloog.git
inherit autotools git-2
else
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd
SRC_URI=http://www.bastoul.net/cloog/pages/download/${P}.tar.gz;
fi

DESCRIPTION=A loop generator for scanning polyhedra
HOMEPAGE=http://www.bastoul.net/cloog/;

LICENSE=LGPL-2.1
SLOT=0/4
IUSE=static-libs


[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: hardened-sources-4.1.3-r1.ebuild ChangeLog

2015-07-27 Thread Anthony G. Basile (blueness)
blueness15/07/27 18:11:19

  Modified: ChangeLog
  Added:hardened-sources-4.1.3-r1.ebuild
  Log:
  vanilla-4.1.3 + genpatches-4.1-7 + grsecurity-3.1-4.1.3-201507261932
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1325   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1325view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1325content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1324r2=1.1325

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1324
retrieving revision 1.1325
diff -u -r1.1324 -r1.1325
--- ChangeLog   27 Jul 2015 18:07:57 -  1.1324
+++ ChangeLog   27 Jul 2015 18:11:19 -  1.1325
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1324 2015/07/27 18:07:57 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1325 2015/07/27 18:11:19 blueness Exp $
+
+*hardened-sources-4.1.3-r1 (27 Jul 2015)
+
+  27 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  +hardened-sources-4.1.3-r1.ebuild:
+  vanilla-4.1.3 + genpatches-4.1-7 + grsecurity-3.1-4.1.3-201507261932
 
 *hardened-sources-3.14.48-r2 (27 Jul 2015)
 



1.1  
sys-kernel/hardened-sources/hardened-sources-4.1.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.3-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.3-r1.ebuild?rev=1.1content-type=text/plain

Index: hardened-sources-4.1.3-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.3-r1.ebuild,v
 1.1 2015/07/27 18:11:19 blueness Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base
K_GENPATCHES_VER=7
K_DEBLOB_AVAILABLE=1

inherit kernel-2
detect_version

HGPV=${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-2
HGPV_URI=http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
SRC_URI=${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}

UNIPATCH_LIST=${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2
UNIPATCH_EXCLUDE=
1500_XATTR_USER_PREFIX.patch
2900_dev-root-proc-mount-fix.patch

DESCRIPTION=Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})
HOMEPAGE=http://www.gentoo.org/proj/en/hardened/;
IUSE=deblob

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86

RDEPEND==sys-devel/gcc-4.5

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT=sys-apps/gradm-3.1*

ewarn
ewarn Users of grsecurity's RBAC system must ensure they are using
ewarn ${GRADM_COMPAT}, which is compatible with ${PF}.
ewarn It is strongly recommended that the following command is issued
ewarn prior to booting a ${PF} kernel for the first time:
ewarn
ewarn emerge -na =${GRADM_COMPAT}
ewarn
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: ChangeLog hardened-sources-4.1.3.ebuild hardened-sources-3.14.48-r1.ebuild

2015-07-27 Thread Anthony G. Basile (blueness)
blueness15/07/27 18:13:28

  Modified: ChangeLog
  Removed:  hardened-sources-4.1.3.ebuild
hardened-sources-3.14.48-r1.ebuild
  Log:
  Remove buggy unstable versions.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1326   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1326view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1326content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1325r2=1.1326

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1325
retrieving revision 1.1326
diff -u -r1.1325 -r1.1326
--- ChangeLog   27 Jul 2015 18:11:19 -  1.1325
+++ ChangeLog   27 Jul 2015 18:13:28 -  1.1326
@@ -1,6 +1,10 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1325 2015/07/27 18:11:19 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1326 2015/07/27 18:13:28 blueness Exp $
+
+  27 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  -hardened-sources-3.14.48-r1.ebuild, -hardened-sources-4.1.3.ebuild:
+  Remove buggy unstable versions.
 
 *hardened-sources-4.1.3-r1 (27 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: hardened-sources-3.14.48-r2.ebuild ChangeLog

2015-07-27 Thread Anthony G. Basile (blueness)
blueness15/07/27 18:07:57

  Modified: ChangeLog
  Added:hardened-sources-3.14.48-r2.ebuild
  Log:
  vanilla-3.14.48 + genpatches-3.14-53 + grsecurity-3.1-3.14.48-201507261203
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1324   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1324view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1324content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1323r2=1.1324

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1323
retrieving revision 1.1324
diff -u -r1.1323 -r1.1324
--- ChangeLog   27 Jul 2015 01:37:56 -  1.1323
+++ ChangeLog   27 Jul 2015 18:07:57 -  1.1324
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1323 2015/07/27 01:37:56 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1324 2015/07/27 18:07:57 blueness Exp $
+
+*hardened-sources-3.14.48-r2 (27 Jul 2015)
+
+  27 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  +hardened-sources-3.14.48-r2.ebuild:
+  vanilla-3.14.48 + genpatches-3.14-53 + grsecurity-3.1-3.14.48-201507261203
 
 *hardened-sources-4.1.3 (27 Jul 2015)
 



1.1  
sys-kernel/hardened-sources/hardened-sources-3.14.48-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.48-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.48-r2.ebuild?rev=1.1content-type=text/plain

Index: hardened-sources-3.14.48-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.48-r2.ebuild,v
 1.1 2015/07/27 18:07:57 blueness Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base
K_GENPATCHES_VER=53
K_DEBLOB_AVAILABLE=1

inherit kernel-2
detect_version

HGPV=${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-3
HGPV_URI=http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
SRC_URI=${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}

UNIPATCH_LIST=${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2
UNIPATCH_EXCLUDE=
1500_XATTR_USER_PREFIX.patch
2900_dev-root-proc-mount-fix.patch

DESCRIPTION=Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})
HOMEPAGE=http://www.gentoo.org/proj/en/hardened/;
IUSE=deblob

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86

RDEPEND==sys-devel/gcc-4.5

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT=sys-apps/gradm-3.1*

ewarn
ewarn Users of grsecurity's RBAC system must ensure they are using
ewarn ${GRADM_COMPAT}, which is compatible with ${PF}.
ewarn It is strongly recommended that the following command is issued
ewarn prior to booting a ${PF} kernel for the first time:
ewarn
ewarn emerge -na =${GRADM_COMPAT}
ewarn
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: hardened-sources-3.14.48-r1.ebuild ChangeLog

2015-07-26 Thread Anthony G. Basile (blueness)
blueness15/07/27 01:33:48

  Modified: ChangeLog
  Added:hardened-sources-3.14.48-r1.ebuild
  Log:
  vanilla-3.14.48 + genpatches-3.14-53 + grsecurity-3.1-3.14.48-201507251417
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1322   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1322view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1322content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1321r2=1.1322

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1321
retrieving revision 1.1322
diff -u -r1.1321 -r1.1322
--- ChangeLog   27 Jul 2015 01:30:54 -  1.1321
+++ ChangeLog   27 Jul 2015 01:33:48 -  1.1322
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1321 2015/07/27 01:30:54 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1322 2015/07/27 01:33:48 blueness Exp $
+
+*hardened-sources-3.14.48-r1 (27 Jul 2015)
+
+  27 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  +hardened-sources-3.14.48-r1.ebuild:
+  vanilla-3.14.48 + genpatches-3.14-53 + grsecurity-3.1-3.14.48-201507251417
 
 *hardened-sources-3.2.69-r12 (27 Jul 2015)
 



1.1  
sys-kernel/hardened-sources/hardened-sources-3.14.48-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.48-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.48-r1.ebuild?rev=1.1content-type=text/plain

Index: hardened-sources-3.14.48-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.48-r1.ebuild,v
 1.1 2015/07/27 01:33:48 blueness Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base
K_GENPATCHES_VER=53
K_DEBLOB_AVAILABLE=1

inherit kernel-2
detect_version

HGPV=${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-2
HGPV_URI=http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
SRC_URI=${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}

UNIPATCH_LIST=${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2
UNIPATCH_EXCLUDE=
1500_XATTR_USER_PREFIX.patch
2900_dev-root-proc-mount-fix.patch

DESCRIPTION=Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})
HOMEPAGE=http://www.gentoo.org/proj/en/hardened/;
IUSE=deblob

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86

RDEPEND==sys-devel/gcc-4.5

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT=sys-apps/gradm-3.1*

ewarn
ewarn Users of grsecurity's RBAC system must ensure they are using
ewarn ${GRADM_COMPAT}, which is compatible with ${PF}.
ewarn It is strongly recommended that the following command is issued
ewarn prior to booting a ${PF} kernel for the first time:
ewarn
ewarn emerge -na =${GRADM_COMPAT}
ewarn
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: hardened-sources-4.1.3.ebuild ChangeLog

2015-07-26 Thread Anthony G. Basile (blueness)
blueness15/07/27 01:37:56

  Modified: ChangeLog
  Added:hardened-sources-4.1.3.ebuild
  Log:
  vanilla-4.1.3 + genpatches-4.1-7 + grsecurity-3.1-4.1.3-201507251419
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1323   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1323view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1323content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1322r2=1.1323

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1322
retrieving revision 1.1323
diff -u -r1.1322 -r1.1323
--- ChangeLog   27 Jul 2015 01:33:48 -  1.1322
+++ ChangeLog   27 Jul 2015 01:37:56 -  1.1323
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1322 2015/07/27 01:33:48 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1323 2015/07/27 01:37:56 blueness Exp $
+
+*hardened-sources-4.1.3 (27 Jul 2015)
+
+  27 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  +hardened-sources-4.1.3.ebuild:
+  vanilla-4.1.3 + genpatches-4.1-7 + grsecurity-3.1-4.1.3-201507251419
 
 *hardened-sources-3.14.48-r1 (27 Jul 2015)
 



1.1  sys-kernel/hardened-sources/hardened-sources-4.1.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.3.ebuild?rev=1.1content-type=text/plain

Index: hardened-sources-4.1.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-4.1.3.ebuild,v
 1.1 2015/07/27 01:37:56 blueness Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base
K_GENPATCHES_VER=7
K_DEBLOB_AVAILABLE=1

inherit kernel-2
detect_version

HGPV=${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-1
HGPV_URI=http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
SRC_URI=${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}

UNIPATCH_LIST=${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2
UNIPATCH_EXCLUDE=
1500_XATTR_USER_PREFIX.patch
2900_dev-root-proc-mount-fix.patch

DESCRIPTION=Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})
HOMEPAGE=http://www.gentoo.org/proj/en/hardened/;
IUSE=deblob

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86

RDEPEND==sys-devel/gcc-4.5

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT=sys-apps/gradm-3.1*

ewarn
ewarn Users of grsecurity's RBAC system must ensure they are using
ewarn ${GRADM_COMPAT}, which is compatible with ${PF}.
ewarn It is strongly recommended that the following command is issued
ewarn prior to booting a ${PF} kernel for the first time:
ewarn
ewarn emerge -na =${GRADM_COMPAT}
ewarn
}






[gentoo-commits] gentoo-x86 commit in net-misc/tor: tor-0.2.6.10.ebuild ChangeLog

2015-07-26 Thread Anthony G. Basile (blueness)
blueness15/07/26 23:32:39

  Modified: tor-0.2.6.10.ebuild ChangeLog
  Log:
  Add conditional dependency on sys-apps/systemd.  Bug #554522.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  net-misc/tor/tor-0.2.6.10.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/tor-0.2.6.10.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/tor-0.2.6.10.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/tor-0.2.6.10.ebuild?r1=1.4r2=1.5

Index: tor-0.2.6.10.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.6.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- tor-0.2.6.10.ebuild 25 Jul 2015 12:30:28 -  1.4
+++ tor-0.2.6.10.ebuild 26 Jul 2015 23:32:39 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.6.10.ebuild,v 1.4 
2015/07/25 12:30:28 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.6.10.ebuild,v 1.5 
2015/07/26 23:32:39 blueness Exp $
 
 EAPI=5
 
@@ -26,6 +26,7 @@
nat-pmp? ( net-libs/libnatpmp )
scrypt? ( app-crypt/libscrypt )
seccomp? ( sys-libs/libseccomp )
+   systemd? ( sys-apps/systemd )
upnp? ( net-libs/miniupnpc )
 RDEPEND=${DEPEND}
selinux? ( sec-policy/selinux-tor )



1.487net-misc/tor/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?rev=1.487view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?rev=1.487content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?r1=1.486r2=1.487

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v
retrieving revision 1.486
retrieving revision 1.487
diff -u -r1.486 -r1.487
--- ChangeLog   25 Jul 2015 12:30:28 -  1.486
+++ ChangeLog   26 Jul 2015 23:32:39 -  1.487
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/tor
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.486 2015/07/25 
12:30:28 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.487 2015/07/26 
23:32:39 blueness Exp $
+
+  26 Jul 2015; Anthony G. Basile bluen...@gentoo.org tor-0.2.6.10.ebuild:
+  Add conditional dependency on sys-apps/systemd.  Bug #554522.
 
   25 Jul 2015; Mikle Kolyada zlog...@gentoo.org tor-0.2.6.10.ebuild:
   amd64 stable wrt bug #555098






[gentoo-commits] gentoo-x86 commit in sys-kernel/hardened-sources: hardened-sources-3.2.69-r12.ebuild ChangeLog

2015-07-26 Thread Anthony G. Basile (blueness)
blueness15/07/27 01:30:54

  Modified: ChangeLog
  Added:hardened-sources-3.2.69-r12.ebuild
  Log:
  vanilla-3.2.69 + genpatches-3.2-16 + grsecurity-3.1-3.2.69-201507251415
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1321   sys-kernel/hardened-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1321view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?rev=1.1321content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/ChangeLog?r1=1.1320r2=1.1321

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1320
retrieving revision 1.1321
diff -u -r1.1320 -r1.1321
--- ChangeLog   21 Jul 2015 17:34:15 -  1.1320
+++ ChangeLog   27 Jul 2015 01:30:54 -  1.1321
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1320 2015/07/21 17:34:15 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1321 2015/07/27 01:30:54 blueness Exp $
+
+*hardened-sources-3.2.69-r12 (27 Jul 2015)
+
+  27 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  +hardened-sources-3.2.69-r12.ebuild:
+  vanilla-3.2.69 + genpatches-3.2-16 + grsecurity-3.1-3.2.69-201507251415
 
   21 Jul 2015; Anthony G. Basile bluen...@gentoo.org
   -hardened-sources-3.14.47.ebuild, -hardened-sources-3.2.69-r10.ebuild,



1.1  
sys-kernel/hardened-sources/hardened-sources-3.2.69-r12.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.2.69-r12.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.2.69-r12.ebuild?rev=1.1content-type=text/plain

Index: hardened-sources-3.2.69-r12.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.2.69-r12.ebuild,v
 1.1 2015/07/27 01:30:54 blueness Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base extras
K_GENPATCHES_VER=16
K_DEBLOB_AVAILABLE=1

inherit kernel-2
detect_version

HGPV=${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-13
HGPV_URI=http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
SRC_URI=${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}

UNIPATCH_LIST=${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2
UNIPATCH_EXCLUDE=4200_fbcondecor-0.9.6.patch

DESCRIPTION=Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})
HOMEPAGE=http://www.gentoo.org/proj/en/hardened/;
IUSE=deblob

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86

RDEPEND==sys-devel/gcc-4.5

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT=sys-apps/gradm-3.1*

ewarn
ewarn Users of grsecurity's RBAC system must ensure they are using
ewarn ${GRADM_COMPAT}, which is compatible with ${PF}.
ewarn It is strongly recommended that the following command is issued
ewarn prior to booting a ${PF} kernel for the first time:
ewarn
ewarn emerge -na =${GRADM_COMPAT}
ewarn
}






[gentoo-commits] gentoo-x86 commit in app-text/ghostscript-gpl: ghostscript-gpl-9.15-r1.ebuild ChangeLog

2015-07-25 Thread Anthony G. Basile (blueness)
blueness15/07/25 17:58:59

  Modified: ghostscript-gpl-9.15-r1.ebuild ChangeLog
  Log:
  Fix parallel 'make install'. Bug #543602.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.13 app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild?rev=1.13view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild?rev=1.13content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild?r1=1.12r2=1.13

Index: ghostscript-gpl-9.15-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ghostscript-gpl-9.15-r1.ebuild  15 Jul 2015 20:51:56 -  1.12
+++ ghostscript-gpl-9.15-r1.ebuild  25 Jul 2015 17:58:59 -  1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild,v
 1.12 2015/07/15 20:51:56 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild,v
 1.13 2015/07/25 17:58:59 blueness Exp $
 
 EAPI=5
 
@@ -184,7 +184,7 @@
 }
 
 src_install() {
-   emake DESTDIR=${D} install-so install
+   emake -j1 DESTDIR=${D} install-so install
 
if use djvu ; then
dobin gsdjvu
@@ -195,7 +195,7 @@
mv -f ${D}/usr/bin/gsc ${D}/usr/bin/gs || die
 
cd ${S}/ijs
-   emake DESTDIR=${D} install
+   emake -j1 DESTDIR=${D} install
 
# rename the original cidfmap to cidfmap.GS
mv ${D}/usr/share/ghostscript/${PVM}/Resource/Init/cidfmap{,.GS} || 
die



1.190app-text/ghostscript-gpl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ChangeLog?rev=1.190view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ChangeLog?rev=1.190content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ChangeLog?r1=1.189r2=1.190

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v
retrieving revision 1.189
retrieving revision 1.190
diff -u -r1.189 -r1.190
--- ChangeLog   15 Jul 2015 20:51:56 -  1.189
+++ ChangeLog   25 Jul 2015 17:58:59 -  1.190
@@ -1,6 +1,10 @@
 # ChangeLog for app-text/ghostscript-gpl
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.189 
2015/07/15 20:51:56 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.190 
2015/07/25 17:58:59 blueness Exp $
+
+  25 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  ghostscript-gpl-9.15-r1.ebuild:
+  Fix parallel 'make install'. Bug #543602.
 
   15 Jul 2015; Mikle Kolyada zlog...@gentoo.org
   ghostscript-gpl-9.15-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in media-video/vlc: vlc-2.2.1.ebuild ChangeLog

2015-07-24 Thread Anthony G. Basile (blueness)
blueness15/07/24 15:53:07

  Modified: vlc-2.2.1.ebuild ChangeLog
  Log:
  Keyword ~ppc.  Bug #548966.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.12 media-video/vlc/vlc-2.2.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vlc/vlc-2.2.1.ebuild?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vlc/vlc-2.2.1.ebuild?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vlc/vlc-2.2.1.ebuild?r1=1.11r2=1.12

Index: vlc-2.2.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.2.1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- vlc-2.2.1.ebuild4 Jul 2015 12:26:23 -   1.11
+++ vlc-2.2.1.ebuild24 Jul 2015 15:53:07 -  1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.2.1.ebuild,v 1.11 
2015/07/04 12:26:23 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.2.1.ebuild,v 1.12 
2015/07/24 15:53:07 blueness Exp $
 
 EAPI=5
 
@@ -35,7 +35,7 @@
 SLOT=0/5-8 # vlc - vlccore
 
 if [ ${PV%} = ${PV} ] ; then
-   KEYWORDS=~amd64 ~arm ~ppc64 -sparc ~x86 ~x86-fbsd
+   KEYWORDS=~amd64 ~arm ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd
 else
KEYWORDS=
 fi



1.962media-video/vlc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vlc/ChangeLog?rev=1.962view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vlc/ChangeLog?rev=1.962content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vlc/ChangeLog?r1=1.961r2=1.962

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v
retrieving revision 1.961
retrieving revision 1.962
diff -u -r1.961 -r1.962
--- ChangeLog   4 Jul 2015 12:26:23 -   1.961
+++ ChangeLog   24 Jul 2015 15:53:07 -  1.962
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/vlc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v 1.961 
2015/07/04 12:26:23 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v 1.962 
2015/07/24 15:53:07 blueness Exp $
+
+  24 Jul 2015; Anthony G. Basile bluen...@gentoo.org vlc-2.2.1.ebuild:
+  Keyword ~ppc.  Bug #548966.
 
   04 Jul 2015; Pacho Ramos pa...@gentoo.org vlc-2.2.1.ebuild,
   vlc-2.2..ebuild, vlc-.ebuild:






[gentoo-commits] gentoo-x86 commit in media-libs/x265: x265-9999.ebuild x265-1.5.ebuild x265-1.7.ebuild ChangeLog

2015-07-24 Thread Anthony G. Basile (blueness)
blueness15/07/24 15:51:17

  Modified: x265-.ebuild x265-1.5.ebuild x265-1.7.ebuild
ChangeLog
  Log:
  Keyword ~ppc.  Bug #548966.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.16 media-libs/x265/x265-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-.ebuild?rev=1.16view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-.ebuild?rev=1.16content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-.ebuild?r1=1.15r2=1.16

Index: x265-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/x265-.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- x265-.ebuild22 May 2015 12:20:07 -  1.15
+++ x265-.ebuild24 Jul 2015 15:51:17 -  1.16
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-.ebuild,v 1.15 
2015/05/22 12:20:07 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-.ebuild,v 1.16 
2015/07/24 15:51:17 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
SRC_URI=

https://bitbucket.org/multicoreware/x265/downloads/${PN}_${PV}.tar.gz
http://ftp.videolan.org/pub/videolan/x265/${PN}_${PV}.tar.gz;
-   KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86
+   KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86
 fi
 
 DESCRIPTION=Library for encoding video streams into the H.265/HEVC format



1.9  media-libs/x265/x265-1.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.5.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.5.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.5.ebuild?r1=1.8r2=1.9

Index: x265-1.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.5.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- x265-1.5.ebuild 29 May 2015 10:36:35 -  1.8
+++ x265-1.5.ebuild 24 Jul 2015 15:51:17 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.5.ebuild,v 1.8 
2015/05/29 10:36:35 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.5.ebuild,v 1.9 
2015/07/24 15:51:17 blueness Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
EHG_REPO_URI=http://bitbucket.org/multicoreware/x265;
 else
SRC_URI=https://bitbucket.org/multicoreware/x265/get/${PV}.tar.bz2 - 
${P}.tar.bz2
-   KEYWORDS=amd64 arm hppa ~ppc64 x86
+   KEYWORDS=amd64 arm hppa ~ppc ~ppc64 x86
 fi
 
 DESCRIPTION=Library for encoding video streams into the H.265/HEVC format



1.3  media-libs/x265/x265-1.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.7.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.7.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.7.ebuild?r1=1.2r2=1.3

Index: x265-1.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- x265-1.7.ebuild 22 May 2015 12:20:07 -  1.2
+++ x265-1.7.ebuild 24 Jul 2015 15:51:17 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.7.ebuild,v 1.2 
2015/05/22 12:20:07 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.7.ebuild,v 1.3 
2015/07/24 15:51:17 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
SRC_URI=

https://bitbucket.org/multicoreware/x265/downloads/${PN}_${PV}.tar.gz
http://ftp.videolan.org/pub/videolan/x265/${PN}_${PV}.tar.gz;
-   KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86
+   KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86
 fi
 
 DESCRIPTION=Library for encoding video streams into the H.265/HEVC format



1.27 media-libs/x265/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/ChangeLog?rev=1.27view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/ChangeLog?rev=1.27content-type=text/plain
diff : 

[gentoo-commits] gentoo-x86 commit in sys-apps/man-pages: man-pages-4.00.ebuild ChangeLog

2015-07-23 Thread Anthony G. Basile (blueness)
blueness15/07/23 22:33:03

  Modified: man-pages-4.00.ebuild ChangeLog
  Log:
  Stabilize for all.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.3  sys-apps/man-pages/man-pages-4.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/man-pages-4.00.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/man-pages-4.00.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/man-pages-4.00.ebuild?r1=1.2r2=1.3

Index: man-pages-4.00.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/man-pages/man-pages-4.00.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- man-pages-4.00.ebuild   10 May 2015 16:32:21 -  1.2
+++ man-pages-4.00.ebuild   23 Jul 2015 22:33:03 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/man-pages-4.00.ebuild,v 
1.2 2015/05/10 16:32:21 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/man-pages-4.00.ebuild,v 
1.3 2015/07/23 22:33:03 blueness Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE=man-pages GPL-2+ BSD
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux
+KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux
 IUSE_LINGUAS= da de fr it ja nl pl ro ru zh_CN
 IUSE=nls ${IUSE_LINGUAS// / linguas_}
 RESTRICT=binchecks



1.249sys-apps/man-pages/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/ChangeLog?rev=1.249view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/ChangeLog?rev=1.249content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/ChangeLog?r1=1.248r2=1.249

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v
retrieving revision 1.248
retrieving revision 1.249
diff -u -r1.248 -r1.249
--- ChangeLog   23 Jul 2015 22:31:08 -  1.248
+++ ChangeLog   23 Jul 2015 22:33:03 -  1.249
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/man-pages
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.248 
2015/07/23 22:31:08 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.249 
2015/07/23 22:33:03 blueness Exp $
+
+  23 Jul 2015; Anthony G. Basile bluen...@gentoo.org man-pages-4.00.ebuild:
+  Stabilize for all.
 
 *man-pages-4.01 (23 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in sys-apps/attr: attr-2.4.47-r2.ebuild ChangeLog

2015-07-23 Thread Anthony G. Basile (blueness)
blueness15/07/24 03:54:20

  Modified: attr-2.4.47-r2.ebuild ChangeLog
  Log:
  Stable on amd64/ppc/ppc64/x86
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.3  sys-apps/attr/attr-2.4.47-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/attr/attr-2.4.47-r2.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/attr/attr-2.4.47-r2.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/attr/attr-2.4.47-r2.ebuild?r1=1.2r2=1.3

Index: attr-2.4.47-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.47-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- attr-2.4.47-r2.ebuild   24 Jul 2015 03:30:21 -  1.2
+++ attr-2.4.47-r2.ebuild   24 Jul 2015 03:54:20 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.47-r2.ebuild,v 1.2 
2015/07/24 03:30:21 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.47-r2.ebuild,v 1.3 
2015/07/24 03:54:20 blueness Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE=LGPL-2.1
 SLOT=0
-KEYWORDS=~alpha ~amd64 arm arm64 hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh 
~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux
+KEYWORDS=~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh ~sparc 
x86 ~amd64-linux ~arm-linux ~x86-linux
 IUSE=nls static-libs
 
 DEPEND=nls? ( sys-devel/gettext )



1.176sys-apps/attr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/attr/ChangeLog?rev=1.176view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/attr/ChangeLog?rev=1.176content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/attr/ChangeLog?r1=1.175r2=1.176

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -r1.175 -r1.176
--- ChangeLog   24 Jul 2015 03:30:21 -  1.175
+++ ChangeLog   24 Jul 2015 03:54:20 -  1.176
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/attr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v 1.175 2015/07/24 
03:30:21 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v 1.176 2015/07/24 
03:54:20 blueness Exp $
+
+  24 Jul 2015; Anthony G. Basile bluen...@gentoo.org attr-2.4.47-r2.ebuild:
+  Stable on amd64/ppc/ppc64/x86
 
   24 Jul 2015; Mike Frysinger vap...@gentoo.org attr-2.4.47-r2.ebuild:
   Mark arm/arm64/hppa/ia64/m68k/s390/sh stable #555746.






[gentoo-commits] gentoo-x86 commit in sys-apps/man-pages: man-pages-4.01.ebuild ChangeLog

2015-07-23 Thread Anthony G. Basile (blueness)
blueness15/07/23 22:31:08

  Modified: ChangeLog
  Added:man-pages-4.01.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.248sys-apps/man-pages/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/ChangeLog?rev=1.248view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/ChangeLog?rev=1.248content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/ChangeLog?r1=1.247r2=1.248

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v
retrieving revision 1.247
retrieving revision 1.248
diff -u -r1.247 -r1.248
--- ChangeLog   10 May 2015 16:32:21 -  1.247
+++ ChangeLog   23 Jul 2015 22:31:08 -  1.248
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/man-pages
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.247 
2015/05/10 16:32:21 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.248 
2015/07/23 22:31:08 blueness Exp $
+
+*man-pages-4.01 (23 Jul 2015)
+
+  23 Jul 2015; Anthony G. Basile bluen...@gentoo.org +man-pages-4.01.ebuild:
+  Version bump.
 
   10 May 2015; Mike Frysinger vap...@gentoo.org man-pages-4.00.ebuild:
   Block older attr that installed attr(5) man page #548900 by Albert W. 
Hopkins.



1.1  sys-apps/man-pages/man-pages-4.01.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/man-pages-4.01.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/man-pages-4.01.ebuild?rev=1.1content-type=text/plain

Index: man-pages-4.01.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/man-pages-4.01.ebuild,v 
1.1 2015/07/23 22:31:08 blueness Exp $

EAPI=4

GENTOO_PATCH=2

DESCRIPTION=A somewhat comprehensive collection of Linux man pages
HOMEPAGE=http://www.kernel.org/doc/man-pages/;
SRC_URI=mirror://kernel/linux/docs/man-pages/Archive/${P}.tar.xz
mirror://kernel/linux/docs/man-pages/${P}.tar.xz
http://man7.org/linux/man-pages/download/${P}.tar.xz
mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2

http://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2;

LICENSE=man-pages GPL-2+ BSD
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux
IUSE_LINGUAS= da de fr it ja nl pl ro ru zh_CN
IUSE=nls ${IUSE_LINGUAS// / linguas_}
RESTRICT=binchecks

# Block packages that used to install colliding man pages #341953 #548900
RDEPEND=virtual/man
!sys-apps/attr-2.4.47-r2
!dev-libs/libaio-0.3.109-r2
PDEPEND=nls? (
linguas_da? ( app-i18n/man-pages-da )
linguas_de? ( app-i18n/man-pages-de )
linguas_fr? ( app-i18n/man-pages-fr )
linguas_it? ( app-i18n/man-pages-it )
linguas_ja? ( app-i18n/man-pages-ja )
linguas_nl? ( app-i18n/man-pages-nl )
linguas_pl? ( app-i18n/man-pages-pl )
linguas_ro? ( app-i18n/man-pages-ro )
linguas_ru? ( app-i18n/man-pages-ru )
linguas_zh_CN? ( app-i18n/man-pages-zh_CN )
)
sys-apps/man-pages-posix

src_configure() { :; }

src_compile() { :; }

src_install() {
emake install prefix=${EPREFIX}/usr DESTDIR=${D}
dodoc man-pages-*.Announce README Changes*

# Override with Gentoo specific or additional Gentoo pages
cd ${WORKDIR}/man-pages-gentoo
doman */*
dodoc README.Gentoo
}






[gentoo-commits] gentoo-x86 commit in app-text/ps2pkm: ps2pkm-1.5_p20140525.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:18:20

  Modified: ps2pkm-1.5_p20140525.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  app-text/ps2pkm/ps2pkm-1.5_p20140525.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ps2pkm/ps2pkm-1.5_p20140525.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ps2pkm/ps2pkm-1.5_p20140525.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ps2pkm/ps2pkm-1.5_p20140525.ebuild?r1=1.4r2=1.5

Index: ps2pkm-1.5_p20140525.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-text/ps2pkm/ps2pkm-1.5_p20140525.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ps2pkm-1.5_p20140525.ebuild 15 Jul 2015 09:28:35 -  1.4
+++ ps2pkm-1.5_p20140525.ebuild 22 Jul 2015 19:18:20 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-text/ps2pkm/ps2pkm-1.5_p20140525.ebuild,v 1.4 
2015/07/15 09:28:35 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-text/ps2pkm/ps2pkm-1.5_p20140525.ebuild,v 1.5 
2015/07/22 19:18:20 blueness Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 
 DEPEND==dev-libs/kpathsea-6.2.0



1.46 app-text/ps2pkm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ps2pkm/ChangeLog?rev=1.46view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ps2pkm/ChangeLog?rev=1.46content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ps2pkm/ChangeLog?r1=1.45r2=1.46

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/ps2pkm/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog   15 Jul 2015 10:06:52 -  1.45
+++ ChangeLog   22 Jul 2015 19:18:20 -  1.46
@@ -1,6 +1,10 @@
 # ChangeLog for app-text/ps2pkm
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/ps2pkm/ChangeLog,v 1.45 2015/07/15 
10:06:52 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/ps2pkm/ChangeLog,v 1.46 2015/07/22 
19:18:20 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  ps2pkm-1.5_p20140525.ebuild:
+  Stable for ppc, bug #550840.
 
 *ps2pkm-1.7_p20150521 (15 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-tex/tex4ht: tex4ht-20090611_p1038-r3.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:25:54

  Modified: tex4ht-20090611_p1038-r3.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  dev-tex/tex4ht/tex4ht-20090611_p1038-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/tex4ht/tex4ht-20090611_p1038-r3.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/tex4ht/tex4ht-20090611_p1038-r3.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/tex4ht/tex4ht-20090611_p1038-r3.ebuild?r1=1.4r2=1.5

Index: tex4ht-20090611_p1038-r3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20090611_p1038-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- tex4ht-20090611_p1038-r3.ebuild 22 Jul 2015 12:22:17 -  1.4
+++ tex4ht-20090611_p1038-r3.ebuild 22 Jul 2015 19:25:54 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20090611_p1038-r3.ebuild,v 1.4 
2015/07/22 12:22:17 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20090611_p1038-r3.ebuild,v 1.5 
2015/07/22 19:25:54 blueness Exp $
 
 EAPI=4
 
@@ -17,7 +17,7 @@
 SRC_URI=http://www.cse.ohio-state.edu/~gurari/TeX4ht/fix/${MY_P}.tar.gz;
 
 LICENSE=LPPL-1.2
-KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux
+KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux
 SLOT=0
 
 DEPEND==sys-apps/sed-4



1.95 dev-tex/tex4ht/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/tex4ht/ChangeLog?rev=1.95view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/tex4ht/ChangeLog?rev=1.95content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/tex4ht/ChangeLog?r1=1.94r2=1.95

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog   22 Jul 2015 12:22:17 -  1.94
+++ ChangeLog   22 Jul 2015 19:25:54 -  1.95
@@ -1,6 +1,10 @@
 # ChangeLog for dev-tex/tex4ht
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/ChangeLog,v 1.94 2015/07/22 
12:22:17 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/ChangeLog,v 1.95 2015/07/22 
19:25:54 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  tex4ht-20090611_p1038-r3.ebuild:
+  Stable for ppc, bug #550840.
 
   22 Jul 2015; Alexis Ballier aball...@gentoo.org
   tex4ht-20090611_p1038-r3.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-humanities: texlive-humanities-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:39

  Modified: texlive-humanities-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-humanities/texlive-humanities-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-humanities/texlive-humanities-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-humanities/texlive-humanities-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-humanities/texlive-humanities-2014.ebuild?r1=1.3r2=1.4

Index: texlive-humanities-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-humanities/texlive-humanities-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-humanities-2014.ebuild  12 Jul 2015 17:42:30 -  1.3
+++ texlive-humanities-2014.ebuild  22 Jul 2015 19:37:39 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-humanities/texlive-humanities-2014.ebuild,v
 1.3 2015/07/12 17:42:30 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-humanities/texlive-humanities-2014.ebuild,v
 1.4 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.2 LPPL-1.3
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-latex-2014
 !dev-tex/lineno



1.70 dev-texlive/texlive-humanities/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-humanities/ChangeLog?rev=1.70view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-humanities/ChangeLog?rev=1.70content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-humanities/ChangeLog?r1=1.69r2=1.70

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-humanities/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog   16 Jul 2015 09:16:15 -  1.69
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.70
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-humanities
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-humanities/ChangeLog,v 
1.69 2015/07/16 09:16:15 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-humanities/ChangeLog,v 
1.70 2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-humanities-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-humanities-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-fontsextra: texlive-fontsextra-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-fontsextra-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-fontsextra/texlive-fontsextra-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontsextra/texlive-fontsextra-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontsextra/texlive-fontsextra-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontsextra/texlive-fontsextra-2014.ebuild?r1=1.3r2=1.4

Index: texlive-fontsextra-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-fontsextra/texlive-fontsextra-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-fontsextra-2014.ebuild  12 Jul 2015 17:31:55 -  1.3
+++ texlive-fontsextra-2014.ebuild  22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-fontsextra/texlive-fontsextra-2014.ebuild,v
 1.3 2015/07/12 17:31:55 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-fontsextra/texlive-fontsextra-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= Apache-2.0 BSD GPL-1 GPL-2 GPL-3 LPPL-1.2 LPPL-1.3 OFL public-domain 
TeX TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !=dev-texlive/texlive-langpolish-2007*



1.80 dev-texlive/texlive-fontsextra/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontsextra/ChangeLog?rev=1.80view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontsextra/ChangeLog?rev=1.80content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontsextra/ChangeLog?r1=1.79r2=1.80

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-fontsextra/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog   16 Jul 2015 09:13:56 -  1.79
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.80
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-fontsextra
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-fontsextra/ChangeLog,v 
1.79 2015/07/16 09:13:56 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-fontsextra/ChangeLog,v 
1.80 2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-fontsextra-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-fontsextra-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-publishers: texlive-publishers-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-publishers-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-publishers/texlive-publishers-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-publishers/texlive-publishers-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-publishers/texlive-publishers-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-publishers/texlive-publishers-2014.ebuild?r1=1.3r2=1.4

Index: texlive-publishers-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-publishers/texlive-publishers-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-publishers-2014.ebuild  12 Jul 2015 18:12:41 -  1.3
+++ texlive-publishers-2014.ebuild  22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-publishers/texlive-publishers-2014.ebuild,v
 1.3 2015/07/12 18:12:41 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-publishers/texlive-publishers-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= Apache-2.0 BSD GPL-1 GPL-2 GPL-3 LPPL-1.2 LPPL-1.3 public-domain 
TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-latex-2014
 !dev-texlive/texlive-latexextra-2014



1.72 dev-texlive/texlive-publishers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-publishers/ChangeLog?rev=1.72view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-publishers/ChangeLog?rev=1.72content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-publishers/ChangeLog?r1=1.71r2=1.72

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-publishers/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog   16 Jul 2015 09:27:53 -  1.71
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.72
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-publishers
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-publishers/ChangeLog,v 
1.71 2015/07/16 09:27:53 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-publishers/ChangeLog,v 
1.72 2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-publishers-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-publishers-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-genericextra: texlive-genericextra-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:39

  Modified: texlive-genericextra-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-genericextra/texlive-genericextra-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-genericextra/texlive-genericextra-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-genericextra/texlive-genericextra-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-genericextra/texlive-genericextra-2014.ebuild?r1=1.3r2=1.4

Index: texlive-genericextra-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-genericextra/texlive-genericextra-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-genericextra-2014.ebuild12 Jul 2015 17:40:52 -  1.3
+++ texlive-genericextra-2014.ebuild22 Jul 2015 19:37:39 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-genericextra/texlive-genericextra-2014.ebuild,v
 1.3 2015/07/12 17:40:52 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-genericextra/texlive-genericextra-2014.ebuild,v
 1.4 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.3 public-domain TeX TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 



1.72 dev-texlive/texlive-genericextra/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-genericextra/ChangeLog?rev=1.72view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-genericextra/ChangeLog?rev=1.72content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-genericextra/ChangeLog?r1=1.71r2=1.72

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-genericextra/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog   16 Jul 2015 09:15:37 -  1.71
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.72
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-genericextra
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-genericextra/ChangeLog,v 1.71 
2015/07/16 09:15:37 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-genericextra/ChangeLog,v 1.72 
2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-genericextra-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-genericextra-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langgreek: texlive-langgreek-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-langgreek-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-langgreek/texlive-langgreek-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langgreek/texlive-langgreek-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langgreek/texlive-langgreek-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langgreek/texlive-langgreek-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langgreek-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langgreek/texlive-langgreek-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langgreek-2014.ebuild   12 Jul 2015 17:52:07 -  1.3
+++ texlive-langgreek-2014.ebuild   22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langgreek/texlive-langgreek-2014.ebuild,v
 1.3 2015/07/12 17:52:07 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langgreek/texlive-langgreek-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 



1.70 dev-texlive/texlive-langgreek/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langgreek/ChangeLog?rev=1.70view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langgreek/ChangeLog?rev=1.70content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langgreek/ChangeLog?r1=1.69r2=1.70

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langgreek/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog   16 Jul 2015 09:19:42 -  1.69
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.70
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langgreek
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langgreek/ChangeLog,v 
1.69 2015/07/16 09:19:42 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langgreek/ChangeLog,v 
1.70 2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langgreek-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langgreek-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-latex: texlive-latex-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-latex-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-latex/texlive-latex-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latex/texlive-latex-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latex/texlive-latex-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latex/texlive-latex-2014.ebuild?r1=1.3r2=1.4

Index: texlive-latex-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-latex/texlive-latex-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-latex-2014.ebuild   12 Jul 2015 17:28:41 -  1.3
+++ texlive-latex-2014.ebuild   22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-latex/texlive-latex-2014.ebuild,v 
1.3 2015/07/12 17:28:41 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-latex/texlive-latex-2014.ebuild,v 
1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-2 LPPL-1.3 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-context-2010



1.84 dev-texlive/texlive-latex/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latex/ChangeLog?rev=1.84view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latex/ChangeLog?rev=1.84content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latex/ChangeLog?r1=1.83r2=1.84

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-latex/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog   16 Jul 2015 09:22:25 -  1.83
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.84
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-latex
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-latex/ChangeLog,v 1.83 
2015/07/16 09:22:25 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-latex/ChangeLog,v 1.84 
2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-latex-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-latex-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-omega: texlive-omega-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:39

  Modified: texlive-omega-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-omega/texlive-omega-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-omega/texlive-omega-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-omega/texlive-omega-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-omega/texlive-omega-2014.ebuild?r1=1.3r2=1.4

Index: texlive-omega-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-omega/texlive-omega-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-omega-2014.ebuild   12 Jul 2015 18:10:32 -  1.3
+++ texlive-omega-2014.ebuild   22 Jul 2015 19:37:39 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-omega/texlive-omega-2014.ebuild,v 
1.3 2015/07/12 18:10:32 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-omega/texlive-omega-2014.ebuild,v 
1.4 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.3 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 =dev-texlive/texlive-latex-2014



1.71 dev-texlive/texlive-omega/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-omega/ChangeLog?rev=1.71view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-omega/ChangeLog?rev=1.71content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-omega/ChangeLog?r1=1.70r2=1.71

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-omega/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog   16 Jul 2015 09:26:17 -  1.70
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.71
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-omega
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-omega/ChangeLog,v 1.70 
2015/07/16 09:26:17 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-omega/ChangeLog,v 1.71 
2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-omega-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-omega-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langpolish: texlive-langpolish-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-langpolish-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langpolish/texlive-langpolish-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langpolish/texlive-langpolish-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langpolish/texlive-langpolish-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langpolish/texlive-langpolish-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langpolish-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langpolish/texlive-langpolish-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langpolish-2014.ebuild  12 Jul 2015 17:58:45 -  1.3
+++ texlive-langpolish-2014.ebuild  22 Jul 2015 19:37:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langpolish/texlive-langpolish-2014.ebuild,v
 1.3 2015/07/12 17:58:45 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langpolish/texlive-langpolish-2014.ebuild,v
 1.4 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-2 LPPL-1.2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-latex-2014
 =dev-texlive/texlive-basic-2014



1.69 dev-texlive/texlive-langpolish/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langpolish/ChangeLog?rev=1.69view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langpolish/ChangeLog?rev=1.69content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langpolish/ChangeLog?r1=1.68r2=1.69

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langpolish/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   16 Jul 2015 09:21:31 -  1.68
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.69
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langpolish
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langpolish/ChangeLog,v 
1.68 2015/07/16 09:21:31 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langpolish/ChangeLog,v 
1.69 2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langpolish-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langpolish-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-mathextra: texlive-mathextra-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:39

  Modified: texlive-mathextra-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-mathextra/texlive-mathextra-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-mathextra/texlive-mathextra-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-mathextra/texlive-mathextra-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-mathextra/texlive-mathextra-2014.ebuild?r1=1.3r2=1.4

Index: texlive-mathextra-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-mathextra/texlive-mathextra-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-mathextra-2014.ebuild   12 Jul 2015 18:08:24 -  1.3
+++ texlive-mathextra-2014.ebuild   22 Jul 2015 19:37:39 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-mathextra/texlive-mathextra-2014.ebuild,v
 1.3 2015/07/12 18:08:24 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-mathextra/texlive-mathextra-2014.ebuild,v
 1.4 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= BSD GPL-1 GPL-2 GPL-3 LGPL-2 LPPL-1.2 LPPL-1.3 public-domain TeX 
TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-fontsrecommended-2014
 =dev-texlive/texlive-latex-2014



1.73 dev-texlive/texlive-mathextra/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-mathextra/ChangeLog?rev=1.73view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-mathextra/ChangeLog?rev=1.73content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-mathextra/ChangeLog?r1=1.72r2=1.73

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-mathextra/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   16 Jul 2015 09:25:18 -  1.72
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.73
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-mathextra
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-mathextra/ChangeLog,v 
1.72 2015/07/16 09:25:18 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-mathextra/ChangeLog,v 
1.73 2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-mathextra-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-mathextra-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langgerman: texlive-langgerman-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-langgerman-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langgerman/texlive-langgerman-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langgerman/texlive-langgerman-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langgerman/texlive-langgerman-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langgerman/texlive-langgerman-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langgerman-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langgerman/texlive-langgerman-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langgerman-2014.ebuild  12 Jul 2015 17:53:37 -  1.3
+++ texlive-langgerman-2014.ebuild  22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langgerman/texlive-langgerman-2014.ebuild,v
 1.3 2015/07/12 17:53:37 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langgerman/texlive-langgerman-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= FDL-1.1 GPL-1 GPL-2 LPPL-1.3 OPL TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-latexextra-2009



1.72 dev-texlive/texlive-langgerman/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langgerman/ChangeLog?rev=1.72view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langgerman/ChangeLog?rev=1.72content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langgerman/ChangeLog?r1=1.71r2=1.72

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langgerman/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog   16 Jul 2015 09:19:22 -  1.71
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.72
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langgerman
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langgerman/ChangeLog,v 
1.71 2015/07/16 09:19:22 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langgerman/ChangeLog,v 
1.72 2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langgerman-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langgerman-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langenglish: texlive-langenglish-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-langenglish-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langenglish/texlive-langenglish-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langenglish/texlive-langenglish-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langenglish/texlive-langenglish-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langenglish/texlive-langenglish-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langenglish-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langenglish/texlive-langenglish-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langenglish-2014.ebuild 12 Jul 2015 17:49:45 -  1.3
+++ texlive-langenglish-2014.ebuild 22 Jul 2015 19:37:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langenglish/texlive-langenglish-2014.ebuild,v
 1.3 2015/07/12 17:49:45 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langenglish/texlive-langenglish-2014.ebuild,v
 1.4 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= FDL-1.1 GPL-1 GPL-2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-documentation-english



1.44 dev-texlive/texlive-langenglish/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langenglish/ChangeLog?rev=1.44view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langenglish/ChangeLog?rev=1.44content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langenglish/ChangeLog?r1=1.43r2=1.44

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langenglish/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog   16 Jul 2015 09:18:24 -  1.43
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.44
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langenglish
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langenglish/ChangeLog,v 
1.43 2015/07/16 09:18:24 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langenglish/ChangeLog,v 
1.44 2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langenglish-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langenglish-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langindic: texlive-langindic-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:39

  Modified: texlive-langindic-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-langindic/texlive-langindic-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langindic/texlive-langindic-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langindic/texlive-langindic-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langindic/texlive-langindic-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langindic-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langindic/texlive-langindic-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langindic-2014.ebuild   12 Jul 2015 17:54:13 -  1.3
+++ texlive-langindic-2014.ebuild   22 Jul 2015 19:37:39 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langindic/texlive-langindic-2014.ebuild,v
 1.3 2015/07/12 17:54:13 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langindic/texlive-langindic-2014.ebuild,v
 1.4 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.3 public-domain 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 



1.71 dev-texlive/texlive-langindic/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langindic/ChangeLog?rev=1.71view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langindic/ChangeLog?rev=1.71content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langindic/ChangeLog?r1=1.70r2=1.71

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langindic/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog   16 Jul 2015 09:20:01 -  1.70
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.71
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langindic
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langindic/ChangeLog,v 
1.70 2015/07/16 09:20:01 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langindic/ChangeLog,v 
1.71 2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langindic-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langindic-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-fontutils: texlive-fontutils-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-fontutils-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-fontutils/texlive-fontutils-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontutils/texlive-fontutils-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontutils/texlive-fontutils-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontutils/texlive-fontutils-2014.ebuild?r1=1.3r2=1.4

Index: texlive-fontutils-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-fontutils/texlive-fontutils-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-fontutils-2014.ebuild   12 Jul 2015 17:35:24 -  1.3
+++ texlive-fontutils-2014.ebuild   22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-fontutils/texlive-fontutils-2014.ebuild,v
 1.3 2015/07/12 17:35:24 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-fontutils/texlive-fontutils-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= Artistic GPL-1 GPL-2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-psutils



1.57 dev-texlive/texlive-fontutils/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontutils/ChangeLog?rev=1.57view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontutils/ChangeLog?rev=1.57content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontutils/ChangeLog?r1=1.56r2=1.57

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-fontutils/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   16 Jul 2015 09:14:42 -  1.56
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.57
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-fontutils
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-fontutils/ChangeLog,v 
1.56 2015/07/16 09:14:42 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-fontutils/ChangeLog,v 
1.57 2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-fontutils-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-fontutils-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langcyrillic: texlive-langcyrillic-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-langcyrillic-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langcyrillic/texlive-langcyrillic-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langcyrillic/texlive-langcyrillic-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langcyrillic/texlive-langcyrillic-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langcyrillic/texlive-langcyrillic-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langcyrillic-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langcyrillic/texlive-langcyrillic-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langcyrillic-2014.ebuild12 Jul 2015 17:47:54 -  1.3
+++ texlive-langcyrillic-2014.ebuild22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langcyrillic/texlive-langcyrillic-2014.ebuild,v
 1.3 2015/07/12 17:47:54 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langcyrillic/texlive-langcyrillic-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 =dev-texlive/texlive-latex-2014



1.71 dev-texlive/texlive-langcyrillic/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langcyrillic/ChangeLog?rev=1.71view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langcyrillic/ChangeLog?rev=1.71content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langcyrillic/ChangeLog?r1=1.70r2=1.71

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langcyrillic/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog   16 Jul 2015 09:17:47 -  1.70
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.71
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langcyrillic
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langcyrillic/ChangeLog,v 1.70 
2015/07/16 09:17:47 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langcyrillic/ChangeLog,v 1.71 
2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langcyrillic-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langcyrillic-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langafrican: texlive-langafrican-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:39

  Modified: texlive-langafrican-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langafrican/texlive-langafrican-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langafrican/texlive-langafrican-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langafrican/texlive-langafrican-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langafrican/texlive-langafrican-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langafrican-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langafrican/texlive-langafrican-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langafrican-2014.ebuild 12 Jul 2015 17:43:41 -  1.3
+++ texlive-langafrican-2014.ebuild 22 Jul 2015 19:37:39 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langafrican/texlive-langafrican-2014.ebuild,v
 1.3 2015/07/12 17:43:41 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langafrican/texlive-langafrican-2014.ebuild,v
 1.4 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 



1.68 dev-texlive/texlive-langafrican/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langafrican/ChangeLog?rev=1.68view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langafrican/ChangeLog?rev=1.68content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langafrican/ChangeLog?r1=1.67r2=1.68

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langafrican/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog   16 Jul 2015 09:16:34 -  1.67
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.68
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langafrican
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langafrican/ChangeLog,v 
1.67 2015/07/16 09:16:34 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langafrican/ChangeLog,v 
1.68 2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langafrican-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langafrican-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langchinese: texlive-langchinese-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-langchinese-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langchinese/texlive-langchinese-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langchinese/texlive-langchinese-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langchinese/texlive-langchinese-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langchinese/texlive-langchinese-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langchinese-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langchinese/texlive-langchinese-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langchinese-2014.ebuild 12 Jul 2015 17:47:11 -  1.3
+++ texlive-langchinese-2014.ebuild 22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langchinese/texlive-langchinese-2014.ebuild,v
 1.3 2015/07/12 17:47:11 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langchinese/texlive-langchinese-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= FDL-1.1 GPL-1 GPL-2 LGPL-2 LPPL-1.3 TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-langcjk-2014
 !dev-texlive/texlive-langcjk-2014



1.5  dev-texlive/texlive-langchinese/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langchinese/ChangeLog?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langchinese/ChangeLog?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langchinese/ChangeLog?r1=1.4r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langchinese/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   16 Jul 2015 09:17:07 -  1.4
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.5
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langchinese
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langchinese/ChangeLog,v 
1.4 2015/07/16 09:17:07 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langchinese/ChangeLog,v 
1.5 2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langchinese-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langchinese-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-latexrecommended: texlive-latexrecommended-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:39

  Modified: texlive-latexrecommended-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  
dev-texlive/texlive-latexrecommended/texlive-latexrecommended-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latexrecommended/texlive-latexrecommended-2014.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latexrecommended/texlive-latexrecommended-2014.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latexrecommended/texlive-latexrecommended-2014.ebuild?r1=1.4r2=1.5

Index: texlive-latexrecommended-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-latexrecommended/texlive-latexrecommended-2014.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- texlive-latexrecommended-2014.ebuild12 Jul 2015 18:02:54 -  
1.4
+++ texlive-latexrecommended-2014.ebuild22 Jul 2015 19:37:39 -  
1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-latexrecommended/texlive-latexrecommended-2014.ebuild,v
 1.4 2015/07/12 18:02:54 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-latexrecommended/texlive-latexrecommended-2014.ebuild,v
 1.5 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-latex-2014
 !dev-tex/xkeyval



1.85 dev-texlive/texlive-latexrecommended/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latexrecommended/ChangeLog?rev=1.85view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latexrecommended/ChangeLog?rev=1.85content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latexrecommended/ChangeLog?r1=1.84r2=1.85

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-latexrecommended/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog   16 Jul 2015 09:24:36 -  1.84
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.85
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-latexrecommended
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-latexrecommended/ChangeLog,v 1.84 
2015/07/16 09:24:36 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-latexrecommended/ChangeLog,v 1.85 
2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-latexrecommended-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-latexrecommended-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langjapanese: texlive-langjapanese-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-langjapanese-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langjapanese/texlive-langjapanese-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langjapanese/texlive-langjapanese-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langjapanese/texlive-langjapanese-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langjapanese/texlive-langjapanese-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langjapanese-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langjapanese/texlive-langjapanese-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langjapanese-2014.ebuild12 Jul 2015 17:55:42 -  1.3
+++ texlive-langjapanese-2014.ebuild22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langjapanese/texlive-langjapanese-2014.ebuild,v
 1.3 2015/07/12 17:55:42 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langjapanese/texlive-langjapanese-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= BSD GPL-1 GPL-2 LPPL-1.3 TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-langcjk-2014
 !dev-texlive/texlive-langcjk-2014



1.5  dev-texlive/texlive-langjapanese/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langjapanese/ChangeLog?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langjapanese/ChangeLog?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langjapanese/ChangeLog?r1=1.4r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langjapanese/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   16 Jul 2015 09:20:35 -  1.4
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.5
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langjapanese
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langjapanese/ChangeLog,v 1.4 
2015/07/16 09:20:35 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langjapanese/ChangeLog,v 1.5 
2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langjapanese-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langjapanese-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langportuguese: texlive-langportuguese-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:39

  Modified: texlive-langportuguese-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langportuguese/texlive-langportuguese-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langportuguese/texlive-langportuguese-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langportuguese/texlive-langportuguese-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langportuguese/texlive-langportuguese-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langportuguese-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langportuguese/texlive-langportuguese-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langportuguese-2014.ebuild  12 Jul 2015 17:59:39 -  1.3
+++ texlive-langportuguese-2014.ebuild  22 Jul 2015 19:37:39 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langportuguese/texlive-langportuguese-2014.ebuild,v
 1.3 2015/07/12 17:59:39 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langportuguese/texlive-langportuguese-2014.ebuild,v
 1.4 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.3 public-domain 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-documentation-portuguese



1.69 dev-texlive/texlive-langportuguese/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langportuguese/ChangeLog?rev=1.69view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langportuguese/ChangeLog?rev=1.69content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langportuguese/ChangeLog?r1=1.68r2=1.69

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langportuguese/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   16 Jul 2015 09:21:49 -  1.68
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.69
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langportuguese
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langportuguese/ChangeLog,v 1.68 
2015/07/16 09:21:49 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langportuguese/ChangeLog,v 1.69 
2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langportuguese-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langportuguese-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langarabic: texlive-langarabic-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-langarabic-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langarabic/texlive-langarabic-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langarabic/texlive-langarabic-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langarabic/texlive-langarabic-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langarabic/texlive-langarabic-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langarabic-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langarabic/texlive-langarabic-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langarabic-2014.ebuild  12 Jul 2015 17:44:22 -  1.3
+++ texlive-langarabic-2014.ebuild  22 Jul 2015 19:37:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langarabic/texlive-langarabic-2014.ebuild,v
 1.3 2015/07/12 17:44:22 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langarabic/texlive-langarabic-2014.ebuild,v
 1.4 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-2 LPPL-1.3 OFL public-domain 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-langarab



1.48 dev-texlive/texlive-langarabic/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langarabic/ChangeLog?rev=1.48view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langarabic/ChangeLog?rev=1.48content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langarabic/ChangeLog?r1=1.47r2=1.48

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langarabic/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   16 Jul 2015 09:16:51 -  1.47
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.48
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langarabic
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langarabic/ChangeLog,v 
1.47 2015/07/16 09:16:51 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langarabic/ChangeLog,v 
1.48 2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langarabic-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langarabic-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langkorean: texlive-langkorean-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:39

  Modified: texlive-langkorean-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langkorean/texlive-langkorean-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langkorean/texlive-langkorean-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langkorean/texlive-langkorean-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langkorean/texlive-langkorean-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langkorean-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langkorean/texlive-langkorean-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langkorean-2014.ebuild  12 Jul 2015 17:56:41 -  1.3
+++ texlive-langkorean-2014.ebuild  22 Jul 2015 19:37:39 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langkorean/texlive-langkorean-2014.ebuild,v
 1.3 2015/07/12 17:56:41 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langkorean/texlive-langkorean-2014.ebuild,v
 1.4 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= FDL-1.1 GPL-2 LPPL-1.3 OFL TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-langcjk-2014
 !dev-texlive/texlive-langcjk-2014



1.5  dev-texlive/texlive-langkorean/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langkorean/ChangeLog?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langkorean/ChangeLog?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langkorean/ChangeLog?r1=1.4r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langkorean/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   16 Jul 2015 09:20:51 -  1.4
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.5
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langkorean
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langkorean/ChangeLog,v 
1.4 2015/07/16 09:20:51 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langkorean/ChangeLog,v 
1.5 2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langkorean-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langkorean-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-xetex: texlive-xetex-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:39

  Modified: texlive-xetex-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-xetex/texlive-xetex-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-xetex/texlive-xetex-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-xetex/texlive-xetex-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-xetex/texlive-xetex-2014.ebuild?r1=1.3r2=1.4

Index: texlive-xetex-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-xetex/texlive-xetex-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-xetex-2014.ebuild   12 Jul 2015 17:37:23 -  1.3
+++ texlive-xetex-2014.ebuild   22 Jul 2015 19:37:39 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-xetex/texlive-xetex-2014.ebuild,v 
1.3 2015/07/12 17:37:23 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-xetex/texlive-xetex-2014.ebuild,v 
1.4 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= Apache-2.0 GPL-1 GPL-2 LPPL-1.2 LPPL-1.3 OFL public-domain 
TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !=app-text/texlive-core-2007*



1.78 dev-texlive/texlive-xetex/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-xetex/ChangeLog?rev=1.78view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-xetex/ChangeLog?rev=1.78content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-xetex/ChangeLog?r1=1.77r2=1.78

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-xetex/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog   16 Jul 2015 09:28:41 -  1.77
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.78
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-xetex
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-xetex/ChangeLog,v 1.77 
2015/07/16 09:28:41 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-xetex/ChangeLog,v 1.78 
2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-xetex-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-xetex-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langczechslovak: texlive-langczechslovak-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-langczechslovak-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  
dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2014.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2014.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2014.ebuild?r1=1.4r2=1.5

Index: texlive-langczechslovak-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2014.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- texlive-langczechslovak-2014.ebuild 12 Jul 2015 17:48:49 -  1.4
+++ texlive-langczechslovak-2014.ebuild 22 Jul 2015 19:37:39 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2014.ebuild,v
 1.4 2015/07/12 17:48:49 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2014.ebuild,v
 1.5 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.3 TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 =dev-texlive/texlive-latex-2014



1.70 dev-texlive/texlive-langczechslovak/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langczechslovak/ChangeLog?rev=1.70view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langczechslovak/ChangeLog?rev=1.70content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langczechslovak/ChangeLog?r1=1.69r2=1.70

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langczechslovak/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog   16 Jul 2015 09:18:06 -  1.69
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.70
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langczechslovak
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langczechslovak/ChangeLog,v 1.69 
2015/07/16 09:18:06 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langczechslovak/ChangeLog,v 1.70 
2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langczechslovak-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langczechslovak-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-genericrecommended: texlive-genericrecommended-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-genericrecommended-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-genericrecommended/texlive-genericrecommended-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-genericrecommended/texlive-genericrecommended-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-genericrecommended/texlive-genericrecommended-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-genericrecommended/texlive-genericrecommended-2014.ebuild?r1=1.3r2=1.4

Index: texlive-genericrecommended-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-genericrecommended/texlive-genericrecommended-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-genericrecommended-2014.ebuild  12 Jul 2015 17:41:38 -  
1.3
+++ texlive-genericrecommended-2014.ebuild  22 Jul 2015 19:37:41 -  
1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-genericrecommended/texlive-genericrecommended-2014.ebuild,v
 1.3 2015/07/12 17:41:38 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-genericrecommended/texlive-genericrecommended-2014.ebuild,v
 1.4 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !=dev-texlive/texlive-basic-2007*



1.73 dev-texlive/texlive-genericrecommended/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-genericrecommended/ChangeLog?rev=1.73view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-genericrecommended/ChangeLog?rev=1.73content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-genericrecommended/ChangeLog?r1=1.72r2=1.73

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-genericrecommended/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   16 Jul 2015 09:15:55 -  1.72
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.73
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-genericrecommended
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-genericrecommended/ChangeLog,v 1.72 
2015/07/16 09:15:55 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-genericrecommended/ChangeLog,v 1.73 
2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-genericrecommended-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-genericrecommended-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langitalian: texlive-langitalian-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-langitalian-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langitalian/texlive-langitalian-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langitalian/texlive-langitalian-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langitalian/texlive-langitalian-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langitalian/texlive-langitalian-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langitalian-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langitalian/texlive-langitalian-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langitalian-2014.ebuild 12 Jul 2015 17:54:57 -  1.3
+++ texlive-langitalian-2014.ebuild 22 Jul 2015 19:37:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langitalian/texlive-langitalian-2014.ebuild,v
 1.3 2015/07/12 17:54:57 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langitalian/texlive-langitalian-2014.ebuild,v
 1.4 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= FDL-1.1 GPL-1 GPL-2 LPPL-1.3 TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-documentation-italian



1.68 dev-texlive/texlive-langitalian/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langitalian/ChangeLog?rev=1.68view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langitalian/ChangeLog?rev=1.68content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langitalian/ChangeLog?r1=1.67r2=1.68

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langitalian/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog   16 Jul 2015 09:20:19 -  1.67
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.68
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langitalian
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langitalian/ChangeLog,v 
1.67 2015/07/16 09:20:19 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langitalian/ChangeLog,v 
1.68 2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langitalian-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langitalian-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-pictures: texlive-pictures-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:39

  Modified: texlive-pictures-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-pictures/texlive-pictures-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-pictures/texlive-pictures-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-pictures/texlive-pictures-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-pictures/texlive-pictures-2014.ebuild?r1=1.3r2=1.4

Index: texlive-pictures-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-pictures/texlive-pictures-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-pictures-2014.ebuild12 Jul 2015 18:04:20 -  1.3
+++ texlive-pictures-2014.ebuild22 Jul 2015 19:37:39 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-pictures/texlive-pictures-2014.ebuild,v
 1.3 2015/07/12 18:04:20 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-pictures/texlive-pictures-2014.ebuild,v
 1.4 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= Apache-2.0 GPL-1 GPL-2 GPL-3 LPPL-1.2 LPPL-1.3 public-domain 
TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-latexextra-2009



1.93 dev-texlive/texlive-pictures/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-pictures/ChangeLog?rev=1.93view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-pictures/ChangeLog?rev=1.93content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-pictures/ChangeLog?r1=1.92r2=1.93

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-pictures/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog   16 Jul 2015 09:26:39 -  1.92
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.93
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-pictures
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-pictures/ChangeLog,v 
1.92 2015/07/16 09:26:39 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-pictures/ChangeLog,v 
1.93 2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-pictures-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-pictures-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in app-text/texlive-core: texlive-core-2014-r4.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:44:29

  Modified: texlive-core-2014-r4.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  app-text/texlive-core/texlive-core-2014-r4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/texlive-core-2014-r4.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/texlive-core-2014-r4.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/texlive-core-2014-r4.ebuild?r1=1.4r2=1.5

Index: texlive-core-2014-r4.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2014-r4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- texlive-core-2014-r4.ebuild 15 Jul 2015 09:33:52 -  1.4
+++ texlive-core-2014-r4.ebuild 22 Jul 2015 19:44:29 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2014-r4.ebuild,v 1.4 
2015/07/15 09:33:52 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2014-r4.ebuild,v 1.5 
2015/07/22 19:44:29 blueness Exp $
 
 EAPI=5
 
@@ -69,7 +69,7 @@
 done
 SRC_URI=${SRC_URI} )
 
-KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=cjk X doc source tk xetex
 
 TEXMF_PATH=/usr/share/texmf-dist



1.230app-text/texlive-core/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/ChangeLog?rev=1.230view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/ChangeLog?rev=1.230content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/ChangeLog?r1=1.229r2=1.230

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v
retrieving revision 1.229
retrieving revision 1.230
diff -u -r1.229 -r1.230
--- ChangeLog   16 Jul 2015 15:43:18 -  1.229
+++ ChangeLog   22 Jul 2015 19:44:29 -  1.230
@@ -1,6 +1,10 @@
 # ChangeLog for app-text/texlive-core
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.229 
2015/07/16 15:43:18 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.230 
2015/07/22 19:44:29 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-core-2014-r4.ebuild:
+  Stable for ppc, bug #550840.
 
   16 Jul 2015; Alexis Ballier aball...@gentoo.org texlive-core-2015.ebuild:
   disable more cjk stuff that need ptexenc with its useflag, bug #555068






[gentoo-commits] gentoo-x86 commit in dev-libs/kpathsea: kpathsea-6.2.0_p20140525.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:14:09

  Modified: kpathsea-6.2.0_p20140525.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #550840
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-libs/kpathsea/kpathsea-6.2.0_p20140525.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/kpathsea/kpathsea-6.2.0_p20140525.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/kpathsea/kpathsea-6.2.0_p20140525.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/kpathsea/kpathsea-6.2.0_p20140525.ebuild?r1=1.3r2=1.4

Index: kpathsea-6.2.0_p20140525.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-libs/kpathsea/kpathsea-6.2.0_p20140525.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kpathsea-6.2.0_p20140525.ebuild 12 Jul 2015 17:15:32 -  1.3
+++ kpathsea-6.2.0_p20140525.ebuild 22 Jul 2015 19:14:08 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/kpathsea/kpathsea-6.2.0_p20140525.ebuild,v 1.3 
2015/07/12 17:15:32 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/kpathsea/kpathsea-6.2.0_p20140525.ebuild,v 1.4 
2015/07/22 19:14:08 blueness Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE=GPL-2
 SLOT=0/${PV%_p*}
-KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=doc source static-libs
 
 DEPEND=!app-text/texlive-core-2013



1.49 dev-libs/kpathsea/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/kpathsea/ChangeLog?rev=1.49view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/kpathsea/ChangeLog?rev=1.49content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/kpathsea/ChangeLog?r1=1.48r2=1.49

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/kpathsea/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog   15 Jul 2015 09:50:20 -  1.48
+++ ChangeLog   22 Jul 2015 19:14:08 -  1.49
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/kpathsea
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/kpathsea/ChangeLog,v 1.48 
2015/07/15 09:50:20 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/kpathsea/ChangeLog,v 1.49 
2015/07/22 19:14:08 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  kpathsea-6.2.0_p20140525.ebuild:
+  Stable for ppc, wrt bug #550840
 
 *kpathsea-6.2.1_p20150521 (15 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in app-text/texlive: texlive-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:43:26

  Modified: texlive-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  app-text/texlive/texlive-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive/texlive-2014.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive/texlive-2014.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive/texlive-2014.ebuild?r1=1.4r2=1.5

Index: texlive-2014.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-text/texlive/texlive-2014.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- texlive-2014.ebuild 12 Jul 2015 18:15:22 -  1.4
+++ texlive-2014.ebuild 22 Jul 2015 19:43:26 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/texlive/texlive-2014.ebuild,v 1.4 
2015/07/12 18:15:22 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/texlive/texlive-2014.ebuild,v 1.5 
2015/07/22 19:43:26 blueness Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 
 LICENSE=metapackage
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~x86-fbsd 
~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~x86-fbsd 
~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=cjk context detex dvi2tty extra epspdf games graphics
 humanities jadetex luatex metapost music omega pdfannotextractor png pstricks 
publishers
 science tex4ht texi2html truetype xetex xindy xml X



1.143app-text/texlive/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive/ChangeLog?rev=1.143view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive/ChangeLog?rev=1.143content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive/ChangeLog?r1=1.142r2=1.143

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/texlive/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog   16 Jul 2015 15:37:13 -  1.142
+++ ChangeLog   22 Jul 2015 19:43:26 -  1.143
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/texlive
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/texlive/ChangeLog,v 1.142 
2015/07/16 15:37:13 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/texlive/ChangeLog,v 1.143 
2015/07/22 19:43:26 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org texlive-2014.ebuild:
+  Stable for ppc, bug #550840.
 
   16 Jul 2015; Alexis Ballier aball...@gentoo.org texlive-2015.ebuild:
   raise ttf2pk2 dep to tl 2015 one






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-games: texlive-games-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-games-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-games/texlive-games-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-games/texlive-games-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-games/texlive-games-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-games/texlive-games-2014.ebuild?r1=1.3r2=1.4

Index: texlive-games-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-games/texlive-games-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-games-2014.ebuild   12 Jul 2015 17:39:25 -  1.3
+++ texlive-games-2014.ebuild   22 Jul 2015 19:37:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-games/texlive-games-2014.ebuild,v 
1.3 2015/07/12 17:39:25 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-games/texlive-games-2014.ebuild,v 
1.4 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-latex-2014
 !dev-texlive/texlive-latexextra-2009



1.70 dev-texlive/texlive-games/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-games/ChangeLog?rev=1.70view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-games/ChangeLog?rev=1.70content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-games/ChangeLog?r1=1.69r2=1.70

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-games/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog   16 Jul 2015 09:15:17 -  1.69
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.70
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-games
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-games/ChangeLog,v 1.69 
2015/07/16 09:15:17 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-games/ChangeLog,v 1.70 
2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-games-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-games-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-basic: texlive-basic-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-basic-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-basic/texlive-basic-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-basic/texlive-basic-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-basic/texlive-basic-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-basic/texlive-basic-2014.ebuild?r1=1.3r2=1.4

Index: texlive-basic-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-basic/texlive-basic-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-basic-2014.ebuild   12 Jul 2015 17:26:10 -  1.3
+++ texlive-basic-2014.ebuild   22 Jul 2015 19:37:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-basic/texlive-basic-2014.ebuild,v 
1.3 2015/07/12 17:26:10 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-basic/texlive-basic-2014.ebuild,v 
1.4 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.3 OFL TeX TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND=!app-text/texlive-core-2009
 !dev-texlive/texlive-latex-2009



1.86 dev-texlive/texlive-basic/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-basic/ChangeLog?rev=1.86view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-basic/ChangeLog?rev=1.86content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-basic/ChangeLog?r1=1.85r2=1.86

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-basic/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog   16 Jul 2015 09:12:45 -  1.85
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.86
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-basic
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-basic/ChangeLog,v 1.85 
2015/07/16 09:12:45 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-basic/ChangeLog,v 1.86 
2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-basic-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-basic-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-metapost: texlive-metapost-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:42

  Modified: texlive-metapost-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-metapost/texlive-metapost-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-metapost/texlive-metapost-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-metapost/texlive-metapost-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-metapost/texlive-metapost-2014.ebuild?r1=1.3r2=1.4

Index: texlive-metapost-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-metapost/texlive-metapost-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-metapost-2014.ebuild12 Jul 2015 18:09:08 -  1.3
+++ texlive-metapost-2014.ebuild22 Jul 2015 19:37:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-metapost/texlive-metapost-2014.ebuild,v
 1.3 2015/07/12 18:09:08 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-metapost/texlive-metapost-2014.ebuild,v
 1.4 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LGPL-2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 



1.75 dev-texlive/texlive-metapost/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-metapost/ChangeLog?rev=1.75view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-metapost/ChangeLog?rev=1.75content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-metapost/ChangeLog?r1=1.74r2=1.75

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-metapost/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog   16 Jul 2015 09:25:38 -  1.74
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.75
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-metapost
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-metapost/ChangeLog,v 
1.74 2015/07/16 09:25:38 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-metapost/ChangeLog,v 
1.75 2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-metapost-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-metapost-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-pstricks: texlive-pstricks-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-pstricks-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-pstricks/texlive-pstricks-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-pstricks/texlive-pstricks-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-pstricks/texlive-pstricks-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-pstricks/texlive-pstricks-2014.ebuild?r1=1.3r2=1.4

Index: texlive-pstricks-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-pstricks/texlive-pstricks-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-pstricks-2014.ebuild12 Jul 2015 18:12:01 -  1.3
+++ texlive-pstricks-2014.ebuild22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-pstricks/texlive-pstricks-2014.ebuild,v
 1.3 2015/07/12 18:12:01 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-pstricks/texlive-pstricks-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LGPL-2 LPPL-1.3 public-domain 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 =dev-texlive/texlive-genericrecommended-2014



1.75 dev-texlive/texlive-pstricks/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-pstricks/ChangeLog?rev=1.75view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-pstricks/ChangeLog?rev=1.75content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-pstricks/ChangeLog?r1=1.74r2=1.75

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-pstricks/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog   16 Jul 2015 09:27:24 -  1.74
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.75
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-pstricks
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-pstricks/ChangeLog,v 
1.74 2015/07/16 09:27:24 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-pstricks/ChangeLog,v 
1.75 2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-pstricks-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-pstricks-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-bibtexextra: texlive-bibtexextra-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-bibtexextra-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  
dev-texlive/texlive-bibtexextra/texlive-bibtexextra-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-bibtexextra/texlive-bibtexextra-2014.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-bibtexextra/texlive-bibtexextra-2014.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-bibtexextra/texlive-bibtexextra-2014.ebuild?r1=1.4r2=1.5

Index: texlive-bibtexextra-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-bibtexextra/texlive-bibtexextra-2014.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- texlive-bibtexextra-2014.ebuild 16 Jul 2015 09:32:06 -  1.4
+++ texlive-bibtexextra-2014.ebuild 22 Jul 2015 19:37:41 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-bibtexextra/texlive-bibtexextra-2014.ebuild,v
 1.4 2015/07/16 09:32:06 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-bibtexextra/texlive-bibtexextra-2014.ebuild,v
 1.5 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= Artistic GPL-1 GPL-2 LPPL-1.2 LPPL-1.3 public-domain TeX 
TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-latex-2014
 !=dev-texlive/texlive-latexextra-2007*



1.73 dev-texlive/texlive-bibtexextra/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-bibtexextra/ChangeLog?rev=1.73view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-bibtexextra/ChangeLog?rev=1.73content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-bibtexextra/ChangeLog?r1=1.72r2=1.73

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-bibtexextra/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   16 Jul 2015 09:32:06 -  1.72
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.73
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-bibtexextra
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-bibtexextra/ChangeLog,v 
1.72 2015/07/16 09:32:06 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-bibtexextra/ChangeLog,v 
1.73 2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-bibtexextra-2014.ebuild:
+  Stable for ppc, bug #550840.
 
   16 Jul 2015; Alexis Ballier aball...@gentoo.org
   texlive-bibtexextra-2014.ebuild, texlive-bibtexextra-2015.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-formatsextra: texlive-formatsextra-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:39

  Modified: texlive-formatsextra-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.6  
dev-texlive/texlive-formatsextra/texlive-formatsextra-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-formatsextra/texlive-formatsextra-2014.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-formatsextra/texlive-formatsextra-2014.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-formatsextra/texlive-formatsextra-2014.ebuild?r1=1.5r2=1.6

Index: texlive-formatsextra-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-formatsextra/texlive-formatsextra-2014.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- texlive-formatsextra-2014.ebuild12 Jul 2015 17:38:10 -  1.5
+++ texlive-formatsextra-2014.ebuild22 Jul 2015 19:37:39 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-formatsextra/texlive-formatsextra-2014.ebuild,v
 1.5 2015/07/12 17:38:10 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-formatsextra/texlive-formatsextra-2014.ebuild,v
 1.6 2015/07/22 19:37:39 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-2 GPL-3 LPPL-1.3 public-domain TeX 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 =dev-texlive/texlive-xetex-2014



1.74 dev-texlive/texlive-formatsextra/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-formatsextra/ChangeLog?rev=1.74view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-formatsextra/ChangeLog?rev=1.74content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-formatsextra/ChangeLog?r1=1.73r2=1.74

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-formatsextra/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog   16 Jul 2015 09:14:59 -  1.73
+++ ChangeLog   22 Jul 2015 19:37:39 -  1.74
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-formatsextra
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-formatsextra/ChangeLog,v 1.73 
2015/07/16 09:14:59 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-formatsextra/ChangeLog,v 1.74 
2015/07/22 19:37:39 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-formatsextra-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-formatsextra-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-plainextra: texlive-plainextra-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-plainextra-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-plainextra/texlive-plainextra-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-plainextra/texlive-plainextra-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-plainextra/texlive-plainextra-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-plainextra/texlive-plainextra-2014.ebuild?r1=1.3r2=1.4

Index: texlive-plainextra-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-plainextra/texlive-plainextra-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-plainextra-2014.ebuild  12 Jul 2015 18:11:10 -  1.3
+++ texlive-plainextra-2014.ebuild  22 Jul 2015 19:37:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-plainextra/texlive-plainextra-2014.ebuild,v
 1.3 2015/07/12 18:11:10 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-plainextra/texlive-plainextra-2014.ebuild,v
 1.4 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-langvietnamese-2009



1.72 dev-texlive/texlive-plainextra/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-plainextra/ChangeLog?rev=1.72view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-plainextra/ChangeLog?rev=1.72content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-plainextra/ChangeLog?r1=1.71r2=1.72

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-plainextra/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog   16 Jul 2015 09:27:02 -  1.71
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.72
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-plainextra
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-plainextra/ChangeLog,v 
1.71 2015/07/16 09:27:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-plainextra/ChangeLog,v 
1.72 2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-plainextra-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-plainextra-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-luatex: texlive-luatex-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-luatex-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-luatex/texlive-luatex-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-luatex/texlive-luatex-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-luatex/texlive-luatex-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-luatex/texlive-luatex-2014.ebuild?r1=1.3r2=1.4

Index: texlive-luatex-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-luatex/texlive-luatex-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-luatex-2014.ebuild  12 Jul 2015 18:07:32 -  1.3
+++ texlive-luatex-2014.ebuild  22 Jul 2015 19:37:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-luatex/texlive-luatex-2014.ebuild,v 
1.3 2015/07/12 18:07:32 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-luatex/texlive-luatex-2014.ebuild,v 
1.4 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= BSD FDL-1.1 GPL-2 LPPL-1.2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 



1.53 dev-texlive/texlive-luatex/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-luatex/ChangeLog?rev=1.53view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-luatex/ChangeLog?rev=1.53content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-luatex/ChangeLog?r1=1.52r2=1.53

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-luatex/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog   16 Jul 2015 09:24:57 -  1.52
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.53
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-luatex
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-luatex/ChangeLog,v 1.52 
2015/07/16 09:24:57 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-luatex/ChangeLog,v 1.53 
2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-luatex-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-luatex-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-music: texlive-music-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-music-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-music/texlive-music-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-music/texlive-music-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-music/texlive-music-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-music/texlive-music-2014.ebuild?r1=1.3r2=1.4

Index: texlive-music-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-music/texlive-music-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-music-2014.ebuild   12 Jul 2015 18:09:53 -  1.3
+++ texlive-music-2014.ebuild   22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-music/texlive-music-2014.ebuild,v 
1.3 2015/07/12 18:09:53 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-music/texlive-music-2014.ebuild,v 
1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LGPL-2.1 LPPL-1.2 LPPL-1.3 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-latex-2014
 !app-text/texlive-core-2011



1.69 dev-texlive/texlive-music/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-music/ChangeLog?rev=1.69view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-music/ChangeLog?rev=1.69content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-music/ChangeLog?r1=1.68r2=1.69

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-music/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   16 Jul 2015 09:25:58 -  1.68
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.69
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-music
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-music/ChangeLog,v 1.68 
2015/07/16 09:25:58 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-music/ChangeLog,v 1.69 
2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-music-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-music-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langfrench: texlive-langfrench-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-langfrench-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langfrench/texlive-langfrench-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langfrench/texlive-langfrench-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langfrench/texlive-langfrench-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langfrench/texlive-langfrench-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langfrench-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langfrench/texlive-langfrench-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langfrench-2014.ebuild  12 Jul 2015 17:51:20 -  1.3
+++ texlive-langfrench-2014.ebuild  22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langfrench/texlive-langfrench-2014.ebuild,v
 1.3 2015/07/12 17:51:20 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langfrench/texlive-langfrench-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-documentation-french



1.70 dev-texlive/texlive-langfrench/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langfrench/ChangeLog?rev=1.70view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langfrench/ChangeLog?rev=1.70content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langfrench/ChangeLog?r1=1.69r2=1.70

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langfrench/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog   16 Jul 2015 09:19:03 -  1.69
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.70
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langfrench
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langfrench/ChangeLog,v 
1.69 2015/07/16 09:19:03 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langfrench/ChangeLog,v 
1.70 2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langfrench-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langfrench-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langspanish: texlive-langspanish-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-langspanish-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langspanish/texlive-langspanish-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langspanish/texlive-langspanish-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langspanish/texlive-langspanish-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langspanish/texlive-langspanish-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langspanish-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langspanish/texlive-langspanish-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langspanish-2014.ebuild 12 Jul 2015 18:01:03 -  1.3
+++ texlive-langspanish-2014.ebuild 22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langspanish/texlive-langspanish-2014.ebuild,v
 1.3 2015/07/12 18:01:03 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langspanish/texlive-langspanish-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-documentation-spanish



1.68 dev-texlive/texlive-langspanish/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langspanish/ChangeLog?rev=1.68view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langspanish/ChangeLog?rev=1.68content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langspanish/ChangeLog?r1=1.67r2=1.68

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langspanish/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog   16 Jul 2015 09:22:07 -  1.67
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.68
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langspanish
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langspanish/ChangeLog,v 
1.67 2015/07/16 09:22:07 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langspanish/ChangeLog,v 
1.68 2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langspanish-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langspanish-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langcjk: texlive-langcjk-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-langcjk-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-langcjk/texlive-langcjk-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langcjk/texlive-langcjk-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langcjk/texlive-langcjk-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langcjk/texlive-langcjk-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langcjk-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langcjk/texlive-langcjk-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langcjk-2014.ebuild 12 Jul 2015 17:46:36 -  1.3
+++ texlive-langcjk-2014.ebuild 22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langcjk/texlive-langcjk-2014.ebuild,v
 1.3 2015/07/12 17:46:36 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langcjk/texlive-langcjk-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= BSD GPL-2 LPPL-1.3 TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 =app-text/texlive-core-2010[cjk]



1.79 dev-texlive/texlive-langcjk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langcjk/ChangeLog?rev=1.79view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langcjk/ChangeLog?rev=1.79content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langcjk/ChangeLog?r1=1.78r2=1.79

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langcjk/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog   16 Jul 2015 09:17:26 -  1.78
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.79
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langcjk
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langcjk/ChangeLog,v 
1.78 2015/07/16 09:17:26 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langcjk/ChangeLog,v 
1.79 2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langcjk-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langcjk-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-latexextra: texlive-latexextra-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-latexextra-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.6  
dev-texlive/texlive-latexextra/texlive-latexextra-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latexextra/texlive-latexextra-2014.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latexextra/texlive-latexextra-2014.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latexextra/texlive-latexextra-2014.ebuild?r1=1.5r2=1.6

Index: texlive-latexextra-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-latexextra/texlive-latexextra-2014.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- texlive-latexextra-2014.ebuild  15 Jul 2015 18:05:09 -  1.5
+++ texlive-latexextra-2014.ebuild  22 Jul 2015 19:37:41 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-latexextra/texlive-latexextra-2014.ebuild,v
 1.5 2015/07/15 18:05:09 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-latexextra/texlive-latexextra-2014.ebuild,v
 1.6 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= Apache-2.0 Artistic BSD GPL-1 GPL-2 GPL-3 LGPL-2 LPPL-1.2 LPPL-1.3 
public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-latexrecommended-2014
 =dev-texlive/texlive-pictures-2014



1.97 dev-texlive/texlive-latexextra/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latexextra/ChangeLog?rev=1.97view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latexextra/ChangeLog?rev=1.97content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-latexextra/ChangeLog?r1=1.96r2=1.97

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-latexextra/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog   16 Jul 2015 09:23:31 -  1.96
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.97
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-latexextra
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-latexextra/ChangeLog,v 
1.96 2015/07/16 09:23:31 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-latexextra/ChangeLog,v 
1.97 2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-latexextra-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-latexextra-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-science: texlive-science-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:40

  Modified: texlive-science-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-science/texlive-science-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-science/texlive-science-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-science/texlive-science-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-science/texlive-science-2014.ebuild?r1=1.3r2=1.4

Index: texlive-science-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-science/texlive-science-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-science-2014.ebuild 12 Jul 2015 18:13:21 -  1.3
+++ texlive-science-2014.ebuild 22 Jul 2015 19:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-science/texlive-science-2014.ebuild,v
 1.3 2015/07/12 18:13:21 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-science/texlive-science-2014.ebuild,v
 1.4 2015/07/22 19:37:40 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LGPL-2 LPPL-1.2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-latex-2014
 !dev-tex/SIunits



1.73 dev-texlive/texlive-science/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-science/ChangeLog?rev=1.73view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-science/ChangeLog?rev=1.73content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-science/ChangeLog?r1=1.72r2=1.73

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-science/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   16 Jul 2015 09:28:18 -  1.72
+++ ChangeLog   22 Jul 2015 19:37:40 -  1.73
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-science
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-science/ChangeLog,v 
1.72 2015/07/16 09:28:18 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-science/ChangeLog,v 
1.73 2015/07/22 19:37:40 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-science-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-science-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-context: texlive-context-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-context-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-context/texlive-context-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2014.ebuild?r1=1.3r2=1.4

Index: texlive-context-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-context-2014.ebuild 12 Jul 2015 17:30:48 -  1.3
+++ texlive-context-2014.ebuild 22 Jul 2015 19:37:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2014.ebuild,v
 1.3 2015/07/12 17:30:48 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2014.ebuild,v
 1.4 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= BSD GPL-1 GPL-2 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 =dev-texlive/texlive-latex-2010



1.81 dev-texlive/texlive-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?rev=1.81view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?rev=1.81content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?r1=1.80r2=1.81

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog   16 Jul 2015 09:13:29 -  1.80
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.81
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-context
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v 
1.80 2015/07/16 09:13:29 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v 
1.81 2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-context-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-context-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langeuropean: texlive-langeuropean-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:42

  Modified: texlive-langeuropean-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-langeuropean/texlive-langeuropean-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langeuropean/texlive-langeuropean-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langeuropean/texlive-langeuropean-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langeuropean/texlive-langeuropean-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langeuropean-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langeuropean/texlive-langeuropean-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langeuropean-2014.ebuild12 Jul 2015 17:50:36 -  1.3
+++ texlive-langeuropean-2014.ebuild22 Jul 2015 19:37:42 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langeuropean/texlive-langeuropean-2014.ebuild,v
 1.3 2015/07/12 17:50:36 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langeuropean/texlive-langeuropean-2014.ebuild,v
 1.4 2015/07/22 19:37:42 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.2 LPPL-1.3 public-domain 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-langarmenian



1.12 dev-texlive/texlive-langeuropean/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langeuropean/ChangeLog?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langeuropean/ChangeLog?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langeuropean/ChangeLog?r1=1.11r2=1.12

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langeuropean/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   16 Jul 2015 09:18:44 -  1.11
+++ ChangeLog   22 Jul 2015 19:37:42 -  1.12
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langeuropean
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langeuropean/ChangeLog,v 1.11 
2015/07/16 09:18:44 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langeuropean/ChangeLog,v 1.12 
2015/07/22 19:37:42 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langeuropean-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langeuropean-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-langother: texlive-langother-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:41

  Modified: texlive-langother-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-texlive/texlive-langother/texlive-langother-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langother/texlive-langother-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langother/texlive-langother-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langother/texlive-langother-2014.ebuild?r1=1.3r2=1.4

Index: texlive-langother-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langother/texlive-langother-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-langother-2014.ebuild   12 Jul 2015 17:58:00 -  1.3
+++ texlive-langother-2014.ebuild   22 Jul 2015 19:37:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langother/texlive-langother-2014.ebuild,v
 1.3 2015/07/12 17:58:00 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-langother/texlive-langother-2014.ebuild,v
 1.4 2015/07/22 19:37:41 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= GPL-1 GPL-2 LPPL-1.3 public-domain TeX-other-free 
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !dev-texlive/texlive-basic-2009



1.70 dev-texlive/texlive-langother/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langother/ChangeLog?rev=1.70view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langother/ChangeLog?rev=1.70content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-langother/ChangeLog?r1=1.69r2=1.70

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langother/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog   16 Jul 2015 09:21:11 -  1.69
+++ ChangeLog   22 Jul 2015 19:37:41 -  1.70
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-langother
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langother/ChangeLog,v 
1.69 2015/07/16 09:21:11 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-langother/ChangeLog,v 
1.70 2015/07/22 19:37:41 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-langother-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-langother-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-fontsrecommended: texlive-fontsrecommended-2014.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:37:42

  Modified: texlive-fontsrecommended-2014.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  
dev-texlive/texlive-fontsrecommended/texlive-fontsrecommended-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontsrecommended/texlive-fontsrecommended-2014.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontsrecommended/texlive-fontsrecommended-2014.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontsrecommended/texlive-fontsrecommended-2014.ebuild?r1=1.3r2=1.4

Index: texlive-fontsrecommended-2014.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-fontsrecommended/texlive-fontsrecommended-2014.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texlive-fontsrecommended-2014.ebuild12 Jul 2015 17:33:22 -  
1.3
+++ texlive-fontsrecommended-2014.ebuild22 Jul 2015 19:37:42 -  
1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-fontsrecommended/texlive-fontsrecommended-2014.ebuild,v
 1.3 2015/07/12 17:33:22 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-fontsrecommended/texlive-fontsrecommended-2014.ebuild,v
 1.4 2015/07/22 19:37:42 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE= BSD GPL-1 GPL-2 LPPL-1.3 OFL TeX-other-free
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 DEPEND==dev-texlive/texlive-basic-2014
 !=dev-texlive/texlive-basic-2007*



1.75 dev-texlive/texlive-fontsrecommended/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontsrecommended/ChangeLog?rev=1.75view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontsrecommended/ChangeLog?rev=1.75content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-fontsrecommended/ChangeLog?r1=1.74r2=1.75

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-fontsrecommended/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog   16 Jul 2015 09:14:22 -  1.74
+++ ChangeLog   22 Jul 2015 19:37:42 -  1.75
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-fontsrecommended
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-fontsrecommended/ChangeLog,v 1.74 
2015/07/16 09:14:22 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-fontsrecommended/ChangeLog,v 1.75 
2015/07/22 19:37:42 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  texlive-fontsrecommended-2014.ebuild:
+  Stable for ppc, bug #550840.
 
 *texlive-fontsrecommended-2015 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in app-text/ttf2pk2: ttf2pk2-2.0_p20140525.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:51:06

  Modified: ttf2pk2-2.0_p20140525.ebuild ChangeLog
  Log:
  Stable for amd64, ppc and x86.  Bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.3  app-text/ttf2pk2/ttf2pk2-2.0_p20140525.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ttf2pk2/ttf2pk2-2.0_p20140525.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ttf2pk2/ttf2pk2-2.0_p20140525.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ttf2pk2/ttf2pk2-2.0_p20140525.ebuild?r1=1.2r2=1.3

Index: ttf2pk2-2.0_p20140525.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-text/ttf2pk2/ttf2pk2-2.0_p20140525.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ttf2pk2-2.0_p20140525.ebuild15 Jul 2015 09:35:38 -  1.2
+++ ttf2pk2-2.0_p20140525.ebuild22 Jul 2015 19:51:06 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-text/ttf2pk2/ttf2pk2-2.0_p20140525.ebuild,v 1.2 
2015/07/15 09:35:38 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-text/ttf2pk2/ttf2pk2-2.0_p20140525.ebuild,v 1.3 
2015/07/22 19:51:06 blueness Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=
 
 # Note about blockers: it is a freetype2 based replacement for ttf2pk and



1.31 app-text/ttf2pk2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ttf2pk2/ChangeLog?rev=1.31view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ttf2pk2/ChangeLog?rev=1.31content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ttf2pk2/ChangeLog?r1=1.30r2=1.31

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/ttf2pk2/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   16 Jul 2015 15:35:13 -  1.30
+++ ChangeLog   22 Jul 2015 19:51:06 -  1.31
@@ -1,6 +1,10 @@
 # ChangeLog for app-text/ttf2pk2
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/ttf2pk2/ChangeLog,v 1.30 
2015/07/16 15:35:13 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/ttf2pk2/ChangeLog,v 1.31 
2015/07/22 19:51:06 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  ttf2pk2-2.0_p20140525.ebuild:
+  Stable for amd64, ppc and x86.  Bug #550840.
 
 *ttf2pk2-2.0_p20150521 (16 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in app-text/dvipsk: dvipsk-5.994_p20140525.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:17:11

  Modified: dvipsk-5.994_p20140525.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  app-text/dvipsk/dvipsk-5.994_p20140525.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/dvipsk/dvipsk-5.994_p20140525.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/dvipsk/dvipsk-5.994_p20140525.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/dvipsk/dvipsk-5.994_p20140525.ebuild?r1=1.4r2=1.5

Index: dvipsk-5.994_p20140525.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-text/dvipsk/dvipsk-5.994_p20140525.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dvipsk-5.994_p20140525.ebuild   15 Jul 2015 09:21:55 -  1.4
+++ dvipsk-5.994_p20140525.ebuild   22 Jul 2015 19:17:11 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-text/dvipsk/dvipsk-5.994_p20140525.ebuild,v 1.4 
2015/07/15 09:21:55 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-text/dvipsk/dvipsk-5.994_p20140525.ebuild,v 1.5 
2015/07/22 19:17:11 blueness Exp $
 
 EAPI=4
 
@@ -29,7 +29,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=doc source
 
 DEPEND==dev-libs/kpathsea-6.2.0



1.48 app-text/dvipsk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/dvipsk/ChangeLog?rev=1.48view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/dvipsk/ChangeLog?rev=1.48content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/dvipsk/ChangeLog?r1=1.47r2=1.48

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/dvipsk/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   15 Jul 2015 09:54:57 -  1.47
+++ ChangeLog   22 Jul 2015 19:17:11 -  1.48
@@ -1,6 +1,10 @@
 # ChangeLog for app-text/dvipsk
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/dvipsk/ChangeLog,v 1.47 2015/07/15 
09:54:57 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/dvipsk/ChangeLog,v 1.48 2015/07/22 
19:17:11 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  dvipsk-5.994_p20140525.ebuild:
+  Stable for ppc, bug #550840.
 
 *dvipsk-5.995_p20150521 (15 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-libs/ptexenc: ptexenc-1.3.2_p20140525-r1.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:15:54

  Modified: ptexenc-1.3.2_p20140525-r1.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-libs/ptexenc/ptexenc-1.3.2_p20140525-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ptexenc/ptexenc-1.3.2_p20140525-r1.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ptexenc/ptexenc-1.3.2_p20140525-r1.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ptexenc/ptexenc-1.3.2_p20140525-r1.ebuild?r1=1.3r2=1.4

Index: ptexenc-1.3.2_p20140525-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-libs/ptexenc/ptexenc-1.3.2_p20140525-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ptexenc-1.3.2_p20140525-r1.ebuild   12 Jul 2015 17:20:20 -  1.3
+++ ptexenc-1.3.2_p20140525-r1.ebuild   22 Jul 2015 19:15:54 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/ptexenc/ptexenc-1.3.2_p20140525-r1.ebuild,v 
1.3 2015/07/12 17:20:20 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/ptexenc/ptexenc-1.3.2_p20140525-r1.ebuild,v 
1.4 2015/07/22 19:15:54 blueness Exp $
 
 EAPI=3
 
@@ -13,7 +13,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-macos
+KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-macos
 IUSE=iconv static-libs
 
 DEPEND=iconv? ( virtual/libiconv )



1.49 dev-libs/ptexenc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ptexenc/ChangeLog?rev=1.49view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ptexenc/ChangeLog?rev=1.49content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ptexenc/ChangeLog?r1=1.48r2=1.49

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/ptexenc/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog   14 Jul 2015 12:49:06 -  1.48
+++ ChangeLog   22 Jul 2015 19:15:54 -  1.49
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/ptexenc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/ptexenc/ChangeLog,v 1.48 
2015/07/14 12:49:06 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/ptexenc/ChangeLog,v 1.49 
2015/07/22 19:15:54 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  ptexenc-1.3.2_p20140525-r1.ebuild:
+  Stable for ppc, bug #550840.
 
 *ptexenc-1.3.3_p20150521 (14 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-tex/bibtexu: bibtexu-3.71_p20140525.ebuild ChangeLog

2015-07-22 Thread Anthony G. Basile (blueness)
blueness15/07/22 19:23:32

  Modified: bibtexu-3.71_p20140525.ebuild ChangeLog
  Log:
  Stable for ppc, bug #550840.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  dev-tex/bibtexu/bibtexu-3.71_p20140525.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/bibtexu/bibtexu-3.71_p20140525.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/bibtexu/bibtexu-3.71_p20140525.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/bibtexu/bibtexu-3.71_p20140525.ebuild?r1=1.4r2=1.5

Index: bibtexu-3.71_p20140525.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-tex/bibtexu/bibtexu-3.71_p20140525.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bibtexu-3.71_p20140525.ebuild   15 Jul 2015 09:44:17 -  1.4
+++ bibtexu-3.71_p20140525.ebuild   22 Jul 2015 19:23:32 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-tex/bibtexu/bibtexu-3.71_p20140525.ebuild,v 1.4 
2015/07/15 09:44:17 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-tex/bibtexu/bibtexu-3.71_p20140525.ebuild,v 1.5 
2015/07/22 19:23:32 blueness Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=doc source
 
 RDEPEND==dev-libs/kpathsea-6.2.0



1.52 dev-tex/bibtexu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/bibtexu/ChangeLog?rev=1.52view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/bibtexu/ChangeLog?rev=1.52content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/bibtexu/ChangeLog?r1=1.51r2=1.52

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-tex/bibtexu/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog   15 Jul 2015 10:10:14 -  1.51
+++ ChangeLog   22 Jul 2015 19:23:32 -  1.52
@@ -1,6 +1,10 @@
 # ChangeLog for dev-tex/bibtexu
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtexu/ChangeLog,v 1.51 2015/07/15 
10:10:14 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtexu/ChangeLog,v 1.52 2015/07/22 
19:23:32 blueness Exp $
+
+  22 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  bibtexu-3.71_p20140525.ebuild:
+  Stable for ppc, bug #550840.
 
 *bibtexu-3.71_p20150521 (15 Jul 2015)
 






  1   2   3   4   5   6   7   8   9   10   >