Re: [gentoo-portage-dev] bin/isolated-functions.sh USERLAND setting

2022-07-28 Thread Arfrever Frehtes Taifersar Arahesis
2022-07-28 17:47 UTCに、Fabian Groffen は書いた: > bin/isolated-functions.sh does the following bit: > > if [[ -z ${USERLAND} ]] ; then >case $(uname -s) in >*BSD|DragonFly) >export USERLAND="BSD" >;; >*) >export USERLAND="GNU" >;; >esac > fi > > (after

Re: [gentoo-portage-dev] [PATCH] emake: explicitly set SHELL

2022-07-28 Thread Arfrever Frehtes Taifersar Arahesis
2022-07-26 07:03 UTCに、Florian Schmaus は書いた: > But then I wondered if "make SHELL=$BROOT/bin/sh" wouldn't override > explicitly set SHELL values in Makefiles. Assume a package has > > SHELL = /bin/zsh > > in one of its Makefiles. Then emake would reset this to 'sh'. Which > appears like it could

Re: [gentoo-portage-dev] [PATCH] install-qa-check.d: Add a QA check for installing xattrs

2021-09-29 Thread Arfrever Frehtes Taifersar Arahesis
Not relying on preservation of xatrs would be a gentoo.git tree policy. If such policy is created, new QA check file would belong in gentoo.git repository in metadata/install-qa-check.d directory, not in Portage repository. (And there is no need to delete any xattr-related code in Portage in

[gentoo-dev] llvm-libunwind global USE flag

2021-04-01 Thread Arfrever Frehtes Taifersar Arahesis
llvm-libunwind - Use sys-libs/llvm-libunwind instead of sys-libs/libunwind This would be similar to graphicsmagick and libressl USE flags. sys-libs/libunwind and sys-libs/llvm-libunwind are ABI-incompatible, at least due to different sonames of libraries. Switching between them requires

Re: [gentoo-dev] [PATCH] toolchain-funcs.eclass: new function tc-ld-force-bfd()

2021-01-20 Thread Arfrever Frehtes Taifersar Arahesis
Maybe one generic function (called e.g. tc-set-linker) whose arguments are a preference-ordered list of supported linkers? If currently used linker is not in the specified list, then this function would force using first found linker from that list. Forcing bfd only: tc-set-linker bfd Forcing

Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in dev-libs/libuv: libuv-1.2.1.ebuild ChangeLog

2015-01-19 Thread Arfrever Frehtes Taifersar Arahesis
. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

[gentoo-portage-dev] [PATCH] emerge --verbose --quiet-repo-display: Delete deprecated code

2014-12-13 Thread Arfrever Frehtes Taifersar Arahesis
Frehtes Taifersar Arahesis --- pym/_emerge/resolver/output_helpers.py +++ pym/_emerge/resolver/output_helpers.py @@ -39,24 +39,13 @@ self._unknown_repo = False repo_paths = set() for root_config in roots.values(): - portdir = root_config.settings.get(PORTDIR) - if portdir

[gentoo-portage-dev] [PATCH] portageq pquery: Search ebuilds in all repositories be default

2014-12-13 Thread Arfrever Frehtes Taifersar Arahesis
[[[ portageq pquery: Search ebuilds in all repositories be default. --all-repos option is no longer supported. 1 call to deprecated portage.repository.config.RepoConfigLoader.mainRepo() function has been deleted. ]]] -- Arfrever Frehtes Taifersar Arahesis --- bin/portageq +++ bin/portageq

[gentoo-portage-dev] [PATCH] portage.dbapi.bintree.binarytree: Delete PORTDIR-reliant microoptimization in index of binary packages

2014-12-13 Thread Arfrever Frehtes Taifersar Arahesis
[[[ portage.dbapi.bintree.binarytree: Delete PORTDIR-reliant microoptimization in index of binary packages. This microoptimization cannot work when no main repository exists. ]]] -- Arfrever Frehtes Taifersar Arahesis --- pym/portage/dbapi/bintree.py +++ pym/portage/dbapi/bintree.py @@ -360,16

[gentoo-portage-dev] [PATCH] portage.tests.dbapi.test_portdb_cache: Delete deprecated code.

2014-12-13 Thread Arfrever Frehtes Taifersar Arahesis
[[[ portage.tests.dbapi.test_portdb_cache: Delete deprecated code. 9 calls to deprecated portage.repository.config.RepoConfigLoader.mainRepoLocation() function have been deleted. ]]] -- Arfrever Frehtes Taifersar Arahesis --- pym/portage/tests/dbapi/test_portdb_cache.py +++ pym/portage/tests

[gentoo-portage-dev] [PATCH] portage.tests.glsa.test_security_set: Delete deprecated code

2014-12-13 Thread Arfrever Frehtes Taifersar Arahesis
[[[ portage.tests.glsa.test_security_set: Delete deprecated code. 1 call to deprecated portage.repository.config.RepoConfigLoader.mainRepoLocation() function has been deleted. ]]] -- Arfrever Frehtes Taifersar Arahesis --- pym/portage/tests/glsa/test_security_set.py +++ pym/portage/tests/glsa

Re: [gentoo-portage-dev] [PATCH] emerge --info: Check metadata/timestamp.chk in all repositories

2014-12-13 Thread Arfrever Frehtes Taifersar Arahesis
New patch without os.path.isfile(). [[[ emerge --info: Check metadata/timestamp.chk in all repositories. 1 use of deprecated PORTDIR has been deleted. ]]] -- Arfrever Frehtes Taifersar Arahesis --- pym/_emerge/actions.py +++ pym/_emerge/actions.py @@ -1452,6 +1452,7 @@ vardb = trees[eroot

Re: [gentoo-portage-dev] [PATCH] emerge --info: Modernize output of configuration of repositories

2014-12-12 Thread Arfrever Frehtes Taifersar Arahesis
[[[ emerge --info: Modernize output of configuration of repositories. - Always print detailed configuration of repositories. - Always skip PORTAGE_REPOSITORIES variable. - Always skip deprecated PORTDIR, PORTDIR_OVERLAY and SYNC variables. ]]] -- Arfrever Frehtes Taifersar Arahesis --- pym

[gentoo-portage-dev] [PATCH] emerge --info: Always print ::repository

2014-12-12 Thread Arfrever Frehtes Taifersar Arahesis
[[[ emerge --info: Always print ::repository. 1 call to deprecated portage.repository.config.RepoConfigLoader.mainRepo() function has been deleted. ]]] -- Arfrever Frehtes Taifersar Arahesis --- pym/_emerge/actions.py +++ pym/_emerge/actions.py @@ -42,7 +42,7 @@ from portage.const import

Re: [gentoo-portage-dev] [PATCH] Almost always print ::repository

2014-12-10 Thread Arfrever Frehtes Taifersar Arahesis
[[[ Almost always print ::repository in list of packages for installation. --verbose-main-repo-display option is no longer supported. 3 calls to deprecated portage.repository.config.RepoConfigLoader.mainRepo() function have been deleted. ]]] -- Arfrever Frehtes Taifersar Arahesis --- man/emerge

Re: [gentoo-portage-dev] [PATCH] emerge --info: Modernize output of configuration of repositories

2014-12-09 Thread Arfrever Frehtes Taifersar Arahesis
2014-12-09 09:50 Alexander Berntsen napisał(a): On 08/12/14 20:04, Arfrever Frehtes Taifersar Arahesis wrote: + for skipped_var in skipped_vars: + try: + myvars.remove(skipped_var) +except ValueError: + pass + wat It is deleting elements

Re: [gentoo-portage-dev] [PATCH] Almost always print ::repository

2014-12-09 Thread Arfrever Frehtes Taifersar Arahesis
. Also, I would prefer to remove the old option entirely. OK. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

[gentoo-portage-dev] [PATCH] emerge --info: Modernize output of configuration of repositories

2014-12-08 Thread Arfrever Frehtes Taifersar Arahesis
[[[ emerge --info: Modernize output of configuration of repositories. - Always print detailed configuration of repositories. - Always skip PORTAGE_REPOSITORIES variable. - Always skip deprecated PORTDIR, PORTDIR_OVERLAY and SYNC variables. ]]] -- Arfrever Frehtes Taifersar Arahesis --- pym

[gentoo-portage-dev] [PATCH] Sort PORTAGE_ARCHLIST

2014-12-08 Thread Arfrever Frehtes Taifersar Arahesis
x86 ppc arm64 I suggest to make it predictable. [[[ Sort PORTAGE_ARCHLIST. ]]] -- Arfrever Frehtes Taifersar Arahesis --- pym/portage/package/ebuild/config.py +++ pym/portage/package/ebuild/config.py @@ -779,7 +779,7 @@ archlist = [grabfile(os.path.join(x, arch.list)) \ for x

[gentoo-portage-dev] Support for per-repository per-attribute environmental variables

2014-12-08 Thread Arfrever Frehtes Taifersar Arahesis
of repositories. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-portage-dev] [PATCH] sync: allow overriding sync-user for the repository

2014-12-07 Thread Arfrever Frehtes Taifersar Arahesis
I would suggest to have a separate sync-group attribute and to support only user in sync-user attribute. signature.asc Description: This is a digitally signed message part.

Re: [gentoo-portage-dev] [PATCH] Apply 'nonfatal' to helpers only

2014-08-18 Thread Arfrever Frehtes Taifersar Arahesis
2014-08-18 11:02 Michał Górny napisał(a): Make 'nonfatal' modifier affect helpers only rather than disabling 'die' completely. This improves the PMS conformance. It is better to leave current code, until there is replacement functionality. -- Arfrever Frehtes Taifersar Arahesis signature.asc

Re: [gentoo-dev] don't rely on dynamic deps

2014-07-27 Thread Arfrever Frehtes Taifersar Arahesis
have to do: # echo ${new_repository} /var/db/pkg/${CATEGORY}/${PF}/repository # touch /var/db/pkg/${CATEGORY}/${PF} # touch /var/db/pkg/${CATEGORY} # touch /var/db/pkg (It is possible that updating of timestamps is not yet strictly required...) -- Arfrever Frehtes Taifersar Arahesis signature.asc

Re: [gentoo-portage-dev] Helping out

2014-01-07 Thread Arfrever Frehtes Taifersar Arahesis
) mainRepo (outside pym/portage/repository/config.py) mainRepoLocation (outside pym/portage/repository/config.py) porttree_root -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-portage-dev] [PATCH] make.conf.5: Document PYTHON_TARGETS, bug #493180

2013-12-03 Thread Arfrever Frehtes Taifersar Arahesis
Portage's documentation is inappropriate place for this. Please do not commit this patch. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-portage-dev] [PATCH] Further document repos.conf

2013-12-02 Thread Arfrever Frehtes Taifersar Arahesis
2013-12-02 01:28 Alexander Berntsen napisał(a): Another trivial one. Fixes bug #491426. Wrong section (/etc/portage/make.profile/ or /etc/make.profile/ instead of /etc/portage/). I will fix it. When changing a manual, please remember to update date in first line in manual. -- Arfrever Frehtes

Re: [gentoo-portage-dev] [PATCH] xattr: centralize the various shims in one place

2013-10-22 Thread Arfrever Frehtes Taifersar Arahesis
will work with an instance of io.StringIO class. (portage.elog.messages.eqawarn() and portage.elog.messages.ewarn() internally decode message, so they already work with out=io.StringIO, but not out=io.BytesIO.) -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally

Re: [gentoo-portage-dev] [PATCH v2] xattr: centralize the various shims in one place

2013-10-22 Thread Arfrever Frehtes Taifersar Arahesis
, encoding=_encodings['fs']): -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-portage-dev] [PATCH] xattr: centralize the various shims in one place

2013-10-16 Thread Arfrever Frehtes Taifersar Arahesis
') % + (_unicode_decode(dest), _unicode_decode(attr))) def movefile(src, dest, newmtime=None, sstat=None, mysettings=None, hardlink_candidates=None, encoding=_encodings['fs']): -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message

Re: [gentoo-portage-dev] [PATCH] xattr: centralize the various shims in one place

2013-10-16 Thread Arfrever Frehtes Taifersar Arahesis
2013-10-17 04:53 Mike Frysinger napisał(a): On Wednesday 16 October 2013 22:51:17 Mike Frysinger wrote: On Wednesday 16 October 2013 20:02:50 Arfrever Frehtes Taifersar Arahesis wrote: 2013-10-16 23:03 Mike Frysinger napisał(a): Rather than each module implementing its own shim

Re: [gentoo-dev] Re: [RFC] Policy for migrating library consumers to subslots

2013-09-26 Thread Arfrever Frehtes Taifersar Arahesis
://www.boost.org/users/history/ -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Marking of deprecated USE flags

2013-08-09 Thread Arfrever Frehtes Taifersar Arahesis
jruby - Build with JRuby -ree18 - Build with Ruby Enterprise Edition 1.8.x +ree18 - Build with Ruby Enterprise Edition 1.8.x (DEPRECATED) ruby18 - Build with MRI Ruby 1.8.x ruby19 - Build with MRI Ruby 1.9.x ruby20 - Build with MRI Ruby 2.0.x -- Arfrever Frehtes Taifersar Arahesis signature.asc

Re: [gentoo-dev] [RFC] SRC_URI behaviour

2013-06-16 Thread Arfrever Frehtes Taifersar Arahesis
setting of priority in /etc/portage/repos.conf for about 2.7 years. $ cat /etc/portage/repos.conf [name_of_overlay] priority = -1001 (`emerge --info -v` shows repositories with their priorities.) -- Arfrever Frehtes Taifersar Arahesis

Re: [gentoo-portage-dev] A way to prevent useless rebuild?

2013-01-20 Thread Arfrever Frehtes Taifersar Arahesis
system but on other machines I maintain it will take hours) sed -e s/\(^\| \)go\($\| \)/\1\2/;s/^ //;s/ / /g;s/ $// -i /var/db/pkg/sys-devel/gcc-4.6.3/IUSE touch /var/db/pkg/sys-devel/gcc-4.6.3 touch /var/db/pkg/sys-devel touch /var/db/pkg -- Arfrever Frehtes Taifersar Arahesis signature.asc

Re: [gentoo-dev] [RFC] Dropping slotted boost

2012-10-30 Thread Arfrever Frehtes Taifersar Arahesis
boost-utils.eclass with BOOST_MAX_SLOT set to 1.50. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Maintainer needed: dev-libs/icu

2012-10-30 Thread Arfrever Frehtes Taifersar Arahesis
to build it against ICU 50 after stabilization of ICU 50. [1] http://blog.flameeyes.eu/2010/08/fixed-in-overlay-read-not-fixed [2] http://bugs.python.org/issue15925 http://bugs.python.org/issue15926 -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally

Re: [gentoo-dev] Maintainer needed: dev-libs/icu

2012-10-30 Thread Arfrever Frehtes Taifersar Arahesis
2012-10-31 04:18:14 Arfrever Frehtes Taifersar Arahesis napisał(a): Besides founding problems in about 10% of packages s/founding/finding/ -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Maintainer needed: dev-libs/icu

2012-10-28 Thread Arfrever Frehtes Taifersar Arahesis
of this one. I am actively maintaining ICU and test many reverse dependencies with new versions of ICU (using a not package.masked version of GCC). Members of proxy-maintainers team or others actively commit fixes/updates, so there is no need to change current situation. -- Arfrever Frehtes

Re: [gentoo-dev] About disabling DISABLE_DEPRECATED

2012-10-07 Thread Arfrever Frehtes Taifersar Arahesis
. Direct invocation as either egrep or fgrep is deprecated, but is provided to allow historical applications that rely on them to run unmodified. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] GLEP: gentoo sync based unified deps proposal

2012-09-17 Thread Arfrever Frehtes Taifersar Arahesis
for types of dependencies. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] [PATCH] boost-utils.eclass -- for building against newest boost.

2012-09-09 Thread Arfrever Frehtes Taifersar Arahesis
currently fail to build/work with Boost =1.51, so BOOST_MAX_VERSION=1.50 would have to be used in all ebuilds of package X. (Boost 1.49 would be used for stable users and Boost 1.50 would be used for unstable users.) -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally

Re: [gentoo-dev] [PATCH] boost-utils.eclass -- for building against newest boost.

2012-09-08 Thread Arfrever Frehtes Taifersar Arahesis
BOOST_MAX_VERSION atom=$(best_version dev-libs/boost-${BOOST_MAX_VERSION%.*}.$((${BOOST_MAX_VERSION#*.}+1))_alpha) slot=$(get_version_component_range 1-2 ${atom#dev-libs/boost-}) -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] [PATCH] boost-utils.eclass -- for building against newest boost.

2012-08-27 Thread Arfrever Frehtes Taifersar Arahesis
of some possibilities: * BOOST_MAX_SLOT=1.49 global variable * '--max 1.49' arguments for boost-utils_get_* functions -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] autotools.eclass no longer inherits eutils; check your ebuilds!

2012-05-21 Thread Arfrever Frehtes Taifersar Arahesis
and versionator.eclass, which inherit eutils.eclass. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Re: Proposal of accepting arguments to `default` in src_install (and more?) phases in EAPI=5 (for the next council meeting?)

2012-05-14 Thread Arfrever Frehtes Taifersar Arahesis
! All matches in eclasses and some matches in ebuilds are false positives. -- Arfrever Frehtes Taifersar Arahesis

Re: [gentoo-dev] add global useflag: webkit

2012-05-06 Thread Arfrever Frehtes Taifersar Arahesis
2012-05-06 02:34:26 hasufell napisał(a): # grep :webkit use.local.desc | wc -l 33 I would vote to make this a global useflag: webkit - Adds support for the webkit library/module I suggest to use separate qt-webkit (or webkit-qt) and webkit-gtk USE flags. -- Arfrever Frehtes Taifersar

Re: [gentoo-dev] add global useflag: webkit

2012-05-06 Thread Arfrever Frehtes Taifersar Arahesis
2012-05-07 03:00:31 hasufell napisał(a): On 05/07/2012 02:47 AM, Arfrever Frehtes Taifersar Arahesis wrote: 2012-05-06 02:34:26 hasufell napisał(a): # grep :webkit use.local.desc | wc -l 33 I would vote to make this a global useflag: webkit - Adds support for the webkit library

Re: [gentoo-dev] Fix spurious dep to eselect-python

2012-03-20 Thread Arfrever Frehtes Taifersar Arahesis
or dev-python/pypy. See bug #341037. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Fix spurious dep to eselect-python

2012-03-20 Thread Arfrever Frehtes Taifersar Arahesis
2012-03-20 17:53:56 Michał Górny napisał(a): On Tue, 20 Mar 2012 17:41:39 +0100 Arfrever Frehtes Taifersar Arahesis arfre...@gentoo.org wrote: 2012-03-20 05:29:20 Luca Barbato napisał(a): Hi, I tried to avoid depending on eselect-python if the useflag is disabled. Please test

[gentoo-dev] Re: [gentoo-python] New eclass for Python

2012-03-03 Thread Arfrever Frehtes Taifersar Arahesis
2012-02-28 22:13:36 Krzysztof Pawlik napisał(a): - uses PYTHON_TARGETS use-expand You cannot painlessly use USE flags for this purpose in gentoo-x86 without support for use.unsatisfiable. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message

Re: [gentoo-dev] Re: New global USE flag neon for ARM NEON optimization(s)

2012-01-18 Thread Arfrever Frehtes Taifersar Arahesis
. i'd counter that with a few points: (1) i don't think there are any packages in the tree that have optional neon (the library) support http://qa-reports.gentoo.org/output/genrdeps/rindex/net-libs/neon lists 6 packages, which optionally depend on net-libs/neon. -- Arfrever Frehtes Taifersar

[gentoo-dev] Re: proj/portage:master commit in: pym/portage/dbapi/

2011-11-27 Thread Arfrever Frehtes Taifersar Arahesis
2011-11-26 11:58:22 Fabian Groffen napisał(a): On 26-11-2011 01:54:35 +, Arfrever Frehtes Taifersar Arahesis wrote: commit: 1d4ac47c28706094230cb2c4e6ee1c1c71629aa0 T Org AuthorDate: Sat Nov 26 01:52:49 2011 + Commit: Arfrever Frehtes Taifersar Arahesis arfrever AT gentoo

Re: [gentoo-dev] Fwd: [gentoo-dev-announce] Call for items for September 13 council meeting

2011-09-15 Thread Arfrever Frehtes Taifersar Arahesis
and not allow dots in USE flags. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Fwd: [gentoo-dev-announce] Call for items for September 13 council meeting

2011-09-15 Thread Arfrever Frehtes Taifersar Arahesis
2011-09-16 01:54:44 Brian Harring napisał(a): On Fri, Sep 16, 2011 at 01:21:55AM +0200, Arfrever Frehtes Taifersar Arahesis wrote: 2011-09-15 09:55:08 Ciaran McCreesh napisał(a): On Thu, 15 Sep 2011 09:35:21 +0200 Michał Górny mgo...@gentoo.org wrote: Could you point me to at least

Re: [gentoo-dev] Fwd: [gentoo-dev-announce] Call for items for September 13 council meeting

2011-09-08 Thread Arfrever Frehtes Taifersar Arahesis
that their names include Python ABI), calls python_convert_shebangs() if they don't have appropriate shebangs, and calls python_generate_wrapper_scripts() to create appropriate wrapper scripts). -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] net-zope maintenance

2011-08-13 Thread Arfrever Frehtes Taifersar Arahesis
to overlay. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Re: POSIX capability in Gentoo

2011-08-02 Thread Arfrever Frehtes Taifersar Arahesis
=a133cb89d5279df7febcd0c8ab3890e2ccfb897a Maybe we need to spec VDB after all to avoid that kind of nonsense. I think that unmerge-orphans is a useful feature. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Turning eclasses upside down with new EAPIs (the python eclasses)

2011-07-27 Thread Arfrever Frehtes Taifersar Arahesis
the functionality to raw EAPI4, IIRC. python.eclass from python overlay supports EAPI=4. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Turning eclasses upside down with new EAPIs (the python eclasses)

2011-07-27 Thread Arfrever Frehtes Taifersar Arahesis
there is no need for a new eclass. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] The Python problem

2011-06-29 Thread Arfrever Frehtes Taifersar Arahesis
installed files. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Thoughts about broken package handling

2011-06-29 Thread Arfrever Frehtes Taifersar Arahesis
/portage/env/${CATEGORY}/${PN}:${SLOT}. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] The Python problem

2011-06-29 Thread Arfrever Frehtes Taifersar Arahesis
) \ PYTHON_SITE_PACKAGES=$(python_get_sitedir) \ python_bindings } python_execute_function -s --source-dir bindings/python build_python_bindings fi } -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message

[gentoo-dev] PSF-2 license

2011-06-29 Thread Arfrever Frehtes Taifersar Arahesis
and will (slowly) replace PSF-2.2, PSF-2.3, PSF-2.4 and PYTHON in values of LICENSE in ebuilds. I'm attaching suggested PSF-2 file based on LICENSE file from default branch of Python upstream repository. -- Arfrever Frehtes Taifersar Arahesis PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2

Re: [gentoo-dev] PyXML

2011-05-17 Thread Arfrever Frehtes Taifersar Arahesis
2011-05-17 19:32:23 Markos Chandras napisał(a): On Tue, May 17, 2011 at 01:11:57PM -0400, Mark Loeser wrote: Arfrever Frehtes Taifersar Arahesis arfre...@gentoo.org said: PyXML is dead: http://mail.python.org/pipermail/xml-sig/2004-November/010735.html http://mail.python.org

Re: [gentoo-dev] PyXML

2011-05-17 Thread Arfrever Frehtes Taifersar Arahesis
2011-05-17 19:11:57 Mark Loeser napisał(a): Arfrever Frehtes Taifersar Arahesis arfre...@gentoo.org said: PyXML is dead: http://mail.python.org/pipermail/xml-sig/2004-November/010735.html http://mail.python.org/pipermail/xml-sig/2006-June/011545.html PyXML provides _xmlplus module

Re: [gentoo-dev] PyXML

2011-05-17 Thread Arfrever Frehtes Taifersar Arahesis
2011-05-17 20:24:16 Mark Loeser napisał(a): Arfrever Frehtes Taifersar Arahesis arfre...@gentoo.org said: I second that. Why do we need to make all the work fixing packages instead of letting upstream do their job? I am not so excited to fix every package I maintain as it is quite

Re: [gentoo-dev] PyXML

2011-05-17 Thread Arfrever Frehtes Taifersar Arahesis
2011-05-17 20:43:29 Tomáš Chvátal napisał(a): Dne 10.5.2011 23:21, Arfrever Frehtes Taifersar Arahesis napsal(a): PyXML is dead: http://mail.python.org/pipermail/xml-sig/2004-November/010735.html http://mail.python.org/pipermail/xml-sig/2006-June/011545.html PyXML provides _xmlplus

Re: [gentoo-dev] PyXML

2011-05-17 Thread Arfrever Frehtes Taifersar Arahesis
2011-05-17 21:21:48 Tomáš Chvátal napisał(a): Dne 17.5.2011 21:12, Arfrever Frehtes Taifersar Arahesis napsal(a): 2011-05-17 20:43:29 Tomáš Chvátal napisał(a): Dne 10.5.2011 23:21, Arfrever Frehtes Taifersar Arahesis napsal(a): PyXML is dead: http://mail.python.org/pipermail/xml-sig

Re: [gentoo-dev] PyXML

2011-05-11 Thread Arfrever Frehtes Taifersar Arahesis
2011-05-11 12:30:18 Tomáš Chvátal napisał(a): Dne 10.5.2011 23:21, Arfrever Frehtes Taifersar Arahesis napsal(a): PyXML is dead: http://mail.python.org/pipermail/xml-sig/2004-November/010735.html http://mail.python.org/pipermail/xml-sig/2006-June/011545.html PyXML provides _xmlplus

[gentoo-dev] PyXML

2011-05-10 Thread Arfrever Frehtes Taifersar Arahesis
() This code works with previous versions of Python, so no changes in dependencies are needed. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Re: Devmanual text on ChangeLogs

2011-05-02 Thread Arfrever Frehtes Taifersar Arahesis
--clearsign ChangeLog mv ChangeLog.asc ChangeLog). (Manifests wouldn't contain entries for ChangeLogs.) -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] python-namespaces.eclass

2011-04-30 Thread Arfrever Frehtes Taifersar Arahesis
installing Python namespaces. ^^^ This isn't a useful description. IMHO it's sufficient, but could you suggest some sentences of description? -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] python-namespaces.eclass

2011-04-30 Thread Arfrever Frehtes Taifersar Arahesis
2011-05-01 00:32:13 Brian Harring napisał(a): On Sat, Apr 30, 2011 at 11:27:47PM +0200, Arfrever Frehtes Taifersar Arahesis wrote: 2011-04-04 13:48:43 Brian Harring napisał(a): # @ECLASS: python-namespaces.eclass # @MAINTAINER: # Gentoo Python Project pyt...@gentoo.org

Re: [gentoo-dev] python-namespaces.eclass

2011-04-04 Thread Arfrever Frehtes Taifersar Arahesis
2011-04-04 12:04:44 Tomáš Chvátal napisał(a): Dne 4.4.2011 01:13, Arfrever Frehtes Taifersar Arahesis napsal(a): 2011-04-03 21:28:02 Tomáš Chvátal napisał(a): Dne 3.4.2011 19:38, Arfrever Frehtes Taifersar Arahesis napsal(a): I would like to add python-namespaces.eclass. This eclass

Re: [gentoo-dev] python-namespaces.eclass

2011-04-04 Thread Arfrever Frehtes Taifersar Arahesis
/namespaces-silva net-zope/namespaces-zc net-zope/namespaces-z3c The following packages will use both distutils.eclass and python-namespaces.eclass: dev-python/dap dev-python/flask dev-python/logilab-common dev-python/paste net-zope/kss-core -- Arfrever Frehtes Taifersar Arahesis signature.asc

[gentoo-dev] python-namespaces.eclass

2011-04-03 Thread Arfrever Frehtes Taifersar Arahesis
() -- Arfrever Frehtes Taifersar Arahesis # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ # @ECLASS: python-namespaces.eclass # @MAINTAINER: # Gentoo Python Project pyt...@gentoo.org # @BLURB: Eclass for packages installing Python

[gentoo-dev] Patch for distutils.eclass [2011-04-03]

2011-04-03 Thread Arfrever Frehtes Taifersar Arahesis
for arguments in some functions. Subpatch #12 adds unsetting of some internal functions after using of them. Subpatch #13 moves declaration of local variables to other places for consistency with python.eclass. I'm planning to commit this patch in 1 week. -- Arfrever Frehtes Taifersar Arahesis

[gentoo-dev] Re: python-namespaces.eclass

2011-04-03 Thread Arfrever Frehtes Taifersar Arahesis
2011-04-03 21:28:02 Tomáš Chvátal napisał(a): Dne 3.4.2011 19:38, Arfrever Frehtes Taifersar Arahesis napsal(a): I would like to add python-namespaces.eclass. This eclass will be used by a small number of special packages, which will provide Python namespaces. These packages

Re: [gentoo-dev] python.eclass EAPI 4 support

2011-03-22 Thread Arfrever Frehtes Taifersar Arahesis
you think? python.eclass maintainers are (slowly) working on support for EAPI=4. Please wait patiently. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Python 3.2 in the tree

2011-02-21 Thread Arfrever Frehtes Taifersar Arahesis
://bugs.gentoo.org/show_bug.cgi?id=python-3.2 -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Re: gentoo-x86/profiles/prefix/darwin/macos/10.4/x86: make.defaults

2011-02-13 Thread Arfrever Frehtes Taifersar Arahesis
2011-02-13 20:43:12 Fabian Groffen napisał(a): On 13-02-2011 16:53:40 +, Arfrever Frehtes Taifersar Arahesis wrote: arfrever11/02/13 16:53:40 Modified: make.defaults Log: Don't include ${USE} in the first assignment to USE in make.defaults files to avoid incorrect

Re: [gentoo-dev] EAPI usage in main tree

2011-01-25 Thread Arfrever Frehtes Taifersar Arahesis
using distutils.eclass, python_mod_optimize() or python_mod_cleanup() in old EAPIs, then it will be possible to remove large parts of python_mod_optimize() and python_mod_cleanup(). -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] EAPI usage in main tree

2011-01-25 Thread Arfrever Frehtes Taifersar Arahesis
have no real clue about how to write proper EAPI-3 ebuilds. You can use EAPI=3 without supporting prefix installations. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in sci-geosciences/mapserver: mapserver-5.4.2-r1.ebuild ChangeLog

2010-12-23 Thread Arfrever Frehtes Taifersar Arahesis
define python_src_unpack(). -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Summary of suggested new features in EAPI=4

2010-12-17 Thread Arfrever Frehtes Taifersar Arahesis
these solutions, which are suggested new features in EAPI=4. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Summary of suggested new features in EAPI=4

2010-12-17 Thread Arfrever Frehtes Taifersar Arahesis
2010-12-18 03:48:26 Donnie Berkholz napisał(a): On 02:45 Sat 18 Dec , Arfrever Frehtes Taifersar Arahesis wrote: Problem #1: USE flags cannot contain . characters. This isn't a problem, it's an arbitrary statement of an antifeature. My understanding of the actual problem here

[gentoo-dev] Re: [rfc] Sane defaults for USE_PYTHON, patch to python eclass

2010-12-07 Thread Arfrever Frehtes Taifersar Arahesis
versions. - You might break something outside of python.eclass. There is a plan (and patches) to introduce usage of USE flags for selection of requested Python versions. It will be available when a future EAPI supports dots in names of USE flags. -- Arfrever Frehtes Taifersar Arahesis

Re: [gentoo-dev] eclass review for Gnome 2.32 and waf ebuilds

2010-12-07 Thread Arfrever Frehtes Taifersar Arahesis
Why does waf-utils_pkg_setup() call 'python_set_active_version 2'? What do you plan to do when there are packages using waf and supporting Python 3? http://code.google.com/p/waf/ says: compatibility from Python 2.3 to 3.1 is maintained (and Jython 2.5) -- Arfrever Frehtes Taifersar Arahesis

Re: [gentoo-dev] Python 2.7 status check?

2010-11-29 Thread Arfrever Frehtes Taifersar Arahesis
2010-11-29 12:43 Sebastian Pipping sp...@gentoo.org napisał(a): On 11/29/10 02:35, Arfrever Frehtes Taifersar Arahesis wrote: Sebastian Pipping recently removed automatic upgrade of active version of Python, so python-2.7.1.ebuild does not upgrade active version of Python. The ebuilds you

Re: [gentoo-dev] Disabling auto-bumping of active Python version

2010-11-28 Thread Arfrever Frehtes Taifersar Arahesis
broke anything. You probably broke generation of stages :) . (I have restored a minimal version of eselect_python_update() in python overlay.) -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] EAPI versioning of files in profiles

2010-11-28 Thread Arfrever Frehtes Taifersar Arahesis
2010-11-16 00:41:35 Alex Alexander napisał(a): On Mon, Nov 15, 2010 at 07:40:44PM +0100, Arfrever Frehtes Taifersar Arahesis wrote: Some updates to my suggestion: - Files would optionally end with -${EAPI} suffix. - The following files would be affected: package.mask

Re: [gentoo-dev] Extending EAPI=4

2010-11-28 Thread Arfrever Frehtes Taifersar Arahesis
2010-11-19 16:51:03 Zac Medico napisał(a): On 10/25/2010 06:24 AM, Arfrever Frehtes Taifersar Arahesis wrote: use.unsatisfiable and package.use.unsatisfiable files would cause that `repoman` would treat given USE flags in the same way as masked USE flags. These files wouldn't affect

Re: [gentoo-dev] Extending EAPI=4

2010-11-28 Thread Arfrever Frehtes Taifersar Arahesis
2010-11-28 20:59:05 Zac Medico napisał(a): On 11/28/2010 10:15 AM, Arfrever Frehtes Taifersar Arahesis wrote: 2010-11-19 16:51:03 Zac Medico napisał(a): On 10/25/2010 06:24 AM, Arfrever Frehtes Taifersar Arahesis wrote: use.unsatisfiable and package.use.unsatisfiable files would cause

Re: [gentoo-dev] PYTHON_DEPEND in EAPI =4, PYTHON_BDEPEND

2010-11-28 Thread Arfrever Frehtes Taifersar Arahesis
2010-11-28 21:15:15 Markos Chandras napisał(a): On Sun, Nov 28, 2010 at 08:32:16PM +0100, Arfrever Frehtes Taifersar Arahesis wrote: I would like to introduce incompatible improvements in syntax of PYTHON_DEPEND variable in EAPI =4. The new syntax will depend on whether given package

Re: [gentoo-dev] PYTHON_DEPEND in EAPI =4, PYTHON_BDEPEND

2010-11-28 Thread Arfrever Frehtes Taifersar Arahesis
2010-11-28 21:20:31 Michał Górny napisał(a): On Sun, 28 Nov 2010 20:32:16 +0100 Arfrever Frehtes Taifersar Arahesis arfre...@gentoo.org wrote: PYTHON_DEPEND will be required. Otherwise each ${range_of_versions} should be included between and markers. Do we really need to introduce

Re: [gentoo-dev] Extending EAPI=4

2010-11-28 Thread Arfrever Frehtes Taifersar Arahesis
2010-11-28 21:30:47 Zac Medico napisał(a): On 11/28/2010 12:07 PM, Arfrever Frehtes Taifersar Arahesis wrote: 2010-11-28 20:59:05 Zac Medico napisał(a): It seems like you're trying to bypass an important function of repoman though. The idea is that repoman is supposed to protect users from

Re: [gentoo-dev] Python 2.7 status check?

2010-11-28 Thread Arfrever Frehtes Taifersar Arahesis
2010-11-29 01:26:19 Robin H. Johnson napisał(a): Presently in package.mask, we have this entry: # Arfrever Frehtes Taifersar Arahesis arfre...@gentoo.org (04 Jul 2010) # Python 2.7 masked until sufficient number of reverse dependencies is fixed. ~dev-lang/python-2.7 Well Python 2.7.1

Re: [gentoo-dev] PYTHON_DEPEND in EAPI =4, PYTHON_BDEPEND

2010-11-28 Thread Arfrever Frehtes Taifersar Arahesis
2010-11-29 01:24:50 Alex Alexander napisał(a): On 28 Nov 2010, at 22:20, Michał Górny mgo...@gentoo.org wrote: On Sun, 28 Nov 2010 20:32:16 +0100 Arfrever Frehtes Taifersar Arahesis arfre...@gentoo.org wrote: PYTHON_DEPEND will be required. Otherwise each ${range_of_versions} should

Re: [gentoo-dev] Re: PYTHON_DEPEND in EAPI =4, PYTHON_BDEPEND

2010-11-28 Thread Arfrever Frehtes Taifersar Arahesis
. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] EAPI versioning of files in profiles

2010-11-15 Thread Arfrever Frehtes Taifersar Arahesis
allow to handle such packages. -- Arfrever Frehtes Taifersar Arahesis signature.asc Description: This is a digitally signed message part.

  1   2   3   >