From aperto1973 at web.de Thu Jan 1 19:54:05 2009 From: aperto1973 at web.de (user) Date: Thu, 01 Jan 2009 14:54:05 -0500 Subject: [clbuild-devel] RFE: clbuild projects Message-ID: <1230839645.12471.2.camel@user-desktop> hi, it would be great if the output could list projects one project per line. This would ease feeding it into other filters such as grep and sort f.e. now: flexichain mcclim zip cxml closure gsharp climacs clim-desktop slime beirc alexandria trivial-features trivial-garbage cl+ssl trivial-gray-streams closure-common ... future (?): usocket cl-irc cl-ppcre .. happy new year! Adam From daniel at whitehouse.id.au Fri Jan 2 03:02:07 2009 From: daniel at whitehouse.id.au (Daniel White) Date: Fri, 2 Jan 2009 13:02:07 +1000 Subject: [clbuild-devel] RFE: clbuild projects In-Reply-To: <1230839645.12471.2.camel@user-desktop> References: <1230839645.12471.2.camel@user-desktop> Message-ID: <20090102130207.6f474661@whitehouse.id.au> On Thu, 01 Jan 2009 14:54:05 -0500 user wrote: > hi, > > it would be great if the output could list projects one project per > line. This would ease feeding it into other filters such as grep and > sort f.e. > > now: > flexichain mcclim zip cxml closure gsharp climacs clim-desktop slime > beirc alexandria trivial-features trivial-garbage cl+ssl > trivial-gray-streams closure-common ... > > future (?): > usocket > cl-irc > cl-ppcre > .. > Isn't 'clbuild list' sufficient? -- Daniel White From scott.clbuild at h4ck3r.net Mon Jan 5 00:46:55 2009 From: scott.clbuild at h4ck3r.net (Scott Graham) Date: Sun, 4 Jan 2009 16:46:55 -0800 Subject: [clbuild-devel] patch to add cl-cairo2 to projects In-Reply-To: <20090101062639.5270ccb7@whitehouse.id.au> References: <84decce20812311138g4fcb7df6l5fd46647495a5a2@mail.gmail.com> <20090101062639.5270ccb7@whitehouse.id.au> Message-ID: <84decce20901041646n3f9cf523veb0ce402ad839201@mail.gmail.com> Hi Sorry about that, here's a hopefully better attempt. scott On Wed, Dec 31, 2008 at 12:26 PM, Daniel White wrote: > On Wed, 31 Dec 2008 11:38:33 -0800 > "Scott Graham" wrote: > >> Attached is a patch to add cl-cairo2 to the list of projects (along >> with a few of its dependencies). "Works for me" on sbcl 1.0.18, ubuntu >> x64 & x86. > > A few things: > > - New projects are generally added to wnpp-projects first, > - trivial-garbage already exists, and > - common-lisp.net cvs projects have a shortcut: 'get_cvs_clnet'. > > -- > Daniel White > -------------- next part -------------- A non-text attachment was scrubbed... Name: clcairo2.diff Type: text/x-patch Size: 667 bytes Desc: not available URL: From bhyde at pobox.com Sat Jan 10 21:03:26 2009 From: bhyde at pobox.com (Ben Hyde) Date: Sat, 10 Jan 2009 16:03:26 -0500 Subject: [clbuild-devel] [PATCH] fix trash to trash project's registered system Message-ID: The following diff changes the trash command. It currently neglects to de-register the project's system files. This removes those symbolic links. An addition minor change to the working of the count_systems scratches my itch. I install project foo, and it says "60 system definition files registered" making me think project foo had 60 systems. --- old-clbuild/clbuild 2009-01-10 15:58:17.000000000 -0500 +++ new-clbuild/clbuild 2009-01-10 15:58:17.000000000 -0500 @@ -449,7 +449,7 @@ count_systems() { n_asd=`ls -1 "$system_dir"/*.asd | wc -l` - echo "$n_asd system definition files registered" + echo "$n_asd total system definition files now registered" } blank_line =" " @@ -1404,6 +1404,8 @@ else mkdir $trash fi + echo "deregistering system files of $1" + ls -l $BASE/systems/* | grep "$1" | awk '{print $9}' | xargs rm echo moving "$1" to "$trash/$basename" mv "$1" "$trash" } From sky at viridian-project.de Mon Jan 12 08:40:11 2009 From: sky at viridian-project.de (Leslie P. Polzer) Date: Mon, 12 Jan 2009 09:40:11 +0100 (CET) Subject: [clbuild-devel] Two trivial patches: quote fix and Montezuma Message-ID: <63446.88.73.205.8.1231749611.squirrel@mail.stardawn.org> URLs: http://viridian-project.de/~sky/uname_quoting.darcspatch http://viridian-project.de/~sky/montezuma.darcspatch Maybe the limit for mails to this list could be increased a bit? Thanks, Leslie From david at lichteblau.com Mon Jan 12 09:16:02 2009 From: david at lichteblau.com (David Lichteblau) Date: Mon, 12 Jan 2009 10:16:02 +0100 Subject: [clbuild-devel] Two trivial patches: quote fix and Montezuma In-Reply-To: <63446.88.73.205.8.1231749611.squirrel@mail.stardawn.org> References: <63446.88.73.205.8.1231749611.squirrel@mail.stardawn.org> Message-ID: <20090112091602.GC4455@radon> Quoting Leslie P. Polzer (sky at viridian-project.de): > http://viridian-project.de/~sky/uname_quoting.darcspatch > http://viridian-project.de/~sky/montezuma.darcspatch Thanks, pushed. d. From daniel at whitehouse.id.au Mon Jan 12 14:42:05 2009 From: daniel at whitehouse.id.au (Daniel White) Date: Tue, 13 Jan 2009 00:42:05 +1000 Subject: [clbuild-devel] [PATCH] fix trash to trash project's registered system In-Reply-To: References: Message-ID: <20090113004205.048be823@whitehouse.id.au> On Sat, 10 Jan 2009 16:03:26 -0500 Ben Hyde wrote: > The following diff changes the trash command. It currently neglects to > de-register the project's system files. This removes those symbolic > links. > > An addition minor change to the working of the count_systems scratches > my itch. I install project foo, and it says "60 system definition > files registered" > making me think project foo had 60 systems. > > > --- old-clbuild/clbuild 2009-01-10 15:58:17.000000000 -0500 > +++ new-clbuild/clbuild 2009-01-10 15:58:17.000000000 -0500 > @@ -449,7 +449,7 @@ > > count_systems() { > n_asd=`ls -1 "$system_dir"/*.asd | wc -l` > - echo "$n_asd system definition files registered" > + echo "$n_asd total system definition files now registered" > } > > > blank_line > =" " > @@ -1404,6 +1404,8 @@ > else > mkdir $trash > fi > + echo "deregistering system files of $1" > + ls -l $BASE/systems/* | grep "$1" | awk '{print $9}' | xargs rm > echo moving "$1" to "$trash/$basename" > mv "$1" "$trash" > } This only removes .asd files that happen to contain the project's name. I've the following patch in my repository at http://darcs.whitehouse.id.au/daniel/clbuild/ * Clean broken links after a trash operation -- Daniel White From bhyde at pobox.com Mon Jan 12 15:15:18 2009 From: bhyde at pobox.com (Ben Hyde) Date: Mon, 12 Jan 2009 10:15:18 -0500 Subject: [clbuild-devel] [PATCH] fix trash to trash project's registered system In-Reply-To: <20090113004205.048be823@whitehouse.id.au> References: <20090113004205.048be823@whitehouse.id.au> Message-ID: <32FAA40E-FED3-44A2-9E36-7A45B18A2CE9@pobox.com> On Jan 12, 2009, at 9:42 AM, Daniel White wrote: > On Sat, 10 Jan 2009 16:03:26 -0500 > Ben Hyde wrote: > >> The following diff changes the trash command. It currently >> neglects to >> de-register the project's system files. This removes those symbolic >> links. >> >> An addition minor change to the working of the count_systems >> scratches >> my itch. I install project foo, and it says "60 system definition >> files registered" >> making me think project foo had 60 systems. >> >> >> --- old-clbuild/clbuild 2009-01-10 15:58:17.000000000 -0500 >> +++ new-clbuild/clbuild 2009-01-10 15:58:17.000000000 -0500 >> @@ -449,7 +449,7 @@ >> >> count_systems() { >> n_asd=`ls -1 "$system_dir"/*.asd | wc -l` >> - echo "$n_asd system definition files registered" >> + echo "$n_asd total system definition files now registered" >> } >> >> >> blank_line >> =" " >> @@ -1404,6 +1404,8 @@ >> else >> mkdir $trash >> fi >> + echo "deregistering system files of $1" >> + ls -l $BASE/systems/* | grep "$1" | awk '{print $9}' | xargs rm >> echo moving "$1" to "$trash/$basename" >> mv "$1" "$trash" >> } > > This only removes .asd files that happen to contain the project's > name. By the time we get to the ugly pipeline ending in rm, $1 has is bound to the a directory path, not the project name, by example /Users/bhyde/p/ clbuild/source/zs3 rather than zs3, The caller of the bash function trash did that. Which means the grep is selecting all the links running back to that branch in the filesystem tree. $ ./clbuild trash zs3 deregistering system files of /Users/bhyde/p/clbuild/source/zs3 moving /Users/bhyde/p/clbuild/source/zs3 to /Users/bhyde/p/clbuild/ trash/2009-01-12/zs3 $ > I've the following patch in my repository at http://darcs.whitehouse.id.au/daniel/clbuild/ > > * Clean broken links after a trash operation I'm not darc's fluent, can I see that patch without checking out the entire rep? > -- > Daniel White Thanks for looking at this! - ben From daniel at whitehouse.id.au Mon Jan 12 18:49:59 2009 From: daniel at whitehouse.id.au (Daniel White) Date: Tue, 13 Jan 2009 04:49:59 +1000 Subject: [clbuild-devel] [PATCH] fix trash to trash project's registered system In-Reply-To: <32FAA40E-FED3-44A2-9E36-7A45B18A2CE9@pobox.com> References: <20090113004205.048be823@whitehouse.id.au> <32FAA40E-FED3-44A2-9E36-7A45B18A2CE9@pobox.com> Message-ID: <20090113044959.7ed16fc0@whitehouse.id.au> On Mon, 12 Jan 2009 10:15:18 -0500 Ben Hyde wrote: > On Jan 12, 2009, at 9:42 AM, Daniel White wrote: > > On Sat, 10 Jan 2009 16:03:26 -0500 > > Ben Hyde wrote: > > > >> The following diff changes the trash command. It currently > >> neglects to > >> de-register the project's system files. This removes those symbolic > >> links. > >> > >> An addition minor change to the working of the count_systems > >> scratches > >> my itch. I install project foo, and it says "60 system definition > >> files registered" > >> making me think project foo had 60 systems. > >> > >> > >> --- old-clbuild/clbuild 2009-01-10 15:58:17.000000000 -0500 > >> +++ new-clbuild/clbuild 2009-01-10 15:58:17.000000000 -0500 > >> @@ -449,7 +449,7 @@ > >> > >> count_systems() { > >> n_asd=`ls -1 "$system_dir"/*.asd | wc -l` > >> - echo "$n_asd system definition files registered" > >> + echo "$n_asd total system definition files now registered" > >> } > >> > >> > >> blank_line > >> =" " > >> @@ -1404,6 +1404,8 @@ > >> else > >> mkdir $trash > >> fi > >> + echo "deregistering system files of $1" > >> + ls -l $BASE/systems/* | grep "$1" | awk '{print $9}' | xargs rm > >> echo moving "$1" to "$trash/$basename" > >> mv "$1" "$trash" > >> } > > > > This only removes .asd files that happen to contain the project's > > name. > > By the time we get to the ugly pipeline ending in rm, $1 has is bound > to the > a directory path, not the project name, by example /Users/bhyde/p/ > clbuild/source/zs3 > rather than zs3, The caller of the bash function trash did that. > Which means the grep > is selecting all the links running back to that branch in the > filesystem tree. > > $ ./clbuild trash zs3 > deregistering system files of /Users/bhyde/p/clbuild/source/zs3 > moving /Users/bhyde/p/clbuild/source/zs3 to /Users/bhyde/p/clbuild/ > trash/2009-01-12/zs3 > $ Is it a good idea to rely on this accidental behaviour? I imagine it'll be quite easy for this to end up broken down the road. Not that my solution is all that perfect. It'll blow away all broken symlinks instead of just the project's ones. A better idea might be break out the .asd finding code from the register_ methods. Biggest problem with that is that bash doesn't have real functions. > > > I've the following patch in my repository at http://darcs.whitehouse.id.au/daniel/clbuild/ > > > > * Clean broken links after a trash operation > > I'm not darc's fluent, can I see that patch without checking out the > entire rep? > Sure. It's in my darcsweb for clbuild. http://darcs.whitehouse.id.au/cgi-bin/darcsweb.cgi?r=clbuild;a=summary -- Daniel White From bhyde at pobox.com Tue Jan 13 02:29:57 2009 From: bhyde at pobox.com (Ben Hyde) Date: Mon, 12 Jan 2009 21:29:57 -0500 Subject: [clbuild-devel] [PATCH] fix trash to trash project's registered system In-Reply-To: <20090113044959.7ed16fc0@whitehouse.id.au> References: <20090113004205.048be823@whitehouse.id.au> <32FAA40E-FED3-44A2-9E36-7A45B18A2CE9@pobox.com> <20090113044959.7ed16fc0@whitehouse.id.au> Message-ID: <64B78B33-95B9-4BA0-877D-4799DBC30F7B@pobox.com> On Jan 12, 2009, at 1:49 PM, Daniel White wrote: > On Mon, 12 Jan 2009 10:15:18 -0500 > Ben Hyde wrote: > >> On Jan 12, 2009, at 9:42 AM, Daniel White wrote: >>> On Sat, 10 Jan 2009 16:03:26 -0500 >>> Ben Hyde wrote: >>> >>>> The following diff changes the trash command. It currently >>>> neglects to >>>> de-register the project's system files. This removes those >>>> symbolic >>>> links. >>>> >>>> An addition minor change to the working of the count_systems >>>> scratches >>>> my itch. I install project foo, and it says "60 system definition >>>> files registered" >>>> making me think project foo had 60 systems. >>>> >>>> >>>> --- old-clbuild/clbuild 2009-01-10 15:58:17.000000000 -0500 >>>> +++ new-clbuild/clbuild 2009-01-10 15:58:17.000000000 -0500 >>>> @@ -449,7 +449,7 @@ >>>> >>>> count_systems() { >>>> n_asd=`ls -1 "$system_dir"/*.asd | wc -l` >>>> - echo "$n_asd system definition files registered" >>>> + echo "$n_asd total system definition files now registered" >>>> } >>>> >>>> >>>> blank_line >>>> = >>>> " " >>>> @@ -1404,6 +1404,8 @@ >>>> else >>>> mkdir $trash >>>> fi >>>> + echo "deregistering system files of $1" >>>> + ls -l $BASE/systems/* | grep "$1" | awk '{print $9}' | xargs >>>> rm >>>> echo moving "$1" to "$trash/$basename" >>>> mv "$1" "$trash" >>>> } >>> >>> This only removes .asd files that happen to contain the project's >>> name. >> >> By the time we get to the ugly pipeline ending in rm, $1 has is bound >> to the >> a directory path, not the project name, by example /Users/bhyde/p/ >> clbuild/source/zs3 >> rather than zs3, The caller of the bash function trash did that. >> Which means the grep >> is selecting all the links running back to that branch in the >> filesystem tree. >> >> $ ./clbuild trash zs3 >> deregistering system files of /Users/bhyde/p/clbuild/source/zs3 >> moving /Users/bhyde/p/clbuild/source/zs3 to /Users/bhyde/p/ >> clbuild/ >> trash/2009-01-12/zs3 >> $ > > Is it a good idea to rely on this accidental behaviour? I imagine > it'll be quite easy for this to end up broken down the road. > > Not that my solution is all that perfect. It'll blow away all broken > symlinks instead of just the project's ones. > > A better idea might be break out the .asd finding code from the > register_ methods. Biggest problem with that is that bash doesn't > have > real functions. > >> >>> I've the following patch in my repository at http://darcs.whitehouse.id.au/daniel/clbuild/ >>> >>> * Clean broken links after a trash operation >> >> I'm not darc's fluent, can I see that patch without checking out the >> entire rep? >> > > Sure. It's in my darcsweb for clbuild. > > http://darcs.whitehouse.id.au/cgi-bin/darcsweb.cgi?r=clbuild;a=summary That's pretty, i likes. > -- > Daniel White From daniel at whitehouse.id.au Thu Jan 15 10:49:11 2009 From: daniel at whitehouse.id.au (Daniel White) Date: Thu, 15 Jan 2009 20:49:11 +1000 Subject: [clbuild-devel] Further library additions (external-program, symbolicweb) Message-ID: <20090115204911.48d2212a@whitehouse.id.au> * Added symbolicweb and supporting libraries (aromyxo sw-http) * Added external-program Patches at http://darcs.whitehouse.id.au/daniel/clbuild/ -- Daniel White From david at lichteblau.com Thu Jan 15 13:19:41 2009 From: david at lichteblau.com (David Lichteblau) Date: Thu, 15 Jan 2009 14:19:41 +0100 Subject: [clbuild-devel] Further library additions (external-program, symbolicweb) In-Reply-To: <20090115204911.48d2212a@whitehouse.id.au> References: <20090115204911.48d2212a@whitehouse.id.au> Message-ID: <20090115131941.GA9330@radon> Quoting Daniel White (daniel at whitehouse.id.au): > * Added symbolicweb and supporting libraries (aromyxo sw-http) Something is wrong here: NEW darcs get sw-http Unapplicable patch: Wed Dec 24 07:09:07 CET 2008 Lars Rune N?stdal * round-trip.lisp is gone Ignore-this: 67ca4499602c542bc752eff03b10acca darcs: ./src/round-trip.lisp: openBinaryFile: does not exist (No such file or directory) I'm using darcs 2.0.2 from Debian. d. From daniel at whitehouse.id.au Thu Jan 15 14:52:55 2009 From: daniel at whitehouse.id.au (Daniel White) Date: Fri, 16 Jan 2009 00:52:55 +1000 Subject: [clbuild-devel] Further library additions (external-program, symbolicweb) In-Reply-To: <20090115131941.GA9330@radon> References: <20090115204911.48d2212a@whitehouse.id.au> <20090115131941.GA9330@radon> Message-ID: <20090116005255.5c0a7822@whitehouse.id.au> On Thu, 15 Jan 2009 14:19:41 +0100 David Lichteblau wrote: > Quoting Daniel White (daniel at whitehouse.id.au): > > * Added symbolicweb and supporting libraries (aromyxo sw-http) > > Something is wrong here: > > NEW darcs get sw-http > Unapplicable patch: > Wed Dec 24 07:09:07 CET 2008 Lars Rune N?stdal > * round-trip.lisp is gone > Ignore-this: 67ca4499602c542bc752eff03b10acca > darcs: ./src/round-trip.lisp: openBinaryFile: does not exist (No such file or directory) > > I'm using darcs 2.0.2 from Debian. > Ew. I forgot I had the same error with both 2.0.2 and 1.0.9rc1 from Debian. I have been running the code and all seems well but holding off on applying the patch until this has been resolved is probably a good idea. I'll forward a note to the symbolicweb mailing list in the meantime. -- Daniel White From gking at common-lisp.net Fri Jan 23 20:16:23 2009 From: gking at common-lisp.net (Lawrence Auster) Date: Fri, 23 Jan 2009 21:16:23 +0100 Subject: [clbuild-devel] Is Israel a Democracy? -- The problem with intellectually insecure whites -- Should Christians Support Israeli Terrorism in Gaza? Message-ID: <20090123201635.JOMJ128.aarprv06.charter.net@4k6l2> The Jewish State of Israel has no constitution, nor does it name its borders. Israel's hidden constitution is Judaism. Israel's undeclared borders range from the Nile to the Euphrates rivers. Israel's desired jurisdiction extends over the entire Earth. It could not be more clear that the Jewish State follows a foreign policy which obeys Jewish Law as iterated in the Hebrew Bible, the Talmud, Maimonedes, the Cabalah, and the many commentaries and refinements of same. The Jews are genociding the native inhabitants of Palestine, just as their religion advises, and because their religion teaches them to do so. They treat non-Jews as if non-humans, just as their religion requires them to do. They make perpetual war on every nation on Earth, just as their genocidal Jewish God has instructed. The Jews of Israel are simply being Jews. Jews are an existential threat to the human race. Israel contains one third of the Jews of the World. It is not some aberration of the Jewish spirit, but the condensation and concentration of the perverse Jewish mentality, which malady also pervades the remaining two thirds of Jewry, who almost unanimously support the Jewish State, and who certainly do unanimously support the Jewish People and its consistent and constant crimes against the human race. Israel is Jewry and the danger of Israel is the danger of the Jewish People to all others, as the Jews have demonstrated each and every day of their existence. The Jews, the entire Jewish People of 15 million, will not relent until they have wiped out all non-Jews in "Greater Israel". They will not stop destroying all other cultures, nations, religions, ethnicities, races, competition, etc. until they are either stopped, or succeed in their ancient quest to destroy the human race. What Israel is doing is not some reaction to outside forces, nor was the formation of Israel a response to the Holocaust. Israel is simply following the plan laid out in the Jews' religious texts. The Jews have openly planned to take Palestine and genocide the native population of Palestine for some 2,500 years before the Holocaust. The Jews have openly complained that "anti-Semitism" is a threat that gives them the right to genocide the Palestinians, not merely since the advent of Nazism, but for some 2,500 years. The Jewish religion is the Constitution of the Jewish State of Israel, and, to a greater or lesser extent, the constitution of the nature of every Jew alive. The borders of Israel are the range the Jew roams over the entire World. The perverse Jewish mentality is inbred by a Jew's exposure to his parents and to his community. Judaism passes in the spit and slobber of Jewish mother telling her Jewish child that he is a "Jew", as much as Judaism passes in the poison and pain of a Talmudic tractate. The secular Jews did not suddenly come to life after the Enlightenment and the Jewish Reformation a body of vampires that appeared ex nihilo, in vacuo, mostly atheistical and undetached from formally practiced Judaism. Judaism is the Jew. It is a mindset that transcends and supercedes religion. It is a belief set, a way of life, a perception of one's self and one's relation to the World that makes a Jew, a Jew, and a danger to all of humanity. In fact, the religious shell of Judaism is like the stretched and infected skin of a lycanthropic pustule. When you lance it to cure the infection, the virus only becomes more contagious and spills directly on the non-Jew. The secular Jew is a deliberate product of the hyper-religious Jew, a monster created out of the hewed corpses of the fanatically religious Jew, a Golem which is conjured up to enter the World of the non-Jew and poison its blood, and boil its brain with a rabid lunacy that bites and spreads, until the infected community feeds on itself and fills the fields with rotting bloating bodies, where once human beings tilled the soil and tended to their families. The religious Jew created the secular Jew as an army of Esthers who seduce with open thighs, broad smiles, and a Siren call that lures in the non-Jew to cast his skull upon the jagged rocks and color the seas with his blood, sickened and blinded by the venereal disease of Judaism in secular form. Israel is not a secular democracy. It is a religious mockery. It is a rabid bat flying to the ends of the Earth, to end the Earth. No one will be free nor safe until the disease is quarantined and dies out. Source: http://www.ziopedia.org/articles/israel/how_can_israel_claim_to_be_a_%27democracy%27_when_it_has_no_constitution_nor_borders?/` -------------------- The problem with intellectually insecure whites By Kevin MacDonald January 19, 2009 America will soon have a white minority. This is a much desired state of affairs for the hostile elites who hold political power and shape public opinion. But it certainly creates some management issues ? at least in the long run. After all, it?s difficult to come up with an historical example of a nation with a solid ethnic majority (90% white in 1950) that has voluntarily decided to cede political and cultural power. Such transformations are typically accomplished by military invasions, great battles, and untold suffering. And it?s not as if everyone is doing it. Only Western nations view their own demographic and cultural eclipse as a moral imperative. Indeed, as I have noted previously, it is striking that racial nationalism has triumphed in Israel at the same time that the Jewish intellectual and political movements and the organized Jewish community have been the most active and effective force for a non-white America. Indeed, a poll in 2008 found that Avigdor Lieberman was the second most popular politician in Israel. Lieberman has advocated expulsion of Arabs from Israel and has declared himself a follower of Vladimir Jabotinsky, the leading pioneer of racial Zionism. The most popular politician in the poll was Benjamin Netanyahu ? another admirer of Jabotinsky. Prime Minister Ehud Olmert and Foreign Minister Tzipi Livni are also Jabotinskyists. The racial Zionists are now carrying out yet another orgy of mass murder after a starvation-inducing blockade and the usual triggering assault designed to provoke Palestinian retaliation ? which then becomes the cover for claims that Israel is merely defending itself against terrorism. This monstrosity was approved by overwhelming majorities of both Houses of Congress. The craven Bush administration did its part by abstaining from a UN resolution designed by the US Secretary of State as a result of a personal appeal by the Israeli Prime Minister. This is yet another accomplishment of the Israel Lobby, but one they would rather not have discussed in public. People might get the impression that the Lobby really does dictate US foreign policy in the Mideast. Obviously, such thoughts are only entertained by anti-Semites. But I digress. In managing the eclipse of white America, one strategy of the mainstream media is to simply ignore the issue. Christopher Donovan (?For the media, the less whites think about their coming minority status, the better?) has noted that the media, and in particular, the New York Times, are quite uninterested in doing stories that discuss what white people think about this state of affairs. It?s not surprising that the New York Times ? the Jewish-owned flagship of anti-white, pro-multicultural media ? ignores the issue. The issue is also missing from so-called conservative media even though one would think that conservatives would find the eclipse of white America to be an important issue. Certainly, their audiences would find it interesting. Now we have an article ?The End of White America? written by Hua Hsu, an Assistant Professor of English at Vassar College. The article is a rather depressing display of what passes for intellectual discourse on the most important question confronting white people in America. Hsu begins by quoting a passage in F. Scott Fitzgerald?s The Great Gatsby in which a character, Tom Buchanan, states: ?Have you read The Rise of the Colored Empires by this man Goddard?? ? Well, it?s a fine book, and everybody ought to read it. The idea is if we don?t look out the white race will be?will be utterly submerged. It?s all scientific stuff; it?s been proved.? Buchanan?s comment is a thinly veiled reference to Lothrop Stoddard?s The Rising Tide of Color which Hsu describes as ?rationalized hatred? presented in a scholarly, gentlemanly, and scientific tone. (This wording that will certainly help him when he comes up for tenure.) As Hsu notes, Stoddard had a doctorate from Harvard and was a member of many academic associations. His book was published by a major publisher. It was therefore ?precisely the kind of book that a 1920s man of Buchanan?s profile ? wealthy, Ivy League?educated, at once pretentious and intellectually insecure ? might have been expected to bring up in casual conversation.? Let?s ponder that a bit. The simple reality is that in the year 2009 an Ivy League-educated person, "at once pretentious and intellectually insecure," would just as glibly assert the same sort of nonsense as Hsu. To wit: The coming white minority does not mean that the racial hierarchy of American culture will suddenly become inverted, as in 1995?s White Man?s Burden, an awful thought experiment of a film, starring John Travolta, that envisions an upside-down world in which whites are subjugated to their high-class black oppressors. There will be dislocations and resentments along the way, but the demographic shifts of the next 40 years are likely to reduce the power of racial hierarchies over everyone?s lives, producing a culture that?s more likely than any before to treat its inhabitants as individuals, rather than members of a caste or identity group. The fact is that no one can say for certain what multicultural America without a white majority will be like. There is no scientific or historical basis for claims like ?the demographic shifts of the next 40 years are likely to reduce the power of racial hierarchies over everyone?s lives, producing a culture that?s more likely than any before to treat its inhabitants as individuals, rather than members of a caste or identity group.? Indeed, there is no evidence at all that we are proceeding to a color blind future. The election results continue to show that white people are coalescing in the Republican Party, while the Democrats are increasingly the party of a non-white soon-to-be majority. Is it so hard to believe that when this coalition achieves a majority that it will further compromise the interests of whites far beyond contemporary concerns such as immigration policy and affirmative action? Hsu anticipates a colorblind world, but affirmative action means that blacks and other minorities are certainly not treated as individuals. And it means that whites ? especially white males ? are losing out on opportunities they would have had without these policies and without the massive non-white immigration of the last few decades. Given the intractability of changing intelligence and other traits required for success in the contemporary economy, it is unlikely that 40 more years of affirmative action will attain the outcomes desired by the minority lobbies. Indeed, in Obama's America, blacks are rioting in Oakland over perceived racial injustices, and from 2002 ?2007, black juvenile homicide victims increased 31%, while black juvenile homicide perpetrators increased 43%. Hence, the reasonable outlook is for a continuing need for affirmative action and for racial activism in these groups, even after whites become a minority. Whites will also lose out because of large-scale importation of relatively talented immigrants from East Asia. Indeed, as I noted over a decade ago, "The United States is well on the road to being dominated by an Asian technocratic elite and a Jewish business, professional, and media elite." Hsu shows that there already is considerable anxiety among whites about the future. An advertizing executive says, ?I think white people feel like they?re under siege right now ? like it?s not okay to be white right now, especially if you?re a white male. ... People are stressed out about it. ?We used to be in control! We?re losing control?? Another says, "There?s a lot of fear and a lot of resentment." It's hard to see why these feelings won't increase in the future. A huge problem for white people is lack of intellectual and cultural confidence. Hsu quotes Christian (Stuff White People Like) Lander saying, "I get it: as a straight white male, I?m the worst thing on Earth." A professor comments that for his students "to be white is to be culturally broke. The classic thing white students say when you ask them to talk about who they are is, ?I don?t have a culture.? They might be privileged, they might be loaded socioeconomically, but they feel bankrupt when it comes to culture ? They feel disadvantaged, and they feel marginalized." This lack of cultural confidence is no accident. For nearly 100 years whites have been subjected to a culture of critique emanating from the most prestigious academic and media institutions. And, as Hsu points out, the most vibrant and influential aspect of American popular culture is hip-hop?a product of the African American urban culture. The only significant group of white people with any cultural confidence centers itself around country music, NASCAR, and the small town values of traditional white America. For this group of whites ? and only this group ? there is "a racial pride that dares not speak its name, and that defines itself through cultural cues instead?a suspicion of intellectual elites and city dwellers, a preference for folksiness and plainness of speech (whether real or feigned), and the association of a working-class white minority with 'the real America.'? This is what I term implicit whiteness ? implicit because explicit assertions of white identity have been banned by the anti-white elites that dominate our politics and culture. It is a culture that, as Hsu notes, "cannot speak its name." But that implies that the submerged white identity of the white working class and the lack of cultural confidence exhibited by the rest of white America are imposed from outside. Although there may well be characteristics of whites that facilitate this process, this suppression of white identity and interests is certainly not the natural outcome of modernization or any other force internal to whites as a people. In my opinion, it is the result of the successful erection of a culture of critique in the West dominated by Jewish intellectual and political movements. The result is that educated, intellectually insecure white people these days are far more likely to believe in the utopian future described by Hsu than in hard and cautious thinking about what the future might have in store for them. It's worth dwelling a bit on the intellectual insecurity of the whites who mindlessly utter the mantras of multiculturalism that they have soaked up from the school system and from the media. Most people do not have much confidence in their intellectual ability and look to elite opinion to shape their beliefs. As I noted elsewhere, A critical component of the success of the culture of critique is that it achieved control of the most prestigious and influential institutions of the West, and it became a consensus among the elites, Jewish and non-Jewish alike. Once this happened, it is not surprising that this culture became widely accepted among people of very different levels of education and among people of different social classes. Most people are quite insecure about their intellectual ability. But they know that the professors at Harvard, and the editorial page of the New York Times and the Washington Post, and even conservative commentators like Rush Limbaugh and Sean Hannity are all on page when it comes to racial and ethnic issues. This is a formidable array, to the point that you almost have to be a crank to dissent from this consensus. I think one of the greatest triumphs of the left has been to get people to believe that people who assert white identity and interests or who make unflattering portrayals of organized Jewish movements are morally degenerate, stupid, and perhaps psychiatrically disturbed. Obviously, all of these adjectives designate low status. The reality is that the multicultural emperor has no clothes and, because of its support for racial Zionism and the racialism of ethnic minorities in America, it is massively hypocritical to boot. The New York Times, the academic left, and the faux conservatives that dominate elite discourse on race and ethnicity are intellectually bankrupt and can only remain in power by ruthlessly suppressing or ignoring the scientific findings. This is particularly a problem for college-educated whites. Like Fitzgerald's Tom Buchanan, such people have a strong need to feel that their ideas are respectable and part of the mainstream. But the respectable mainstream gives them absolutely nothing with which to validate themselves except perhaps the idea that the world will be a better place when people like them no longer have power. Hsu quotes the pathetic Christian Lander: "?Like, I?m aware of all the horrible crimes that my demographic has done in the world. ... And there?s a bunch of white people who are desperate ? desperate ? to say, ?You know what? My skin?s white, but I?m not one of the white people who?s destroying the world.?? As a zombie leftist during the 1960s and 1970s, I know what that feeling of desperation is like ? what it's like to be a self-hating white. We must get to the point where college-educated whites proudly and confidently say they are white and that they do not want to become a minority in America. This reminds me of the recent docudrama Milk, which depicts the life of gay activist Harvey Milk. Milk is sure be nominated for an Oscar as Best Picture because it lovingly illustrates a triumph of the cultural left. But is has an important message that should resonate with the millions of whites who have been deprived of their confidence and their culture: Be explicit. Just as Harvey Milk advocated being openly gay even in the face of dire consequences, whites need to tell their family and their friends that they have an identity as a white person and believe that whites have legitimate interests as white people. They must accept the consequences when they are harassed, fired from their jobs, or put in prison for such beliefs. They must run for political office as openly pro-white. Milk shows that homosexuals were fired from their jobs and arrested for congregating in public. Now it's the Southern Poverty Law Center and the rest of the leftist intellectual and political establishment that harasses and attempts to get people fired. But it's the same situation with the roles reversed. No revolution was ever accomplished without some martyrs. The revolution that restores the legitimacy of white identity and the legitimacy of white interests will be no exception. But it is a revolution that is absolutely necessary. The white majority is foolish indeed to entrust its future to a utopian hope that racial and ethnic identifications will disappear and that they won?t continue to influence public policy in ways that compromise the interests of whites. It does not take an overactive imagination to see that coalitions of minority groups could compromise the interests of formerly dominant whites. We already see numerous examples in which coalitions of minority groups attempt to influence public policy, including immigration policy, against the interests of the whites. Placing ourselves in a position of vulnerability would be extremely risky, given the deep sense of historical grievance fostered by many ethnic activists and organized ethnic lobbies. This is especially the case with Jews. Jewish organisations have been unanimous in condemning Western societies, Western traditions, and Christianity, for past crimes against Jews. Similar sentiments are typical of a great many African Americans and Latinos, and especially among the ethnic activists from these groups. The ?God damn America? sermon by President Obama's pastor comes to mind as a recent notorious example. The precedent of the early decades of the Soviet Union should give pause to anyone who believes that surrendering ethnic hegemony does not carry risks. The Bolshevik revolution had a pronounced ethnic angle: To a very great extent, Jews and other non-Russians ruled over the Russian people, with disastrous consequences for the Russians and other ethnic groups that were not able to become part of the power structure. Jews formed a hostile elite within this power structure ? as they will in the future white-minority America; Jews were ?Stalin?s willing executioners.? Two passages from my review of Yuri Slezkine's The Jewish Century seem particularly appropriate here. The first passage reminds me of the many American Jews who adopt a veneer of support for leftist versions of social justice and racial tolerance while nevertheless managing to support racial Zionism and the mass murder, torture, and incarceration of the Palestinian people in one of the largest prison systems the world has ever seen. Such people may be very different when they become a hostile elite in a white-minority America. Many of the commentators on Jewish Bolsheviks noted the ?transformation? of Jews [after the Bolshevik Revolution]. In the words of [a] Jewish commentator, G. A. Landau, ?cruelty, sadism, and violence had seemed alien to a nation so far removed from physical activity.? And another Jewish commentator, Ia. A. Bromberg, noted that: the formerly oppressed lover of liberty had turned into a tyrant of ?unheard-of-despotic arbitrariness??. The convinced and unconditional opponent of the death penalty not just for political crimes but for the most heinous offenses, who could not, as it were, watch a chicken being killed, has been transformed outwardly into a leather-clad person with a revolver and, in fact, lost all human likeness. ... After the Revolution, ... there was active suppression of any remnants of the older order and their descendants. ... The mass murder of peasants and nationalists was combined with the systematic exclusion of the previously existing non-Jewish middle class. The wife of a Leningrad University professor noted, ?in all the institutions, only workers and Israelites are admitted; the life of the intelligentsia is very hard? (p. 243). Even at the end of the 1930s, prior to the Russification that accompanied World War II, ?the Russian Federation?was still doing penance for its imperial past while also serving as an example of an ethnicity-free society? (p. 276). While all other nationalities, including Jews, were allowed and encouraged to keep their ethnic identities, the revolution remained an anti-majoritarian movement. The difference from the Soviet Union may well be that in white-minority America it will not be workers and Israelites who are favored, but non-whites and Israelites. Whites may dream that they are entering the post-racial utopia imagined by their erstwhile intellectual superiors. But it is quite possible that they are entering into a racial dystopia of unimaginable cruelty in which whites will be systematically excluded in favor of the new elites recruited from the soon-to-be majority. It's happened before. Kevin MacDonald is a professor of psychology at California State University?Long Beach. Permanent URL with hyperlinks: http://www.theoccidentalobserver.net/articles/MacDonald-Hsu.html ----------- Should Christians Support Israeli Terrorism in Gaza? A timely discussion between Rev. Ted Pike and Dr. David Duke, one especially important for the Christians in our audience http://www.davidduke.com/mp3/dukeradio090122DukeandPikeonGaza.mp3 In this vital discussion, Rev. Pike and Dr. Duke explore the Pro-Israel attitude of some Christian evangelical organizations, and why their position not only goes directly against Christian morality and decency, but actually is directly opposite of that expressed by Christian Scriptures. Today, Many Christians are instructed that Jews and today?s Israel has a special covenant? with God. In fact, the New Testament in the clearest of language states that the Jews ?continued not in my covenant, and I considered them not, saith the Lord.? Here?s the quote that Christians aren?t supposed to notice.: 8:10 Not according to the covenant that I made with their fathers, in the day when I took them by the hand out of the land of Egypt; because they continued not in my covenant, and I regarded them not, saith the Lord. (Hebrews 8:10) They also don?t seem to notice that a 2000 year old Judaic war against Christianity that has been waged since time of Jesus Christ and still goes on today with the most powerful Jewish organizations attempting to destroy European and American traditions, that has even become a war on our Christmas traditions. Dr. Duke and Ted Pike also speak about how over a hundred thousand Christian Palestinians have suffered with their families from anti-Christian Israel! Christian support of Israel has resulted in the very birthplace of Jesus Christ, go from 90 percent Palestinian Christians to 35 percent today because of Israeli terror and occupation. They ask, ?How could any Christian in good conscience support the anti-Christian state of Israel, bombing the homes, killing and maiming, torturing and oppressing fellow Christian men, women and children?? This is a vital show for every Christian reader and listener of DavidDuke.com. Next time, you hear someone say, ?God tells us that we must support Israel? you will have the clear Christian answer that just the opposite is true! For documentation on this be sure to read some of the well-footnoted, sample chapters of Jewish Supremacism and My Awakening. Source : http://www.davidduke.com/general/should-christians-support-israeli-terrorism-in-gaza_7282.html ------------------------------------- You or someone using your email adress is currently subscribed to the Lawrence Auster Newletter. If you wish to unsubscribe from our mailing list, please let us know by calling to 1 212 865 1284 Thanks, Lawrence Auster, 238 W 101 St Apt. 3B New York, NY 10025 Contact: lawrence.auster at att.net ------------------------------------- From gugamilare at gmail.com Sat Jan 24 01:41:57 2009 From: gugamilare at gmail.com (Gustavo) Date: Fri, 23 Jan 2009 23:41:57 -0200 Subject: [clbuild-devel] Lispbuilder projects Message-ID: <4be8713d0901231741m595b14fbo4ca20a3e14d416a3@mail.gmail.com> I added all lispbuilder projects to wnpp-projects file locally. I am sending this just in case you want to add it to the main repository. Here are the projects lispbuilder-clawk get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-clawk/lispbuilder-read-only lispbuilder-net get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-net/lispbuilder-read-only lispbuilder-openrm get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-openrm/lispbuilder-read-only lispbuilder-sdl get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-sdl/lispbuilder-read-only lispbuilder-sdl-image get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-sdl-image/lispbuilder-read-only lispbuilder-sdl-ttf get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-sdl-ttf/lispbuilder-read-only lispbuilder-yacc get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-yacc/lispbuilder-read-only lispbuilder-cal3d get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-cal3d/lispbuilder-read-only lispbuilder-lexer get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-lexer/lispbuilder-read-only lispbuilder-opengl get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-opengl/lispbuilder-read-only lispbuilder-regex get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-regex/lispbuilder-read-only lispbuilder-sdl-gfx get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-sdl-gfx/lispbuilder-read-only lispbuilder-sdl-mixer get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-sdl-mixer/lispbuilder-read-only lispbuilder-windows get_svn http://lispbuilder.googlecode.com/svn/trunk/lispbuilder-windows/lispbuilder-read-only I also added this game made using lispbuilder-sdl lrpg get_darcs http://common-lisp.net/~eslaughter/darcs/blackthorn/ And these dependencies lispbuilder-sdl cffi lispbuilder-sdl-image lispbuilder-sdl cffi lispbuilder-sdl-ttf lispbuilder-sdl cffi lispbuilder-sdl-gfx lispbuilder-sdl cffi lispbuilder-sdl-mixer lispbuilder-sdl cffi lrpg cffi babel alexandria trivial-features lispbuilder-sdl lispbuilder-sdl-image lispbuilder-sdl-gfx elephant I don't know about the dependencies of the other lispbuilder projects, though. Regards, Gustavo. -------------- next part -------------- An HTML attachment was scrubbed... URL: From daniel at whitehouse.id.au Sun Jan 25 09:55:47 2009 From: daniel at whitehouse.id.au (Daniel White) Date: Sun, 25 Jan 2009 19:55:47 +1000 Subject: [clbuild-devel] Further library additions (external-program, symbolicweb) In-Reply-To: <20090116005255.5c0a7822@whitehouse.id.au> References: <20090115204911.48d2212a@whitehouse.id.au> <20090115131941.GA9330@radon> <20090116005255.5c0a7822@whitehouse.id.au> Message-ID: <20090125195547.4f8b7754@whitehouse.id.au> On Fri, 16 Jan 2009 00:52:55 +1000 Daniel White wrote: > On Thu, 15 Jan 2009 14:19:41 +0100 > David Lichteblau wrote: > > > Quoting Daniel White (daniel at whitehouse.id.au): > > > * Added symbolicweb and supporting libraries (aromyxo sw-http) > > > > Something is wrong here: > > > > NEW darcs get sw-http > > Unapplicable patch: > > Wed Dec 24 07:09:07 CET 2008 Lars Rune N?stdal > > * round-trip.lisp is gone > > Ignore-this: 67ca4499602c542bc752eff03b10acca > > darcs: ./src/round-trip.lisp: openBinaryFile: does not exist (No such file or directory) > > > > I'm using darcs 2.0.2 from Debian. > > > > Ew. I forgot I had the same error with both 2.0.2 and 1.0.9rc1 from > Debian. I have been running the code and all seems well but holding > off on applying the patch until this has been resolved is probably > a good idea. > > I'll forward a note to the symbolicweb mailing list in the meantime. > Looks like the repository has been fixed now. -- Daniel White From krewinkel at gmx.net Mon Jan 26 01:41:22 2009 From: krewinkel at gmx.net (Albert Krewinkel) Date: Sun, 25 Jan 2009 17:41:22 -0800 Subject: [clbuild-devel] Lispbuilder projects References: <4be8713d0901231741m595b14fbo4ca20a3e14d416a3@mail.gmail.com> Message-ID: Hi Gustavo, thanks for those additions. I've compiled a patch for the lispbuilder-stuff and pushed it to the repo. The `lrpg' will follow as soon as I find some time to have a look at it. Some notes on the inteded usage of clbuild: If you have personal projects, add them into a new file named "my-projects" within the clbuild directory. The syntax is the same in the main and wnpp project files. This file is ignored by darcs, which will make things easier for you whenever you pull an update from the cl.net repo. Talking about darcs: Please consider learning how to compile and send patches with darcs, as this safes the maintainers some work. Thanks, Albert Gustavo writes: > I added all lispbuilder projects to wnpp-projects file locally. I am sending > this just in case you want to add it to the main repository. > > Here are the projects > > lispbuilder-clawk get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-clawk/ lispbuilder-read-only > lispbuilder-net get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-net/ lispbuilder-read-only > lispbuilder-openrm get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-openrm/ lispbuilder-read-only > lispbuilder-sdl get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-sdl/ lispbuilder-read-only > lispbuilder-sdl-image get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-sdl-image/ lispbuilder-read-only > lispbuilder-sdl-ttf get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-sdl-ttf/ lispbuilder-read-only > lispbuilder-yacc get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-yacc/ lispbuilder-read-only > lispbuilder-cal3d get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-cal3d/ lispbuilder-read-only > lispbuilder-lexer get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-lexer/ lispbuilder-read-only > lispbuilder-opengl get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-opengl/ lispbuilder-read-only > lispbuilder-regex get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-regex/ lispbuilder-read-only > lispbuilder-sdl-gfx get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-sdl-gfx/ lispbuilder-read-only > lispbuilder-sdl-mixer get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-sdl-mixer/ lispbuilder-read-only > lispbuilder-windows get_svn http://lispbuilder.googlecode.com/svn/trunk/ > lispbuilder-windows/ lispbuilder-read-only > > I also added this game made using lispbuilder-sdl > > lrpg get_darcs http://common-lisp.net/~eslaughter/darcs/blackthorn/ > > > And these dependencies > > > lispbuilder-sdl cffi > lispbuilder-sdl-image lispbuilder-sdl cffi > lispbuilder-sdl-ttf lispbuilder-sdl cffi > lispbuilder-sdl-gfx lispbuilder-sdl cffi > lispbuilder-sdl-mixer lispbuilder-sdl cffi > > lrpg cffi babel alexandria trivial-features lispbuilder-sdl > lispbuilder-sdl-image lispbuilder-sdl-gfx elephant > > I don't know about the dependencies of the other lispbuilder projects, though. > > Regards, > Gustavo. > _______________________________________________ > clbuild-devel mailing list > clbuild-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/clbuild-devel