diff options
author | Sumit Bose <sbose@redhat.com> | 2009-09-03 13:36:22 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-09-03 11:17:23 -0400 |
commit | 33396dc46ea52c18f47db1b5d590880806521005 (patch) | |
tree | c37a1698a006fe55c117b06407c0b5ee89f06a8f | |
parent | c307d90d75cfc4de393ef4dedfcf1c4f38530ddc (diff) | |
download | sssd_unused-33396dc46ea52c18f47db1b5d590880806521005.tar.gz sssd_unused-33396dc46ea52c18f47db1b5d590880806521005.tar.xz sssd_unused-33396dc46ea52c18f47db1b5d590880806521005.zip |
configure cleanups
- replaced mailing list address
- let sssd base components read version from VERSION
-rw-r--r-- | VERSION | 1 | ||||
-rw-r--r-- | common/collection/configure.ac | 2 | ||||
-rw-r--r-- | common/configure.ac | 4 | ||||
-rw-r--r-- | common/elapi/configure.ac | 2 | ||||
-rw-r--r-- | common/elapi/elapi_test/configure.ac | 2 | ||||
-rw-r--r-- | common/ini/configure.ac | 2 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | server/configure.ac | 4 | ||||
-rw-r--r-- | server/po/Makevars | 2 | ||||
-rw-r--r-- | server/po/es.po | 2 | ||||
-rw-r--r-- | server/po/sss_daemon.pot | 2 | ||||
-rw-r--r-- | sss_client/configure.ac | 4 | ||||
-rw-r--r-- | sss_client/po/Makevars | 2 | ||||
-rw-r--r-- | sss_client/po/es.po | 10 | ||||
-rw-r--r-- | sss_client/po/sss_client.pot | 10 |
15 files changed, 31 insertions, 22 deletions
diff --git a/VERSION b/VERSION new file mode 100644 index 00000000..8f0916f7 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.5.0 diff --git a/common/collection/configure.ac b/common/collection/configure.ac index 290a3101..4858bc61 100644 --- a/common/collection/configure.ac +++ b/common/collection/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([collection],[0.3.3],[freeipa-devel@redhat.com]) +AC_INIT([collection],[0.3.3],[sssd-devel@lists.fedorahosted.org]) AC_CONFIG_SRCDIR([collection.c]) AC_CONFIG_AUX_DIR([build]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) diff --git a/common/configure.ac b/common/configure.ac index dc6b42c9..d069708c 100644 --- a/common/configure.ac +++ b/common/configure.ac @@ -1,4 +1,6 @@ -AC_INIT([sssd_libs], [0.4.0], [freeipa-devel@redhat.com]) +AC_INIT([sssd_libs], + m4_esyscmd([cat ../VERSION |head -n1 | tr -d '\n']), + [sssd-devel@lists.fedorahosted.org]) AC_CONFIG_SRCDIR([README]) AC_CONFIG_AUX_DIR([build]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) diff --git a/common/elapi/configure.ac b/common/elapi/configure.ac index a4db4191..010244c5 100644 --- a/common/elapi/configure.ac +++ b/common/elapi/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([elapi],[0.0.1],[freeipa-devel@redhat.com]) +AC_INIT([elapi],[0.0.1],[sssd-devel@lists.fedorahosted.org]) AC_CONFIG_SRCDIR([elapi.h]) AC_CONFIG_AUX_DIR([build]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) diff --git a/common/elapi/elapi_test/configure.ac b/common/elapi/elapi_test/configure.ac index f2431bd3..9297acfa 100644 --- a/common/elapi/elapi_test/configure.ac +++ b/common/elapi/elapi_test/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([elapi],[0.0.1],[freeipa-devel@redhat.com]) +AC_INIT([elapi],[0.0.1],[sssd-devel@lists.fedorahosted.org]) AC_CONFIG_SRCDIR([elapi_ut.c]) AC_CONFIG_AUX_DIR([build]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) diff --git a/common/ini/configure.ac b/common/ini/configure.ac index c4732cf7..c5991244 100644 --- a/common/ini/configure.ac +++ b/common/ini/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([ini_config],[0.3.3],[freeipa-devel@redhat.com]) +AC_INIT([ini_config],[0.3.3],[sssd-devel@lists.fedorahosted.org]) AC_CONFIG_SRCDIR([ini_config.c]) AC_CONFIG_AUX_DIR([build]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) diff --git a/configure.ac b/configure.ac index d8d092af..d908dbb5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,6 @@ -AC_INIT([sssd], [0.5.0], [freeipa-devel@redhat.com]) +AC_INIT([sssd], + m4_esyscmd([cat VERSION |head -n1 | tr -d '\n']), + [sssd-devel@lists.fedorahosted.org]) AC_CONFIG_SRCDIR([BUILD.txt]) AC_CONFIG_AUX_DIR([build]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) diff --git a/server/configure.ac b/server/configure.ac index 071ad070..3ecd0c39 100644 --- a/server/configure.ac +++ b/server/configure.ac @@ -11,7 +11,9 @@ AC_DEFUN([SMB_MODULE_DEFAULT], [echo -n ""]) AC_DEFUN([SMB_LIBRARY_ENABLE], [echo -n ""]) AC_DEFUN([SMB_EXT_LIB], [echo -n ""]) AC_DEFUN([SMB_ENABLE], [echo -n ""]) -AC_INIT([sss_daemon], [0.4.0], [freeipa-devel@redhat.com]) +AC_INIT([sss_daemon], + m4_esyscmd([cat ../VERSION |head -n1 | tr -d '\n']), + [sssd-devel@lists.fedorahosted.org]) AC_CONFIG_SRCDIR([conf_macros.m4]) AC_CONFIG_AUX_DIR([build]) diff --git a/server/po/Makevars b/server/po/Makevars index 2b1d4ddc..07fc8143 100644 --- a/server/po/Makevars +++ b/server/po/Makevars @@ -34,7 +34,7 @@ COPYRIGHT_HOLDER = Red Hat, Inc. # It can be your email address, or a mailing list address where translators # can write to without being subscribed, or the URL of a web page through # which the translators can contact you. -MSGID_BUGS_ADDRESS = freeipa-devel@redhat.com +MSGID_BUGS_ADDRESS = sssd-devel@lists.fedorahosted.org # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. diff --git a/server/po/es.po b/server/po/es.po index 05f707c7..9ba0e84b 100644 --- a/server/po/es.po +++ b/server/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: sss_daemon 0.4.0\n" -"Report-Msgid-Bugs-To: freeipa-devel@redhat.com\n" +"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n" "POT-Creation-Date: 2009-08-24 14:04-0400\n" "PO-Revision-Date: 2009-06-15 10:21-0400\n" "Last-Translator: Automatically generated\n" diff --git a/server/po/sss_daemon.pot b/server/po/sss_daemon.pot index a42af7ad..aecdeb3c 100644 --- a/server/po/sss_daemon.pot +++ b/server/po/sss_daemon.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: freeipa-devel@redhat.com\n" +"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n" "POT-Creation-Date: 2009-08-24 14:04-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" diff --git a/sss_client/configure.ac b/sss_client/configure.ac index 01c717de..f5b2765a 100644 --- a/sss_client/configure.ac +++ b/sss_client/configure.ac @@ -1,5 +1,7 @@ AC_PREREQ(2.50) -AC_INIT([sss_client], 0.4.0, [freeipa-devel@redhat.com]) +AC_INIT([sss_client], + m4_esyscmd([cat ../VERSION |head -n1 | tr -d '\n']), + [sssd-devel@lists.fedorahosted.org]) AC_CONFIG_SRCDIR([common.c]) AC_CONFIG_HEADER(config.h) AC_CONFIG_AUX_DIR([build]) diff --git a/sss_client/po/Makevars b/sss_client/po/Makevars index 5dda6915..1c2ad2ba 100644 --- a/sss_client/po/Makevars +++ b/sss_client/po/Makevars @@ -34,7 +34,7 @@ COPYRIGHT_HOLDER = Red Hat, Inc. # It can be your email address, or a mailing list address where translators # can write to without being subscribed, or the URL of a web page through # which the translators can contact you. -MSGID_BUGS_ADDRESS = freeipa-devel@redhat.com +MSGID_BUGS_ADDRESS = sssd-devel@lists.fedorahosted.org # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. diff --git a/sss_client/po/es.po b/sss_client/po/es.po index 21e573ec..e7544537 100644 --- a/sss_client/po/es.po +++ b/sss_client/po/es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: sss_client 0.4.0\n" -"Report-Msgid-Bugs-To: freeipa-devel@redhat.com\n" -"POT-Creation-Date: 2009-08-24 14:04-0400\n" +"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n" +"POT-Creation-Date: 2009-09-03 13:14+0200\n" "PO-Revision-Date: 2009-05-21 14:10-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -20,14 +20,14 @@ msgstr "" msgid "Passwords do not match" msgstr "Passwords do not match" -#: pam_sss.c:557 +#: pam_sss.c:552 msgid "Password: " msgstr "" -#: pam_sss.c:589 +#: pam_sss.c:584 msgid "New Password: " msgstr "" -#: pam_sss.c:590 +#: pam_sss.c:585 msgid "Reenter new Password: " msgstr "" diff --git a/sss_client/po/sss_client.pot b/sss_client/po/sss_client.pot index a08cde57..a3e211a3 100644 --- a/sss_client/po/sss_client.pot +++ b/sss_client/po/sss_client.pot @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: freeipa-devel@redhat.com\n" -"POT-Creation-Date: 2009-08-24 14:04-0400\n" +"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n" +"POT-Creation-Date: 2009-09-03 13:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -20,14 +20,14 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: pam_sss.c:557 +#: pam_sss.c:552 msgid "Password: " msgstr "" -#: pam_sss.c:589 +#: pam_sss.c:584 msgid "New Password: " msgstr "" -#: pam_sss.c:590 +#: pam_sss.c:585 msgid "Reenter new Password: " msgstr "" |