Re: [gentoo-user] Compressed Filesystem

2010-01-03 Thread Helmut Jarausch
On  3 Jan, Enrico Weigelt wrote:
 Helmut Jarausch wrote:
 Hi,
 
 I'm looking for a working and maintained compressed filesystem.
 I'd like to use it for backing up my root and my /usr filesystems,
 so that I can use rsync to keep it up-to-date.
 
 Perhaps you could try venti+fossil or git.
 
Thanks, but I haven't found venti or fossil in Gentoo's tree.
Are there any ebuilds around?

Helmut.

-- 
Helmut Jarausch

Lehrstuhl fuer Numerische Mathematik
RWTH - Aachen University
D 52056 Aachen, Germany



Re: [gentoo-user] Compressed Filesystem

2010-02-05 Thread Enrico Weigelt
Helmut Jarausch wrote:
 On  3 Jan, Enrico Weigelt wrote:
 Helmut Jarausch wrote:
 Hi,

 I'm looking for a working and maintained compressed filesystem.
 I'd like to use it for backing up my root and my /usr filesystems,
 so that I can use rsync to keep it up-to-date.
 Perhaps you could try venti+fossil or git.

 Thanks, but I haven't found venti or fossil in Gentoo's tree.
 Are there any ebuilds around?

plan9port


 
 Helmut.
 


-- 
--
 Enrico Weigelt, metux IT service -- http://www.metux.de/

 cellphone: +49 174 7066481   email: i...@metux.de   skype: nekrad666
--
 Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme
--




Re: [gentoo-user] Compressed Filesystem

2010-01-02 Thread Enrico Weigelt
Helmut Jarausch wrote:
 Hi,
 
 I'm looking for a working and maintained compressed filesystem.
 I'd like to use it for backing up my root and my /usr filesystems,
 so that I can use rsync to keep it up-to-date.

Perhaps you could try venti+fossil or git.

cu
-- 
--
 Enrico Weigelt, metux IT service -- http://www.metux.de/

 cellphone: +49 174 7066481   email: i...@metux.de   skype: nekrad666
--
 Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme
--




[gentoo-user] dev-db/sqlite-3.32.3-r1 requires tcl ?!

2020-08-08 Thread Walter Dnes
  I noticed when setting up my notebook that tcl got pulled in.  The
culprit is dev-db/sqlite-3.32.3-r1.  Note the "-tcl" USE flag.

[thimk][root][~] emerge -pv1 sqlite   

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R] dev-db/sqlite-3.32.3-r1:3::gentoo  USE="readline -debug -doc 
-icu -secure-delete -static-libs -tcl -test -tools" 0 KiB

  But sqlite-3.32.3-r1.ebuild shows...

=
if [[ "${PV}" == "" ]]; then
BDEPEND=">=dev-lang/tcl-8.6:0
dev-vcs/fossil"
else
BDEPEND="app-arch/unzip
>=dev-lang/tcl-8.6:0"
fi
=

  Which is it?  If tcl is required, then the "tcl" USE flag is misleading
and pointless, and should not show up.

-- 
Walter Dnes 
I don't run "desktop environments"; I run useful applications



Re: [gentoo-user] dev-db/sqlite-3.32.3-r1 requires tcl ?!

2020-08-08 Thread cal

On 2020-08-08 10:57, Walter Dnes wrote:

I noticed when setting up my notebook that tcl got pulled in.  The
culprit is dev-db/sqlite-3.32.3-r1.  Note the "-tcl" USE flag.

[thimk][root][~] emerge -pv1 sqlite

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R] dev-db/sqlite-3.32.3-r1:3::gentoo  USE="readline
-debug -doc -icu -secure-delete -static-libs -tcl -test -tools" 0 KiB

  But sqlite-3.32.3-r1.ebuild shows...

=
if [[ "${PV}" == "" ]]; then
BDEPEND=">=dev-lang/tcl-8.6:0
dev-vcs/fossil"
else
BDEPEND="app-arch/unzip
>=dev-lang/tcl-8.6:0"
fi
=

  Which is it?  If tcl is required, then the "tcl" USE flag is 
misleading

and pointless, and should not show up.


BDEPEND indicates a build-time dependency on Tcl; I think SQLite3's 
build

system has a hard dependency on Tcl.  The "tcl" USE flag is likely
controlling whether or not the Tcl interface included with SQLite3 is
built and installed.

[I am not a maintainer of this package]



Re: [gentoo-user] How to veiw absolute latest on partage without syncing

2009-06-12 Thread Mike Kazantsev
On Fri, 12 Jun 2009 09:45:27 -0700
Mark Knecht markkne...@gmail.com wrote:

 I've wanted a way to do something like this for a long time. One
 problem with the way portage works with ( I guess) rsync or whatever
 it uses is that when someone decides to remove a package from portage
 that I'm currently using syncing removes it from my system also.
 Unfortunately before I do the sync I have no idea it has been removed
 so I don't know that it's going to get taken off my system. Once it
 does I can go find a copy and put it in a personal overlay but that
 requires I do the work after the damage is done. It would be nice if
 there was a message ahead of time that told me certain packages were
 going to be removed, etc., before it was actually done, but I
 understand from previous conversations that syncing doesn't work that
 way.

But why not?

  alias emerge-sync='rm -Rf /usr/portage.bak  mv /usr/portage{,.bak} \
 emerge --sync

and to make.conf goes:

  PORTAGE_RSYNC_OPTS=--link-dest=/usr/portage.bak $PORTAGE_RSYNC_OPTS

And there you go: hardlinked new tree w/ old one easily accessible.
Note that it won't take much more time or bandwith or space than syncing
on top of the older tree, since same check will see that the files
in .bak dir and remote tree are identical and will just create another
hardlink to the same file.
And you're free to dispose of any dir with rm -Rf when you see fit.

Simple three-line no-brainer script will help you keep 10, 100, 1000 or
however many trees you like, occupying just a few MB more than a single
tree.

Furthermore, if you want to keep a hundred-year history of this tree,
just say something like this:

  cd /usr/portage
  echo -e local\ndistfiles\npackages  .gitignore
  git init
  git add .
  git commit -a -m portage bump

  alias emerge-sync='cd /usr/portage  git add . \
 git commit -a -m portage bump  emerge --sync'

and there you go, you'll never loose even a single bit of ebuild, no
matter how many times a day you keep syncing.
And .git storage will keep storage requiments of the whole thing to
minimum, keeping each change in the single place, compressing them,
etc...

Git-foo is too cryptic? There are few dozens of other VCS, of, for that
matter, ways to keep track of changes: snapshots, fs like venti/fossil,
rdup, even cp/tar.

Guess funtoo project is also worth mention in such context since it
uses git instead of rsync out-of-the-box.


 This has come up numerous times for me on older hardware where, for
 instance, maybe some on-board graphics chip only works with older ATI
 drivers, and that ATI driver only works with older kernels. By the
 time sync is done I've lost the code for what my system is running,
 and unfortunately there's no messages that this is happening when I'm
 doing the sync so maybe I only figure it out a few weeks later and
 then have to mess around building an overlay using the attic.

No dev can ever satisfy every requiment of everyone if they are too
lazy to lift a finger to type a line or two themselves.


-- 
Mike Kazantsev // fraggod.net


signature.asc
Description: PGP signature


[gentoo-user] More troubles with major update

2010-11-01 Thread Harry Putnam
:08 2010  dev-perl/File-HomeDir-0.93
Tue Oct 26 22:43:53 2010  dev-perl/DBI-1.615
Tue Oct 26 22:44:07 2010  virtual/perl-IO-Compress-2.030
Tue Oct 26 22:44:21 2010  virtual/perl-ExtUtils-ParseXS-2.22.06
Tue Oct 26 22:44:51 2010  perl-core/Archive-Tar-1.68
Tue Oct 26 22:45:06 2010  virtual/perl-Archive-Tar-1.68
Tue Oct 26 22:45:34 2010  dev-perl/HTML-Tree-4.0
Tue Oct 26 22:45:59 2010  dev-perl/Path-Class-0.21
Tue Oct 26 22:46:28 2010  dev-perl/Mail-SPF-2.007-r1
Tue Oct 26 22:47:00 2010  x11-proto/xproto-7.0.18
Tue Oct 26 22:47:29 2010  x11-proto/xextproto-7.1.2
Tue Oct 26 22:47:59 2010  x11-proto/kbproto-1.0.5
Tue Oct 26 22:48:27 2010  x11-proto/renderproto-0.11.1
Tue Oct 26 22:52:26 2010  dev-libs/libgcrypt-1.4.6
Tue Oct 26 22:56:02 2010  dev-db/sqlite-3.7.2
Tue Oct 26 22:57:18 2010  x11-libs/pixman-0.18.4
Tue Oct 26 22:58:18 2010  sys-apps/usbutils-0.90
Tue Oct 26 22:58:43 2010  x11-misc/util-macros-1.10.1
Tue Oct 26 22:59:13 2010  x11-proto/videoproto-2.3.1
Tue Oct 26 22:59:58 2010  x11-libs/libdrm-2.4.22
Tue Oct 26 23:00:40 2010  x11-libs/libpciaccess-0.12.0
Tue Oct 26 23:04:03 2010  dev-lang/orc-0.4.10
Tue Oct 26 23:05:37 2010  net-libs/libnfsidmap-0.23-r1
Tue Oct 26 23:07:43 2010  sys-boot/grub-0.97-r10
Tue Oct 26 23:11:52 2010  media-libs/libsndfile-1.0.22
Tue Oct 26 23:12:31 2010  x11-libs/libXau-1.0.6
Tue Oct 26 23:18:54 2010  dev-libs/nss-3.12.8
Tue Oct 26 23:19:24 2010  x11-apps/rgb-1.0.4
Tue Oct 26 23:24:00 2010  media-libs/schroedinger-1.0.10
Tue Oct 26 23:33:59 2010  dev-libs/openssl-1.0.0a-r3
Tue Oct 26 23:37:27 2010  net-misc/curl-7.21.1
Tue Oct 26 23:37:59 2010  net-misc/iputils-20100418-r1
Tue Oct 26 23:48:43 2010  dev-libs/openssl-0.9.8o-r2
Tue Oct 26 23:49:52 2010  dev-vcs/fossil-20100918155143
Tue Oct 26 23:53:47 2010  net-misc/ntp-4.2.6_p2-r1
Tue Oct 26 23:59:15 2010  net-dns/bind-tools-9.7.2_p2
Tue Oct 26 23:59:51 2010  dev-perl/Crypt-SSLeay-0.58
Wed Oct 27 00:00:31 2010  dev-perl/libwww-perl-5.837
Wed Oct 27 00:01:04 2010  dev-perl/WWW-Mechanize-1.66
Wed Oct 27 00:01:23 2010  x11-base/xorg-drivers-1.9
Wed Oct 27 00:08:53 2010  sys-kernel/gentoo-sources-2.6.35-r10
Wed Oct 27 00:17:16 2010  dev-lang/python-2.6.5-r3
Wed Oct 27 00:18:17 2010  dev-python/pycrypto-2.3
Wed Oct 27 00:19:25 2010  dev-vcs/mercurial-1.6.4
Wed Oct 27 00:25:22 2010  net-analyzer/nmap-5.35
Wed Oct 27 00:28:49 2010  net-libs/neon-0.29.4
Wed Oct 27 00:29:17 2010  dev-perl/XML-SAX-Writer-0.53
Wed Oct 27 00:37:17 2010  dev-lang/python-3.1.2-r4
Wed Oct 27 00:39:49 2010  dev-python/setuptools-0.6.14
Wed Oct 27 00:58:53 2010  dev-python/cython-0.13
Wed Oct 27 01:01:08 2010  x11-libs/libxcb-1.7
Wed Oct 27 01:02:23 2010  sys-libs/cracklib-2.8.18
Wed Oct 27 01:24:56 2010  dev-python/numpy-1.5.0-r2
Wed Oct 27 01:29:08 2010  x11-libs/libX11-1.3.6
Wed Oct 27 01:31:03 2010  dev-vcs/bzr-2.2.0
Wed Oct 27 01:31:49 2010  x11-libs/libXext-1.1.2-r1
Wed Oct 27 01:34:25 2010  media-libs/freetype-2.4.3
Wed Oct 27 01:35:01 2010  x11-apps/luit-1.1.0
Wed Oct 27 01:35:34 2010  x11-apps/xwininfo-1.1.0-r1
Wed Oct 27 01:40:37 2010  media-libs/netpbm-10.51.00-r1
Wed Oct 27 01:41:08 2010  x11-apps/xlsclients-1.1.1
Wed Oct 27 01:41:41 2010  x11-apps/xmodmap-1.0.5
Wed Oct 27 01:42:13 2010  x11-apps/xcmsdb-1.0.3
Wed Oct 27 01:44:08 2010  x11-libs/libXi-1.3.1
Wed Oct 27 01:45:22 2010  x11-libs/libXfont-1.4.2
Wed Oct 27 01:45:59 2010  x11-libs/libvdpau-0.4.1
Wed Oct 27 01:46:31 2010  x11-apps/setxkbmap-1.2.0
Wed Oct 27 01:47:05 2010  x11-apps/xrandr-1.3.3
Wed Oct 27 01:47:35 2010  x11-apps/xcursorgen-1.0.4
Wed Oct 27 01:48:27 2010  media-fonts/dejavu-2.32
Wed Oct 27 01:49:19 2010  media-libs/libass-0.9.11
Wed Oct 27 01:54:59 2010  x11-libs/cairo-1.10.0-r3
Wed Oct 27 01:55:34 2010  x11-libs/libXvMC-1.0.6
Wed Oct 27 01:55:46 2010  app-admin/eselect-xvmc-0.2
Wed Oct 27 02:06:28 2010  sys-devel/gettext-0.18.1.1-r1
Wed Oct 27 02:18:36 2010  dev-libs/glib-2.24.2
Wed Oct 27 02:20:45 2010  sys-devel/bison-2.4.3
Wed Oct 27 02:25:17 2010  sys-apps/util-linux-2.18-r1
Wed Oct 27 02:27:58 2010  sys-apps/findutils-4.5.9
Wed Oct 27 02:33:32 2010  sys-apps/coreutils-8.5-r1
Wed Oct 27 02:34:37 2010  sys-libs/e2fsprogs-libs-1.41.12
Wed Oct 27 02:35:34 2010  app-editors/nano-2.2.5
Wed Oct 27 02:37:15 2010  sys-apps/grep-2.7
Wed Oct 27 02:38:51 2010  net-misc/wget-1.12-r2
Wed Oct 27 02:41:48 2010  app-arch/tar-1.23-r4
Wed Oct 27 02:43:06 2010  sys-process/psmisc-22.13
Wed Oct 27 02:46:31 2010  dev-lang/yasm-1.1.0
Wed Oct 27 02:51:10 2010  app-portage/eix-0.22.2
Wed Oct 27 02:54:41 2010  www-client/lynx-2.8.8_pre5
Wed Oct 27 02:57:47 2010  app-text/recode-3.6_p17-r2
Wed Oct 27 02:59:09 2010  app-text/iso-codes-3.21
Wed Oct 27 02:59:32 2010  app-admin/eselect-1.2.11
Wed Oct 27 03:04:01 2010  x11-libs/pango-1.28.3
Wed Oct 27 03:05:42 2010  sys-fs/udev-162
Wed Oct 27 04:53:10 2010  sys-devel/gcc-4.4.4-r2
Wed Oct 27 04:53:50 2010  x11-misc/shared-mime-info-0.80
Wed Oct 27 04:56:35 2010  dev-python/pygobject-2.20.0-r1
Wed Oct 27 04:57:50 2010  dev-libs/libtasn1-2.8
Wed Oct 27 04