sm-commit AT lists.ibiblio.org
Subject: Source Mage code commit list
List archive
- From: Arwed von Merkatz <v.merkatz AT gmx.net>
- To: sm-commit AT lists.ibiblio.org
- Subject: Re: [SM-Commit] GIT changes to test grimoire by
- Date: Wed, 10 May 2006 19:32:56 +0200
On Wed, May 10, 2006 at 12:20:27PM -0500, scm AT mail.sourcemage.org wrote:
[...]
> diff --git a/i18n/freewnn/BUILD b/i18n/freewnn/BUILD
> index 8346ce8..66edb37 100755
> --- a/i18n/freewnn/BUILD
> +++ b/i18n/freewnn/BUILD
> @@ -1,6 +1,3 @@
> -(
> - groupadd wnn 2>/dev/null
> - useradd wnn -g wnn 2>/dev/null
> -
> - default_build
> -) >$C_FIFO 2>&1
> +create_group wnn &&
> +create_account wnn /dev/null /bin/false wnn &&
> +default_build
This won't work. create_group/create_account require that account/group
to be defined in the grimoire (accounts and group files), or they won't
do anything.
> diff --git a/i18n/freewnn/CONFIGURE b/i18n/freewnn/CONFIGURE
> index bce974e..0c0c1a9 100755
> --- a/i18n/freewnn/CONFIGURE
> +++ b/i18n/freewnn/CONFIGURE
> @@ -13,9 +13,9 @@ # else echo 'OPTS="$OPTS --disable-clie
> # fi
> #fi
>
> -if ! grep -q "unsafe" $SPELL_CONFIG; then
> - if query "Allow clients to connect from any host (can be a security
> risk)?" n
> - then echo 'OPTS="$OPTS --enable-unsafe-path"' >> $SPELL_CONFIG
> - else echo 'OPTS="$OPTS --disable-unsafe-path"' >> $SPELL_CONFIG
> - fi
> +config_query UNSAFE "Allow clients to connect from any host (can be a
> security risk)?" n &&
> +if [[ $UNSAFE == "y" ]]; then
> + OPTS="$OPTS --enable-unsafe-path"
> +else
> + OPTS="$OPTS --disable-unsafe-path"
> fi
> diff --git a/i18n/freewnn/DETAILS b/i18n/freewnn/DETAILS
> index e6371a3..c84e4a9 100755
> --- a/i18n/freewnn/DETAILS
> +++ b/i18n/freewnn/DETAILS
> @@ -7,7 +7,6 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/FreeWn
> WEB_SITE=http://www.freewnn.org/
> ENTERED=20030108
> UPDATED=20030108
> - MAINTAINER=jimmy AT yen.tp
> KEYWORDS="i18n"
> SHORT="A Japanese dictionary server for Kana-Kanji conversion"
> cat << EOF
> diff --git a/i18n/freewnn/HISTORY b/i18n/freewnn/HISTORY
> index 646ab04..8653536 100644
> --- a/i18n/freewnn/HISTORY
> +++ b/i18n/freewnn/HISTORY
> @@ -1,3 +1,8 @@
> +2006-04-29 Jaka Kranjc <lynx AT mages.ath.cx>
> + * DETAILS: removed MAINTAINER
> + * BUILD: ported to api2, fixed account creation
> + * CONFIGURE: fixed horrible querying
> +
> 2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
> * DETAILS: (automated) Add KEYWORDS
>
[...]
> diff --git a/i18n/scim/DEPENDS b/i18n/scim/DEPENDS
> index 21a8401..5a66c78 100755
> --- a/i18n/scim/DEPENDS
> +++ b/i18n/scim/DEPENDS
> @@ -1,6 +1,6 @@
> depends gtk+2 &&
> depends pango &&
> depends libxml2 &&
> -depends orbit2 &&
> -depends gconf2 &&
> +#depends orbit2 &&
> +#depends gconf2 &&
> depends atk
> diff --git a/i18n/scim/DETAILS b/i18n/scim/DETAILS
> index 57e3240..6c0af4e 100755
> --- a/i18n/scim/DETAILS
> +++ b/i18n/scim/DETAILS
> @@ -1,14 +1,13 @@
> SPELL=scim
> - VERSION=0.8.1
> + VERSION=1.4.4
> SOURCE=$SPELL-$VERSION.tar.gz
> SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
> - WEB_SITE=http://ns.turbolinux.com.cn/~suzhe/scim/
> - SOURCE_URL[0]=$WEB_SITE/sources/$SOURCE
> -
> SOURCE_HASH=sha512:d3bbd62e4a8ed41cf4cd0bcc86c67756e99bf2e1e0c359dd6153228a2c59102b542f19f5cc513f42ffba856f4ca74c47bddc0b4341bc2cc1e73107b198081be7
> + WEB_SITE=http://www.scim-im.org/
> + SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
> +
> SOURCE_HASH=sha512:5dcd2331097ebb413bff7ad6f5fbb1e1563b80f196da3f8036ed518e87e31ac3ab3f43644dee121557602571ce2ba314345db270c459d3767b11b6b35f385e00
>
> LICENSE[0]=GPL
> ENTERED=20030912
> UPDATED=20030912
> - MAINTAINER=jimmy AT yen.tp
> KEYWORDS="i18n"
> SHORT="The Smart Common Input Method platform"
> cat << EOF
> diff --git a/i18n/scim/HISTORY b/i18n/scim/HISTORY
> index 17bd34f..fd62d89 100644
> --- a/i18n/scim/HISTORY
> +++ b/i18n/scim/HISTORY
> @@ -1,3 +1,8 @@
> +2006-04-29 Jaka Kranjc <lynx AT mages.ath.cx>
> + * DETAILS: ported to BUILD_API=2, bumped version,
> + changed urls, removed MAINTAINER
> + * DEPENDS: commented out two depends, they don't appear to be needed
You shouldn't comment them out, just remove them. And mention them
really in HISTORY so users can see what dependencies got removed.
Other than that this looks like a nice first commit :)
--
Arwed v. Merkatz Source Mage GNU/Linux developer
http://www.sourcemage.org
-
[SM-Commit] GIT changes to test grimoire by,
scm, 05/06/2006
- <Possible follow-up(s)>
- [SM-Commit] GIT changes to test grimoire by, scm, 05/07/2006
- [SM-Commit] GIT changes to test grimoire by, scm, 05/07/2006
- [SM-Commit] GIT changes to test grimoire by, scm, 05/08/2006
- [SM-Commit] GIT changes to test grimoire by, scm, 05/09/2006
-
[SM-Commit] GIT changes to test grimoire by,
scm, 05/10/2006
- Re: [SM-Commit] GIT changes to test grimoire by, Arwed von Merkatz, 05/10/2006
- [SM-Commit] GIT changes to test grimoire by, scm, 05/10/2006
- [SM-Commit] GIT changes to test grimoire by, scm, 05/11/2006
- [SM-Commit] GIT changes to test grimoire by, scm, 05/11/2006
- [SM-Commit] GIT changes to test grimoire by, scm, 05/18/2006
-
[SM-Commit] GIT changes to test grimoire by,
scm, 05/18/2006
-
Re: [SM-Commit] GIT changes to test grimoire by,
Jeremy Blosser, 05/19/2006
-
Re: [SM-Commit] GIT changes to test grimoire by,
Eric Sandall, 05/19/2006
-
Re: [SM-Commit] GIT changes to test grimoire by,
Jeremy Blosser, 05/19/2006
- Re: [SM-Commit] GIT changes to test grimoire by, Eric Sandall, 05/19/2006
-
Re: [SM-Commit] GIT changes to test grimoire by,
Jeremy Blosser, 05/19/2006
-
Re: [SM-Commit] GIT changes to test grimoire by,
Eric Sandall, 05/19/2006
- Re: [SM-Commit] GIT changes to test grimoire by, Jeremy Blosser, 05/19/2006
-
Re: [SM-Commit] GIT changes to test grimoire by,
Jeremy Blosser, 05/19/2006
Archive powered by MHonArc 2.6.24.