Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • mika/sssd
  • guillem/debian-pkg-sssd
  • john.veitch/sssd
  • jgullberg/sssd
  • gioele/sssd
  • oktay454/sssd
  • sergiodj/sssd
  • 3v1n0/sssd
  • jfalk-guest/sssd
  • sathieu/sssd
  • dpward/sssd
  • sssd-team/sssd
  • ahasenack/sssd
  • jbicha/sssd
  • yrro-guest/sssd
15 results
Show changes
Commits on Source (89)
The instructions on how to build the SSSD and contribute to the
project can be found here:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
https://sssd.github.io/developers/index.html
https://sssd.io/docs/developers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
......@@ -291,6 +291,7 @@ if HAVE_CMOCKA
test_iobuf \
sss_certmap_test \
test_sssd_krb5_locator_plugin \
test_confdb \
$(NULL)
......@@ -480,6 +481,7 @@ dist_noinst_DATA = \
src/config/testconfigs/sssd-invalid-badbool.conf \
src/config/testconfigs/sssd-nonexisting-services-domains.conf \
src/config/testconfigs/sssd-test-parse.conf \
src/config/testconfigs/sssd-enabled-option.conf \
src/config/etc/sssd.api.d/crash_test_dummy \
contrib/ci/README.md \
contrib/ci/configure.sh \
......@@ -2161,7 +2163,7 @@ libsss_certmap_la_LIBADD = \
$(NULL)
libsss_certmap_la_LDFLAGS = \
-Wl,--version-script,$(srcdir)/src/lib/certmap/sss_certmap.exports \
-version-info 1:0:1
-version-info 2:0:2
if HAVE_NSS
libsss_certmap_la_SOURCES += \
......@@ -3860,6 +3862,21 @@ test_iobuf_LDADD = \
$(SSSD_LIBS) \
$(NULL)
test_confdb_SOURCES = \
src/tests/cmocka/confdb/test_confdb.c \
$(NULL)
test_confdb_CFLAGS = \
$(AM_CFLAGS) \
$(NULL)
test_confdb_LDADD = \
$(CMOCKA_LIBS) \
$(LDB_LIBS) \
$(POPT_LIBS) \
$(TALLOC_LIBS) \
$(SSSD_INTERNAL_LTLIBS) \
libsss_test_common.la \
$(NULL)
EXTRA_simple_access_tests_DEPENDENCIES = \
$(ldblib_LTLIBRARIES)
simple_access_tests_SOURCES = \
......@@ -4589,7 +4606,7 @@ libsss_ad_la_CFLAGS = \
$(KRB5_CFLAGS) \
$(NDR_NBT_CFLAGS) \
$(NDR_KRB5PAC_CFLAGS) \
$(SMBCLIENT_CFLAGS)
$(NULL)
libsss_ad_la_LIBADD = \
$(LDB_LIBS) \
$(OPENLDAP_LIBS) \
......@@ -4600,10 +4617,10 @@ libsss_ad_la_LIBADD = \
$(NDR_NBT_LIBS) \
$(NDR_KRB5PAC_LIBS) \
$(SSSD_INTERNAL_LTLIBS) \
$(SMBCLIENT_LIBS) \
libsss_ldap_common.la \
libsss_krb5_common.la \
libsss_idmap.la
libsss_idmap.la \
$(NULL)
libsss_ad_la_LDFLAGS = \
-avoid-version \
-module
......
......@@ -19,19 +19,19 @@ SSSD maintains two release streams - stable and LTM. Releases designated as
LTM are long-term maintenance releases and will see bugfixes and security
patches for a longer time than other releases.
The list of all releases is maintained together with [SSSD documentation](https://sssd.github.io/users/releases.html).
The list of all releases is maintained together with [SSSD documentation](https://sssd.io/docs/users/releases.html).
## Building and installation from source
Please see the [our developer documentation](https://sssd.github.io/developers/).
Please see the [our developer documentation](https://sssd.io/docs/developers/).
## Documentation
The most up-to-date documentation can be found at https://sssd.github.io.
The most up-to-date documentation can be found at https://sssd.io.
Its source code is hosted at https://github.com/SSSD/sssd.github.io.
## Submitting bugs
Please file an issue in the [SSSD github instance](https://github.com/SSSD/sssd/issues).
Make sure to follow the [guide on reporting SSSD bugs](https://sssd.github.io/users/reporting_bugs.html).
Make sure to follow the [guide on reporting SSSD bugs](https://sssd.io/docs/users/reporting_bugs.html).
## Licensing
Please see the file called [COPYING](COPYING).
......
......@@ -728,23 +728,6 @@ Requires: libsss_simpleifp = %{version}-%{release}
%description -n libsss_simpleifp-devel
Provides library that simplifies D-Bus API for the SSSD InfoPipe responder.
%package libwbclient
Summary: The SSSD libwbclient implementation
Group: Applications/System
License: GPLv3+ and LGPLv3+
Requires: libsss_nss_idmap = %{version}-%{release}
%description libwbclient
The SSSD libwbclient implementation.
%package libwbclient-devel
Summary: Development libraries for the SSSD libwbclient implementation
Group: Development/Libraries
License: GPLv3+ and LGPLv3+
%description libwbclient-devel
Development libraries for the SSSD libwbclient implementation.
%package winbind-idmap
Summary: SSSD's idmap_sss Backend for Winbind
Group: Applications/System
......@@ -1353,18 +1336,6 @@ done
%{python3_sitearch}/pyhbac.so
%endif
%files libwbclient
%defattr(-,root,root,-)
%dir %{_libdir}/%{name}
%dir %{_libdir}/%{name}/modules
%{_libdir}/%{name}/modules/libwbclient.so.*
%files libwbclient-devel
%defattr(-,root,root,-)
%{_includedir}/wbclient_sssd.h
%{_libdir}/%{name}/modules/libwbclient.so
%{_libdir}/pkgconfig/wbclient_sssd.pc
%files winbind-idmap -f sssd_winbind_idmap.lang
%dir %{_libdir}/samba/idmap
%{_libdir}/samba/idmap/sss.so
......
sssd (2.3.1-1) unstable; urgency=medium
* New upstream release. (Closes: #965307, #965143)
* source: Extend diff-ignore.
* rules: Set --with-libwbclient.
* control: Add libsofthsm2 to build-depends for tests.
-- Timo Aaltonen <tjaalton@debian.org> Tue, 28 Jul 2020 17:14:55 +0300
sssd (2.3.0-2) unstable; urgency=medium
* rules: Drop quilt, autoreconf from dh.
......
......@@ -43,6 +43,7 @@ Build-Depends:
libselinux1-dev [linux-any],
libsemanage1-dev [linux-any],
libsmbclient-dev,
libsofthsm2,
libssl-dev,
libsystemd-dev [linux-any],
libtalloc-dev,
......
......@@ -43,6 +43,7 @@ override_dh_auto_configure:
--without-python2-bindings \
--with-syslog=journald \
--with-pid-path=/run \
--with-libwbclient=yes \
--with-sudo
override_dh_auto_test:
......
......@@ -2,4 +2,5 @@ extend-diff-ignore = .copr|.git-commit-template|.travis*|.tx|zanata.xml
extend-diff-ignore = contrib|po/cs.po|scripts/release.sh|src/man/po/LINGUAS
extend-diff-ignore = README.md|src/tests
extend-diff-ignore = Dockerfile*|Jenkinsfile|Vagrantfile
extend-diff-ignore = src/providers/data_provider/dp_pam_data.h|src/providers/data_provider/dp_sbus.c
\ No newline at end of file
extend-diff-ignore = src/providers/data_provider/dp_pam_data.h|src/providers/data_provider/dp_sbus.c
extend-diff-ignore = src/man/po/.*.po
# List of source files which contain translatable strings.
src/confdb/confdb_setup.c
src/config/SSSDConfig/__init__.py.in
src/config/SSSDConfig/sssdoptions.py
src/monitor/monitor.c
src/providers/krb5/krb5_child.c
src/providers/ldap/ldap_child.c
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.