samba-vl.spec 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484
  1. %define samba_version 4.10.10
  2. #define rc_number rc4
  3. %define samba_release 1
  4. %define doc_version 4.10.4
  5. %define api_version 4.0
  6. %define libwbc_soname 0
  7. %define libwbc_sover 0.15
  8. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  9. %global with_libsmbclient 1
  10. %global with_libwbclient 1
  11. %global with_mitkrb5 0
  12. %global with_dc 1
  13. %define _unpackaged_files_terminate_build 1
  14. %global _libexecdir %{_libdir}
  15. %global libwbc_alternatives_suffix %nil
  16. %if 0%{?__isa_bits} == 64
  17. %global libwbc_alternatives_suffix -64
  18. %endif
  19. %{?rc_number:%define rc_suffix .%{rc_number}}
  20. %define samba_source source3
  21. %global __perl_requires %{SOURCE999}
  22. %global __perllib_requires %{SOURCE999}
  23. %global __perllib_provides %{SOURCE999}
  24. Summary: The Samba Suite of programs
  25. Summary(ja): Samba スイート
  26. Name: samba
  27. Version: %{samba_version}
  28. Release: %{samba_release}%{?rc_suffix}%{?_dist_release}
  29. License: GPLv3+
  30. Group: System Environment/Daemons
  31. URL: http://www.samba.org/
  32. %define samba_includedir %{_includedir}/samba-%{api_version}
  33. Source: https://download.samba.org/pub/samba/stable/samba-%{version}%{?rc_number}.tar.gz
  34. # Vine specific replacement-files
  35. Source1: samba.log
  36. # https://ja.osdn.net/projects/samba-jp/releases/p16213
  37. Source2: samba-ja-docs-%{doc_version}.tar.gz
  38. Source5: pam_winbind.conf
  39. Source6: samba.pamd
  40. Source100: nmb.init
  41. Source101: smb.init
  42. Source102: winbind.init
  43. Source103: smb.conf
  44. Source104: samba.sysconfig
  45. Source200: samba4.init
  46. Source201: named.conf.dlz
  47. Source999: perl-requires.sh
  48. Requires: /sbin/chkconfig /bin/mktemp /usr/bin/killall
  49. Requires: fileutils sed /etc/init.d
  50. Requires: logrotate
  51. Requires: libaio
  52. Requires: %{name}-common = %{samba_version}-%{release}
  53. Requires: %{name}-libs = %{samba_version}-%{release}
  54. Requires(pre): %{name}-common = %{samba_version}-%{release}
  55. Conflicts: samba < %{version}
  56. Provides: samba = %{version}
  57. Obsoletes: ctdb <= 2.5.5
  58. BuildRoot: %{_tmppath}/%{name}-%{samba_version}-%{release}-root
  59. Requires(post): /sbin/chkconfig, /sbin/service
  60. Requires(preun): /sbin/chkconfig, /sbin/service
  61. BuildRequires: avahi-devel
  62. #BuildRequires: ctdb-devel
  63. BuildRequires: cups-devel
  64. BuildRequires: cyrus-sasl-devel
  65. BuildRequires: docbook-style-xsl
  66. BuildRequires: docbook-utils
  67. BuildRequires: e2fsprogs-devel
  68. BuildRequires: coreutils
  69. BuildRequires: gdb
  70. BuildRequires: gettext
  71. BuildRequires: gnutls-devel
  72. BuildRequires: gpgme-devel
  73. BuildRequires: jansson-devel
  74. BuildRequires: keyutils-libs-devel
  75. BuildRequires: krb5-devel
  76. BuildRequires: krb5-workstation
  77. #BuildRequires: ldb-tools
  78. BuildRequires: libacl-devel
  79. BuildRequires: libaio-devel
  80. BuildRequires: libarchive-devel
  81. BuildRequires: libattr-devel
  82. BuildRequires: libblkid-devel
  83. BuildConflicts: libbsd-devel
  84. BuildRequires: libcap-devel
  85. BuildRequires: libidn-devel
  86. #BuildRequires: libldb-devel >= 1.1.25
  87. BuildRequires: libpcap-devel
  88. BuildRequires: libtdb-devel
  89. #BuildRequires: libtevent-devel
  90. BuildRequires: libtirpc-devel
  91. BuildRequires: libuuid-devel
  92. BuildRequires: libxcrypt-devel
  93. BuildRequires: libxml2-devel
  94. BuildRequires: libxslt
  95. BuildRequires: ncurses-devel
  96. BuildRequires: net-tools
  97. BuildRequires: openldap-devel
  98. BuildRequires: pam-devel
  99. BuildRequires: perl(ExtUtils::MakeMaker)
  100. BuildRequires: perl(Parse::Yapp)
  101. BuildRequires: pkgconfig
  102. BuildRequires: popt-devel
  103. BuildRequires: python3-devel
  104. BuildRequires: python3-rpm-macros
  105. BuildRequires: python3-gpg
  106. BuildRequires: python3-tdb
  107. #BuildRequires: python3-ldb-devel
  108. #BuildRequires: python3-talloc-devel
  109. #BuildRequires: python3-tevent
  110. BuildRequires: rpcgen
  111. BuildRequires: readline-devel
  112. BuildRequires: sqlite-devel
  113. BuildRequires: zlib-devel
  114. #BuildRequires: libuuid-devel
  115. BuildConflicts: compat32-zlib-devel.32bit
  116. BuildConflicts: compat32-libuuid.32bit
  117. BuildConflicts: compat32-libuuid-devel.32bit
  118. # Working around perl dependency problem from docs
  119. #define __perl_requires %{SOURCE999}
  120. Vendor: Project Vine
  121. Distribution: Vine Linux
  122. Packager: tomop
  123. %description
  124. Samba is the standard Windows interoperability suite of programs
  125. for Linux and Unix.
  126. %description -l ja
  127. SambaはLinux・UNIX用の、Windowsとの標準的な相互運用性ソフトウェア群です。
  128. ## --------------------------------------------------------------------
  129. %package client
  130. Summary: Samba client programs
  131. Summary(ja): Samba クライアントプログラム
  132. Group: Applications/System
  133. Requires: samba-common = %{samba_version}-%{release}
  134. Obsoletes: smbfs
  135. Conflicts: %{name}-client < %{samba_version}
  136. Provides: samba-client = %{samba_version}
  137. %description client
  138. The samba-client package provides some SMB/CIFS clients to complement
  139. the built-in SMB/CIFS filesystem in Linux. These clients allow access
  140. of SMB/CIFS shares and printing to SMB/CIFS printers.
  141. %description client -l ja
  142. samba-client は Linux カーネルがサポートしている SMB ファイルシステム
  143. 機能を操作する SMB クライアントを提供します。
  144. これらは SMB 共有のアクセスと SMB プリンタへの印刷を実現します。
  145. ## --------------------------------------------------------------------
  146. %package libs
  147. Summary: Samba libraries
  148. Summary(ja): Samba ライブラリ
  149. Group: System Environment/Libraries
  150. %if %with_libwbclient
  151. Requires: libwbclient
  152. %endif
  153. Obsoletes: libtalloc <= 2.1.14
  154. Obsoletes: libtevent <= 0.9.37
  155. Obsoletes: libldb <= 1.4.6
  156. %description libs
  157. The samba4-libs package contains the libraries needed by programs that
  158. link against the SMB, RPC and other protocols provided by the Samba suite.
  159. ## --------------------------------------------------------------------
  160. %package python
  161. Summary: Samba Python libraries
  162. Summary(ja): Python 向け Samba ライブラリ
  163. Group: System Environment/Libraries
  164. Requires: %{name}-libs = %{samba_version}
  165. Provides: %{name}-python3 = %{version}-%{release}
  166. %description python
  167. The samba4-python package contains the Python libraries needed by programs
  168. that use SMB, RPC and other Samba provided protocols in Python programs.
  169. ## --------------------------------------------------------------------
  170. %package devel
  171. Summary: Developer tools for Samba libraries
  172. Summary(ja): Samba ライブラリの開発用ファイル
  173. Group: Development/Libraries
  174. Requires: %{name}-libs = %{samba_version}-%{release}
  175. Conflicts: samba-devel < %{samba_version}
  176. Provides: samba-devel = %{samba_version}
  177. %description devel
  178. The samba4-devel package contains the header files for the libraries
  179. needed to develop programs that link against the SMB, RPC and other
  180. libraries in the Samba suite.
  181. ## --------------------------------------------------------------------
  182. %package pidl
  183. Summary: Perl IDL compiler
  184. Group: Development/Tools
  185. Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
  186. %description pidl
  187. The samba4-pidl package contains the Perl IDL compiler used by Samba
  188. and Wireshark to parse IDL and similar protocols
  189. ## --------------------------------------------------------------------
  190. %package common
  191. Summary: Files used by both Samba servers and clients
  192. Summary(ja): Samba サーバーとクライアントの両方に使用されるファイル
  193. Group: System Environment/Libraries
  194. Conflicts: samba-common < %{samba_version}
  195. Provides: samba-common = %{samba_version}-%{release}
  196. Requires: %{name}-libs = %{samba_version}-%{release}
  197. Requires: pam
  198. Requires(pre): /usr/sbin/groupadd
  199. Requires(post): /sbin/chkconfig, /sbin/service, coreutils, acl
  200. Requires(preun): /sbin/chkconfig, /sbin/service
  201. Obsoletes: samba-swat < 4.1.0
  202. %description common
  203. Samba-common provides files necessary for both the server and client
  204. packages of Samba.
  205. %description common -l ja
  206. samba-common は Samba のサーバーとクライアントの両方のパッケージで
  207. 使用される共通のファイルを提供します。
  208. ## --------------------------------------------------------------------
  209. %package test
  210. Summary: Testing tools for Samba servers and clients
  211. Group: Applications/System
  212. %description test
  213. samba4-test provides testing tools for both the server and client
  214. packages of Samba.
  215. ## --------------------------------------------------------------------
  216. %package winbind
  217. Summary: Samba winbind
  218. Group: System Environment/Daemons
  219. Conflicts: samba-winbind < %{samba_version}
  220. Provides: samba-winbind = %{samba_version}
  221. Requires: samba-common = %{samba_version}-%{release}
  222. Requires(pre): /usr/sbin/groupadd
  223. Requires(post): /sbin/chkconfig, /sbin/service, coreutils
  224. Requires(preun): /sbin/chkconfig, /sbin/service
  225. %description winbind
  226. The samba-winbind package provides the winbind daemon, a NSS library, a PAM
  227. module and some client tools. Winbind enables Linux to be a full member in
  228. Windows domains and to use Windows user and group accounts on Linux.
  229. ## --------------------------------------------------------------------
  230. %package winbind-krb5-locator
  231. Summary: Samba winbind krb5 locator
  232. Group: Applications/System
  233. Requires: %{name}-winbind-clients = %{samba_version}-%{release}
  234. Conflicts: samba-winbind-krb5-locator < %{samba_version}
  235. Provides: samba-winbind-krb5-locator = %{samba_version}-%{release}
  236. %description winbind-krb5-locator
  237. The winbind krb5 locator is a plugin for the system kerberos library
  238. to allow the local kerberos library to use the same KDC as samba and
  239. winbind use
  240. ## --------------------------------------------------------------------
  241. %package winbind-clients
  242. Summary: Samba winbind clients
  243. Group: Applications/System
  244. Conflicts: samba-winbind-clients < %{samba_version}
  245. Provides: samba-winbind-clients = %{samba_version}
  246. %description winbind-clients
  247. The %{name}-winbind-clients package provides the NSS library and a PAM
  248. module necessary to communicate to the Winbind Daemon
  249. ## --------------------------------------------------------------------
  250. %package -n libsmbclient
  251. Summary: The SMB client library
  252. Summary(ja): SMB クライアントライブラリ
  253. Group: System Environment/Libraries
  254. Requires: %{name}-common = %{samba_version}
  255. Conflicts: libsmbclient < %{samba_version}
  256. Provides: libsmbclient = %{samba_version}
  257. %description -n libsmbclient
  258. The libsmbclient contains the SMB client library from the Samba suite.
  259. %description -n libsmbclient -l ja
  260. libsmbclient は Samba クライアントの機能を提供するライブラリを
  261. 提供します。
  262. ## --------------------------------------------------------------------
  263. %package -n libsmbclient-devel
  264. Summary: Developer tools for the SMB client library
  265. Summary(ja): SMB クライアントライブラリ開発用ファイル
  266. Group: Development/Libraries
  267. Requires: libsmbclient = %{samba_version}
  268. Conflicts: libsmbclient-devel < %{samba_version}
  269. Provides: libsmbclient-devel = %{samba_version}
  270. %description -n libsmbclient-devel
  271. The libsmbclient-devel package contains the header files and libraries
  272. needed to develop programs that link against the SMB client library
  273. in the Samba suite.
  274. %description -n libsmbclient-devel -l ja
  275. libsmbclient-devel は Samba クライアントの機能を提供するライブラリを
  276. 使ったアプリケーションを開発するためのファイルを提供します。
  277. ## --------------------------------------------------------------------
  278. %if %with_libwbclient
  279. %package -n libwbclient
  280. Summary: The winbind client library
  281. Summary(ja): Winbind クライアントライブラリ
  282. Group: System Environment/Libraries
  283. %description -n libwbclient
  284. The libwbclient package contains the winbind client library from
  285. the Samba suite.
  286. ## --------------------------------------------------------------------
  287. %package -n libwbclient-devel
  288. Summary: Developer tools for the winbind library
  289. Summary(ja): Winbind ライブラリの開発用ファイル
  290. Group: Development/Libraries
  291. Requires: libwbclient = %{samba_version}-%{release}
  292. %description -n libwbclient-devel
  293. The libwbclient-devel package provides developer tools for the wbclient
  294. library.
  295. %endif # with_libwbclient
  296. ## --------------------------------------------------------------------
  297. %package dc
  298. Summary: Samba AD Domain Controller
  299. Group: Applications/System
  300. Requires: %{name} = %{samba_version}-%{release}
  301. Requires: %{name}-winbind = %{samba_version}-%{release}
  302. Requires: %{name}-client = %{samba_version}-%{release}
  303. Requires: %{name}-python = %{samba_version}-%{release}
  304. Requires: python3-dns
  305. Requires(post): /sbin/chkconfig, /sbin/service, acl
  306. %description dc
  307. The %{name}-dc package provides AD Domain Controller functionality
  308. ## --------------------------------------------------------------------
  309. %package dc-libs
  310. Summary: Samba AD Domain Controller Libraries
  311. Summary(ja): Samba AD ドメインコントローラ ライブラリ
  312. Group: System Environment/Libraries
  313. Requires: %{name}-libs = %{samba_version}
  314. %description dc-libs
  315. The samba-dc-libs package contains the libraries needed by the DC to
  316. link against the SMB, RPC and other protocols.
  317. ## --------------------------------------------------------------------
  318. %if %build_compat32
  319. %package -n compat32-samba-libs
  320. Summary: Samba libraries
  321. Summary(ja): Samba ライブラリ
  322. Group: System Environment/Libraries
  323. %if %with_libwbclient
  324. Requires: libwbclient
  325. %endif
  326. %description -n compat32-samba-libs
  327. The samba4-libs package contains the libraries needed by programs that
  328. link against the SMB, RPC and other protocols provided by the Samba suite.
  329. ## --------------------------------------------------------------------
  330. %package -n compat32-libsmbclient
  331. Summary: The SMB client library
  332. Summary(ja): SMB クライアントライブラリ
  333. Group: System Environment/Libraries
  334. Requires: samba-common = %{samba_version}-%{release}
  335. %description -n compat32-libsmbclient
  336. The libsmbclient contains the SMB client library from the Samba suite.
  337. %description -n compat32-libsmbclient -l ja
  338. libsmbclient は Samba クライアントの機能を提供するライブラリを
  339. 提供します。
  340. ## --------------------------------------------------------------------
  341. %package -n compat32-libwbclient
  342. Summary: The winbind client library
  343. Summary(ja): Winbind クライアントライブラリ
  344. Group: System Environment/Libraries
  345. Requires: samba-common = %{samba_version}-%{release}
  346. Requires(pre): /usr/sbin/groupadd
  347. Requires(post): /sbin/chkconfig, /sbin/service, coreutils
  348. Requires(preun): /sbin/chkconfig, /sbin/service
  349. %description -n compat32-libwbclient
  350. The libwbclient package contains the winbind client library from
  351. the Samba suite.
  352. %endif
  353. ## ====================================================================
  354. %prep
  355. %setup -q -n samba-%{samba_version}%{?rc_number}
  356. mkdir -p docs-ja
  357. pushd docs-ja
  358. tar zxf %{SOURCE2}
  359. popd
  360. ## ====================================================================
  361. %build
  362. %global _tdb_lib ,!tdb,!pytdb
  363. %global _talloc_lib ,talloc,pytalloc,pytalloc-util
  364. %global _tevent_lib ,tevent,pytevent
  365. %global _ldb_lib ,ldb,pyldb
  366. %global _samba4_libraries heimdal,!zlib,ctdb,!popt%{_talloc_lib}%{_tevent_lib}%{_tdb_lib}%{_ldb_lib}
  367. %global _samba4_idmap_modules idmap_ad,idmap_rid,idmap_adex,idmap_hash,idmap_tdb2
  368. %global _samba4_pdb_modules pdb_tdbsam,pdb_ldap,pdb_ads,pdb_smbpasswd,pdb_wbc_sam,pdb_samba4
  369. %global _samba4_auth_modules auth_unix,auth_wbc,auth_server,auth_netlogond,auth_script,auth_samba4
  370. %global _samba4_modules %{_samba4_idmap_modules},%{_samba4_pdb_modules},%{_samba4_auth_modules}
  371. %global _libsmbclient %nil
  372. %global _libwbclient %nil
  373. %if ! %with_libsmbclient
  374. %global _libsmbclient smbclient,
  375. %endif
  376. %if ! %with_libwbclient
  377. %global _libwbclient wbclient,
  378. %endif
  379. %global _samba4_private_libraries %{_libsmbclient}%{_libwbclient}
  380. sed \
  381. -e 's|@PROG_CMD@|%{_sbindir}\/samba|g' \
  382. -e 's|@SAMBA_PID@|%{_var}\/run\/samba/samba\.pid|g' \
  383. %{SOURCE200} > samba4.init
  384. make distclean
  385. ##export PATH=$PATH:$PWD/buildtools/bin
  386. export PYTHON=%{__python3}
  387. LDFLAGS="-Wl,-z,relro,-z,now" \
  388. %configure \
  389. --enable-fhs \
  390. --enable-gnutls \
  391. --bundled-libraries=%{_samba4_libraries} \
  392. --with-shared-modules=%{_samba4_modules} \
  393. --with-pam \
  394. --without-fam \
  395. --disable-rpath-install \
  396. --with-cachedir=/var/lib/samba \
  397. --with-configdir=%{_sysconfdir}/samba \
  398. --with-lockdir=/var/lib/samba \
  399. --with-logfilebase=/var/log/samba \
  400. --with-modulesdir=%{_libdir}/samba \
  401. --with-pammodulesdir=/%{_lib}/security \
  402. --with-piddir=/var/run/samba \
  403. --with-privatedir=/var/lib/samba/private \
  404. --with-sockets-dir=/var/run/samba \
  405. --without-ldb-lmdb
  406. # --bundled-libraries=NONE \
  407. # --with-system-mitkrb5 \
  408. # --with-cluster-support \
  409. # try and build the manpages
  410. #./release-scripts/build-manpages-nogit
  411. make %{?_smp_mflags}
  412. # Remove some permission bits to avoid to many dependencies
  413. find examples docs-xml -type f | xargs -r chmod -x
  414. ## ====================================================================
  415. %install
  416. rm -rf %{buildroot}
  417. make %{?_smp_mflags} install DESTDIR=%{buildroot}
  418. # Create the target build directory hierarchy
  419. mkdir -p %{buildroot}%{samba_includedir}
  420. mkdir -p %{buildroot}%{_initrddir}
  421. mkdir -p %{buildroot}%{_sysconfdir}/{pam.d,samba,logrotate.d}
  422. mkdir -p %{buildroot}%{_sysconfdir}/{samba,security,sysconfig}
  423. mkdir -p %{buildroot}%{_sysconfdir}/xinetd.d
  424. mkdir -p %{buildroot}/%{_libdir}/krb5/plugins/libkrb5
  425. install -d -m 0755 %{buildroot}/usr/{sbin,bin}
  426. install -d -m 0755 %{buildroot}%{_libdir}/security
  427. install -d -m 0755 %{buildroot}/var/lib/samba
  428. install -d -m 0755 %{buildroot}/var/lib/samba/msg
  429. install -d -m 0755 %{buildroot}/var/lib/samba/private
  430. install -d -m 0755 %{buildroot}/var/lib/samba/winbindd_privileged
  431. install -d -m 0755 %{buildroot}/var/lib/samba/scripts
  432. install -d -m 0755 %{buildroot}/var/lib/samba/sysvol
  433. install -d -m 0755 %{buildroot}/var/log/samba/old
  434. install -d -m 0755 %{buildroot}/var/run/samba
  435. install -d -m 0755 %{buildroot}/var/run/winbindd
  436. install -d -m 0755 %{buildroot}/var/spool/samba
  437. install -d -m 0755 %{buildroot}/%{_libdir}/samba
  438. install -d -m 0755 %{buildroot}/%{_libdir}/pkgconfig
  439. # initscripts
  440. install -m755 %{SOURCE100} %{buildroot}%{_initrddir}/nmb
  441. install -m755 %{SOURCE101} %{buildroot}%{_initrddir}/smb
  442. install -m755 %{SOURCE102} %{buildroot}%{_initrddir}/winbind
  443. install -m755 samba4.init %{buildroot}%{_initrddir}/samba
  444. # pam
  445. install -m644 %{SOURCE6} %{buildroot}%{_sysconfdir}/pam.d/samba
  446. # Move libwbclient.so* into private directory, it cannot be just libdir/samba
  447. # because samba uses rpath with this directory.
  448. install -d -m 0755 %{buildroot}/%{_libdir}/samba/wbclient
  449. mv %{buildroot}/%{_libdir}/libwbclient.so* %{buildroot}/%{_libdir}/samba/wbclient
  450. # Install other stuff
  451. install -m 0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/logrotate.d/samba
  452. install -m644 %{SOURCE103} ./smb.conf.example
  453. install -d -m 0755 %{buildroot}%{_sysconfdir}/security
  454. install -m 0644 %{SOURCE5} %{buildroot}%{_sysconfdir}/security/pam_winbind.conf
  455. echo 127.0.0.1 localhost > %{buildroot}%{_sysconfdir}/samba/lmhosts
  456. # openLDAP database schema
  457. install -d -m 0755 %{buildroot}%{_sysconfdir}/openldap/schema
  458. install -m644 examples/LDAP/samba.schema %{buildroot}%{_sysconfdir}/openldap/schema/samba.schema
  459. install -m 0744 packaging/printing/smbprint %{buildroot}%{_bindir}/smbprint
  460. #install -d -m 0755 %{buildroot}%{_prefix}/lib/tmpfiles.d/
  461. #install -m644 packaging/systemd/samba.conf.tmp %{buildroot}%{_prefix}/lib/tmpfiles.d/samba.conf
  462. # create /var/run/samba too.
  463. #echo "d /var/run/samba 755 root root" >> %{buildroot}%{_prefix}/lib/tmpfiles.d/samba.conf
  464. #echo "d /var/run/ctdb 755 root root" >> %{buildroot}%{_tmpfilesdir}/ctdb.conf
  465. install -d -m 0755 %{buildroot}%{_sysconfdir}/sysconfig
  466. install -m 0644 %{SOURCE104} %{buildroot}%{_sysconfdir}/sysconfig/samba
  467. #install -m 0644 ctdb/config/ctdb.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/ctdb
  468. # winbind krb5 locator
  469. install -d -m 0755 %{buildroot}%{_libdir}/krb5/plugins/libkrb5
  470. touch %{buildroot}%{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
  471. # This makes the right links, as rpmlint requires that
  472. # the ldconfig-created links be recorded in the RPM.
  473. /sbin/ldconfig -N -n %{buildroot}%{_libdir}
  474. rm -rf docs-ja
  475. mkdir -p docs-ja
  476. pushd docs-ja
  477. tar zxf %{SOURCE2}
  478. popd
  479. find docs-ja/docs-xml/output/manpages/ -type f| while read f; do
  480. c=`echo -n $f | sed -e 's,^.*\.,,'`
  481. gzip -9 $f
  482. mkdir -p %{buildroot}%{_mandir}/ja/man$c
  483. cp -f $f.gz %{buildroot}%{_mandir}/ja/man$c/
  484. done
  485. ## ====================================================================
  486. %clean
  487. rm -rf %{buildroot}
  488. %pre
  489. if [ "$1" -eq "2" ]; then
  490. PREV=`/usr/sbin/smbd -V 2>/dev/null | sed -e 's/^Version \([0-9]*\)\..*$/\1/'`
  491. if [ "x$PREV" == "x3" ]; then
  492. /sbin/service smb stop >/dev/null 2>&1 || :
  493. /sbin/service nmb stop >/dev/null 2>&1 || :
  494. cp -af %{_sysconfdir}/samba/smb.conf %{_sysconfdir}/samba/smb.conf.samba3
  495. cp -af /var/lib/samba /var/lib/samba3
  496. echo "Samba is upgraded from version 3.x to 4.x and daemons are stopped."
  497. echo "Please check and update configurations."
  498. echo
  499. echo "The old files are copied:"
  500. echo " /etc/samba/smb.conf -> /etc/samba/smb.conf.samba3"
  501. echo " /var/lib/samba -> /var/lib/samba3"
  502. echo
  503. fi
  504. fi
  505. ## ====================================================================
  506. %post
  507. if [ $1 -eq 1 ]; then # Install
  508. # chkconfig
  509. /sbin/chkconfig --add smb
  510. /sbin/chkconfig --add nmb
  511. fi
  512. if [ $1 -ge 2 ]; then # Upgrade
  513. /sbin/service smb condrestart >/dev/null 2>&1 || :
  514. /sbin/service nmb condrestart >/dev/null 2>&1 || :
  515. fi
  516. exit 0
  517. ## --------------------------------------------------------------------
  518. %preun
  519. if [ $1 = 0 ] ; then
  520. /sbin/service smb stop >/dev/null 2>&1 || :
  521. /sbin/service nmb stop >/dev/null 2>&1 || :
  522. /sbin/service samba stop >/dev/null 2>&1 || :
  523. /sbin/chkconfig --del smb
  524. /sbin/chkconfig --del nmb
  525. /sbin/chkconfig --del samba
  526. # rm -rf /var/log/samba/* /var/lib/samba/*
  527. fi
  528. exit 0
  529. ## --------------------------------------------------------------------
  530. %pre winbind
  531. /usr/sbin/groupadd -g 88 wbpriv >/dev/null 2>&1 || :
  532. ## --------------------------------------------------------------------
  533. %post winbind
  534. /sbin/chkconfig --add winbind
  535. if [ "$1" -ge "1" ]; then
  536. /sbin/service winbind condrestart >/dev/null 2>&1 || :
  537. fi
  538. ## --------------------------------------------------------------------
  539. %post dc
  540. if [ $1 -eq 1 ]; then # Install
  541. # modify named.conf.dlz for DLZ configuration if version 9.9.0 or later
  542. if [ -f /usr/sbin/named ]; then
  543. bind_minor_ver=$(named -v | sed -e "s|^BIND \([.0-9]*\)|\1|" | cut -d "." -f 2)
  544. if [ $bind_minor_ver -gt 8 ]; then
  545. cat %{_datadir}/samba/setup/named.conf.dlz \
  546. | sed -e "s|\(database.*dlz_bind9.so\)|# \1|" > %{_datadir}/samba/setup/named.conf.dlz9
  547. cat %{_datadir}/samba/setup/named.conf.dlz9 > %{_datadir}/samba/setup/named.conf.dlz
  548. rm %{_datadir}/samba/setup/named.conf.dlz9
  549. fi
  550. fi
  551. /sbin/chkconfig --add samba
  552. # rename original smb.conf for provisioning
  553. if [ -f /etc/samba/smb.conf ]; then
  554. mv -f %{_sysconfdir}/samba/smb.conf %{_sysconfdir}/samba/smb.conf.old
  555. fi
  556. fi
  557. setfacl -m u:named:rwx /var/lib/samba/private >/dev/null 2>/dev/null || :
  558. if [ -d /var/lib/samba/private/tls ]; then
  559. chmod 0700 /var/lib/samba/private/tls
  560. fi
  561. if [ -f /var/lib/samba/private/tls/key.pem ]; then
  562. chmod 0600 /var/lib/samba/private/tls/key.pem
  563. fi
  564. if [ $1 -ge 2 ]; then # Upgrade
  565. if [ -f /var/run/samba/samba.pid ]; then
  566. /sbin/service samba restart >/dev/null 2>&1 || :
  567. fi
  568. fi
  569. ## --------------------------------------------------------------------
  570. %post common
  571. /sbin/ldconfig
  572. setfacl -m u:named:rwx /var/lib/samba/private >/dev/null 2>/dev/null || :
  573. ## --------------------------------------------------------------------
  574. %preun winbind
  575. if [ $1 = 0 ] ; then
  576. /sbin/service winbind stop >/dev/null 2>&1 || :
  577. /sbin/chkconfig --del winbind
  578. fi
  579. exit 0
  580. ## --------------------------------------------------------------------
  581. %postun common
  582. /sbin/ldconfig
  583. ## --------------------------------------------------------------------
  584. %post libs
  585. /sbin/ldconfig
  586. ## --------------------------------------------------------------------
  587. %postun libs
  588. /sbin/ldconfig
  589. ## --------------------------------------------------------------------
  590. %post -n libsmbclient
  591. /sbin/ldconfig
  592. ## --------------------------------------------------------------------
  593. %postun -n libsmbclient
  594. /sbin/ldconfig
  595. ## --------------------------------------------------------------------
  596. %posttrans -n libwbclient
  597. # It has to be posttrans here to make sure all files of a previous version
  598. # without alternatives support are removed
  599. %{_sbindir}/update-alternatives \
  600. --install \
  601. %{_libdir}/libwbclient.so.%{libwbc_sover} \
  602. libwbclient.so.%{libwbc_sover}%{libwbc_alternatives_suffix} \
  603. %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_sover} \
  604. 10 \
  605. --slave \
  606. %{_libdir}/libwbclient.so.%{libwbc_soname} \
  607. libwbclient.so.%{libwbc_soname}%{libwbc_alternatives_suffix} \
  608. %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_soname}
  609. /sbin/ldconfig
  610. ## --------------------------------------------------------------------
  611. %preun -n libwbclient
  612. %{_sbindir}/update-alternatives \
  613. --remove \
  614. libwbclient.so.%{libwbc_sover}%{libwbc_alternatives_suffix} \
  615. %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_sover}
  616. /sbin/ldconfig
  617. ## --------------------------------------------------------------------
  618. %posttrans -n libwbclient-devel
  619. %{_sbindir}/update-alternatives \
  620. --install \
  621. %{_libdir}/libwbclient.so \
  622. libwbclient.so%{libwbc_alternatives_suffix} \
  623. %{_libdir}/samba/wbclient/libwbclient.so \
  624. 10
  625. ## --------------------------------------------------------------------
  626. %preun -n libwbclient-devel
  627. # alternatives checks if the file which should be removed is a link or not, but
  628. # not if it points to the /etc/alternatives directory or to some other place.
  629. # When downgrading to a version where alternatives is not used and
  630. # libwbclient.so is a link and not a file it will be removed. The following
  631. # check removes the alternatives files manually if that is the case.
  632. if [ "`readlink %{_libdir}/libwbclient.so`" == "libwbclient.so.%{libwbc_sover}" ]; then
  633. /bin/rm -f \
  634. /etc/alternatives/libwbclient.so%{libwbc_alternatives_suffix} \
  635. /var/lib/rpm/alternatives/libwbclient.so%{libwbc_alternatives_suffix} 2> /dev/null
  636. else
  637. %{_sbindir}/update-alternatives \
  638. --remove \
  639. libwbclient.so%{libwbc_alternatives_suffix} \
  640. %{_libdir}/samba/wbclient/libwbclient.so
  641. fi
  642. %if %build_compat32
  643. ## --------------------------------------------------------------------
  644. %post -n compat32-libsmbclient
  645. /sbin/ldconfig
  646. ## --------------------------------------------------------------------
  647. %postun -n compat32-libsmbclient
  648. /sbin/ldconfig
  649. ## --------------------------------------------------------------------
  650. %posttrans -n compat32-libwbclient
  651. # It has to be posttrans here to make sure all files of a previous version
  652. # without alternatives support are removed
  653. %{_sbindir}/update-alternatives \
  654. --install \
  655. %{_libdir}/libwbclient.so.%{libwbc_sover} \
  656. libwbclient.so.%{libwbc_sover}%{libwbc_alternatives_suffix} \
  657. %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_sover} \
  658. 10
  659. /sbin/ldconfig
  660. ## --------------------------------------------------------------------
  661. %preun -n compat32-libwbclient
  662. %{_sbindir}/update-alternatives \
  663. --remove \
  664. libwbclient.so.%{libwbc_sover}%{libwbc_alternatives_suffix} \
  665. %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_sover}
  666. /sbin/ldconfig
  667. %endif
  668. %files
  669. %defattr(-,root,root,-)
  670. %license COPYING
  671. %doc PFIF.txt README.md README.Coding README.contributing VERSION WHATSNEW.txt
  672. %doc docs-ja/docs-xml/output/htmldocs
  673. %{_bindir}/dumpmscat
  674. %{_bindir}/ldbadd
  675. %{_bindir}/ldbdel
  676. %{_bindir}/ldbedit
  677. %{_bindir}/ldbmodify
  678. %{_bindir}/ldbrename
  679. %{_bindir}/ldbsearch
  680. %{_bindir}/mvxattr
  681. %{_bindir}/smbstatus
  682. %{_sbindir}/eventlogadm
  683. %{_sbindir}/nmbd
  684. %{_sbindir}/smbd
  685. %{_libdir}/samba/auth
  686. %{_libdir}/samba/vfs
  687. %config(noreplace) %{_sysconfdir}/logrotate.d/samba
  688. %config(noreplace) %{_sysconfdir}/pam.d/samba
  689. %{_sysconfdir}/openldap/schema/samba.schema
  690. %attr(0700,root,root) %dir /var/log/samba
  691. %attr(0700,root,root) %dir /var/log/samba/old
  692. %attr(1777,root,root) %dir /var/spool/samba
  693. %{_initrddir}/nmb
  694. %{_initrddir}/smb
  695. %{_mandir}/man1/ldbadd.1*
  696. %{_mandir}/man1/ldbdel.1*
  697. %{_mandir}/man1/ldbedit.1*
  698. %{_mandir}/man1/ldbmodify.1*
  699. %{_mandir}/man1/ldbrename.1*
  700. %{_mandir}/man1/ldbsearch.1*
  701. %{_mandir}/man3/ldb.3*
  702. %{_mandir}/man3/talloc.3.gz
  703. %{_mandir}/man1/mvxattr.1*
  704. %{_mandir}/man1/smbstatus.1*
  705. %{_mandir}/man7/samba.7*
  706. %{_mandir}/man8/eventlogadm.8*
  707. %{_mandir}/man8/nmbd.8*
  708. %{_mandir}/man8/smbd.8*
  709. %{_mandir}/man8/vfs_acl_tdb.8*
  710. %{_mandir}/man8/vfs_acl_xattr.8*
  711. %{_mandir}/man8/vfs_aio_fork.8*
  712. %{_mandir}/man8/vfs_aio_pthread.8*
  713. %{_mandir}/man8/vfs_audit.8*
  714. %{_mandir}/man8/vfs_btrfs.8*
  715. #%{_mandir}/man8/vfs_cacheprime.8*
  716. %{_mandir}/man8/vfs_cap.8*
  717. %{_mandir}/man8/vfs_catia.8*
  718. #%{_mandir}/man8/vfs_ceph.8*
  719. %{_mandir}/man8/vfs_commit.8*
  720. %{_mandir}/man8/vfs_crossrename.8*
  721. %{_mandir}/man8/vfs_default_quota.8*
  722. %{_mandir}/man8/vfs_dirsort.8*
  723. %{_mandir}/man8/vfs_extd_audit.8*
  724. %{_mandir}/man8/vfs_fake_perms.8*
  725. %{_mandir}/man8/vfs_fileid.8*
  726. %{_mandir}/man8/vfs_fruit.8*
  727. %{_mandir}/man8/vfs_full_audit.8*
  728. %{_mandir}/man8/vfs_glusterfs_fuse.8*
  729. #%{_mandir}/man8/vfs_gpfs.8*
  730. %{_mandir}/man8/vfs_linux_xfs_sgid.8*
  731. %{_mandir}/man8/vfs_media_harmony.8*
  732. %{_mandir}/man8/vfs_netatalk.8*
  733. #%{_mandir}/man8/vfs_nfs4acl_xattr.8*
  734. %{_mandir}/man8/vfs_offline.8*
  735. #%{_mandir}/man8/vfs_prealloc.8*
  736. %{_mandir}/man8/vfs_preopen.8*
  737. %{_mandir}/man8/vfs_readahead.8*
  738. %{_mandir}/man8/vfs_readonly.8*
  739. %{_mandir}/man8/vfs_recycle.8*
  740. %{_mandir}/man8/vfs_shadow_copy.8*
  741. %{_mandir}/man8/vfs_shadow_copy2.8*
  742. %{_mandir}/man8/vfs_shell_snap.8*
  743. #%{_mandir}/man8/vfs_snapper.8*
  744. %{_mandir}/man8/vfs_streams_depot.8*
  745. %{_mandir}/man8/vfs_streams_xattr.8*
  746. %{_mandir}/man8/vfs_syncops.8*
  747. %{_mandir}/man8/vfs_time_audit.8*
  748. #%{_mandir}/man8/vfs_tsmsm.8*
  749. %{_mandir}/man8/vfs_unityed_media.8*
  750. %{_mandir}/man8/vfs_virusfilter.8*
  751. %{_mandir}/man8/vfs_worm.8*
  752. %{_mandir}/man8/vfs_xattr_tdb.8*
  753. # ja manuals
  754. %{_mandir}/ja/man1/mvxattr.1*
  755. %{_mandir}/ja/man1/smbstatus.1*
  756. %{_mandir}/ja/man7/samba.7*
  757. %{_mandir}/ja/man8/eventlogadm.8*
  758. %{_mandir}/ja/man8/nmbd.8*
  759. %{_mandir}/ja/man8/smbd.8*
  760. %{_mandir}/ja/man8/vfs_acl_tdb.8*
  761. %{_mandir}/ja/man8/vfs_acl_xattr.8*
  762. %{_mandir}/ja/man8/vfs_aio_fork.8*
  763. %{_mandir}/ja/man8/vfs_aio_pthread.8*
  764. %{_mandir}/ja/man8/vfs_audit.8*
  765. %{_mandir}/ja/man8/vfs_btrfs.8*
  766. %exclude %{_mandir}/ja/man8/vfs_cacheprime.8*
  767. %{_mandir}/ja/man8/vfs_cap.8*
  768. %{_mandir}/ja/man8/vfs_catia.8*
  769. %exclude %{_mandir}/ja/man8/vfs_ceph.8*
  770. %{_mandir}/ja/man8/vfs_commit.8*
  771. %{_mandir}/ja/man8/vfs_crossrename.8*
  772. %{_mandir}/ja/man8/vfs_default_quota.8*
  773. %{_mandir}/ja/man8/vfs_dirsort.8*
  774. %{_mandir}/ja/man8/vfs_extd_audit.8*
  775. %{_mandir}/ja/man8/vfs_fake_perms.8*
  776. %{_mandir}/ja/man8/vfs_fileid.8*
  777. %{_mandir}/ja/man8/vfs_fruit.8*
  778. %{_mandir}/ja/man8/vfs_full_audit.8*
  779. %exclude %{_mandir}/ja/man8/vfs_glusterfs.8*
  780. %exclude %{_mandir}/ja/man8/vfs_gpfs.8*
  781. %exclude %{_mandir}/ja/man8/vfs_nfs4acl_xattr.8*
  782. %{_mandir}/ja/man8/vfs_linux_xfs_sgid.8*
  783. %{_mandir}/ja/man8/vfs_media_harmony.8*
  784. %{_mandir}/ja/man8/vfs_netatalk.8*
  785. %{_mandir}/ja/man8/vfs_offline.8*
  786. %exclude %{_mandir}/ja/man8/vfs_prealloc.8*
  787. %{_mandir}/ja/man8/vfs_preopen.8*
  788. %{_mandir}/ja/man8/vfs_readahead.8*
  789. %{_mandir}/ja/man8/vfs_readonly.8*
  790. %{_mandir}/ja/man8/vfs_recycle.8*
  791. %{_mandir}/ja/man8/vfs_shadow_copy.8*
  792. %{_mandir}/ja/man8/vfs_shadow_copy2.8*
  793. %{_mandir}/ja/man8/vfs_shell_snap.8*
  794. %exclude %{_mandir}/ja/man8/vfs_snapper.8*
  795. %{_mandir}/ja/man8/vfs_streams_depot.8*
  796. %{_mandir}/ja/man8/vfs_streams_xattr.8*
  797. %{_mandir}/ja/man8/vfs_syncops.8*
  798. %{_mandir}/ja/man8/vfs_time_audit.8*
  799. %exclude %{_mandir}/ja/man8/vfs_tsmsm.8*
  800. %{_mandir}/ja/man8/vfs_unityed_media.8*
  801. %{_mandir}/ja/man8/vfs_virusfilter.8*
  802. %{_mandir}/ja/man8/vfs_worm.8*
  803. %{_mandir}/ja/man8/vfs_xattr_tdb.8*
  804. %{_mandir}/ja/man8/vfs_zfsacl.8*
  805. ## --------------------------------------------------------------------
  806. %files libs
  807. %defattr(-,root,root)
  808. %{_libdir}/libdcerpc-binding.so.*
  809. %{_libdir}/libdcerpc.so.*
  810. %{_libdir}/libndr-krb5pac.so.*
  811. %{_libdir}/libndr-nbt.so.*
  812. %{_libdir}/libndr-standard.so.*
  813. %{_libdir}/libndr.so.*
  814. %{_libdir}/libnetapi.so.*
  815. %{_libdir}/libsamba-credentials.so.*
  816. %{_libdir}/libsamba-errors.so*
  817. %{_libdir}/libsamba-hostconfig.so.*
  818. %{_libdir}/libsamba-passdb.so.*
  819. %{_libdir}/libsamba-util.so.*
  820. %{_libdir}/libsamdb.so.*
  821. %{_libdir}/libsmbconf.so.*
  822. %{_libdir}/libsmbldap.so.*
  823. %{_libdir}/libtevent-util.so.*
  824. # talloc
  825. %{_libdir}/samba/libtalloc.so*
  826. %{_libdir}/samba/libpytalloc-util.*.so.*
  827. # tevent
  828. %{_libdir}/samba/libtevent.so*
  829. # ldb
  830. %{_libdir}/samba/libldb.so*
  831. %{_libdir}/samba/libldb-*.so*
  832. %{_libdir}/samba/libpyldb-util.*.so.*
  833. # libraries needed by the public libraries
  834. %dir %{_libdir}/samba
  835. %{_libdir}/samba/libCHARSET3-samba4.so
  836. %{_libdir}/samba/libLIBWBCLIENT-OLD-samba4.so
  837. %{_libdir}/samba/libMESSAGING-samba4.so
  838. %{_libdir}/samba/libMESSAGING-SEND-samba4.so
  839. %{_libdir}/samba/libaddns-samba4.so
  840. %{_libdir}/samba/libads-samba4.so
  841. %{_libdir}/samba/libasn1-samba4.so.*
  842. %{_libdir}/samba/libasn1util-samba4.so
  843. #{_libdir}/samba/libauth-sam-reply-samba4.so
  844. %{_libdir}/samba/libauth-samba4.so
  845. %{_libdir}/samba/libauth-unix-token-samba4.so
  846. %{_libdir}/samba/libauth4-samba4.so
  847. %{_libdir}/samba/libauthkrb5-samba4.so
  848. %{_libdir}/samba/libcli-cldap-samba4.so
  849. %{_libdir}/samba/libcli-ldap-common-samba4.so
  850. %{_libdir}/samba/libcli-ldap-samba4.so
  851. %{_libdir}/samba/libcli-nbt-samba4.so
  852. %{_libdir}/samba/libcli-smb-common-samba4.so
  853. %{_libdir}/samba/libcli-spoolss-samba4.so
  854. %{_libdir}/samba/libcliauth-samba4.so
  855. %{_libdir}/samba/libclidns-samba4.so
  856. %{_libdir}/samba/libcluster-samba4.so
  857. %{_libdir}/samba/libcmdline-contexts-samba4.so
  858. %{_libdir}/samba/libcmdline-credentials-samba4.so
  859. %{_libdir}/samba/libcmocka-samba4.so
  860. %{_libdir}/samba/libcom_err-samba4.so*
  861. %{_libdir}/samba/libcommon-auth-samba4.so
  862. %{_libdir}/samba/libdb-glue-samba4.so
  863. %{_libdir}/samba/libdbwrap-samba4.so
  864. %{_libdir}/samba/libdcerpc-samba-samba4.so
  865. %{_libdir}/samba/libdcerpc-samba4.so
  866. %{_libdir}/samba/libdfs-server-ad-samba4.so
  867. %{_libdir}/samba/libdsdb-garbage-collect-tombstones-samba4.so
  868. %{_libdir}/samba/libdsdb-module-samba4.so
  869. %{_libdir}/samba/libevents-samba4.so
  870. %{_libdir}/samba/libflag-mapping-samba4.so
  871. %{_libdir}/samba/libgensec-samba4.so
  872. %{_libdir}/samba/libgpext-samba4.so
  873. %{_libdir}/samba/libgse-samba4.so
  874. %{_libdir}/samba/libgssapi-samba4.so.*
  875. %{_libdir}/samba/libhcrypto-samba4.so.*
  876. %{_libdir}/samba/libhdb-samba4.so.*
  877. %{_libdir}/samba/libheimbase-samba4.so.*
  878. %{_libdir}/samba/libhttp-samba4.so
  879. %{_libdir}/samba/libhx509-samba4.so.*
  880. %{_libdir}/samba/libinterfaces-samba4.so
  881. %{_libdir}/samba/libiov-buf-samba4.so
  882. %{_libdir}/samba/libkrb5-samba4.so.*
  883. %{_libdir}/samba/libkrb5samba-samba4.so
  884. %{_libdir}/samba/libldbsamba-samba4.so
  885. %{_libdir}/samba/liblibcli-lsa3-samba4.so
  886. %{_libdir}/samba/liblibcli-netlogon3-samba4.so
  887. %{_libdir}/samba/liblibsmb-samba4.so
  888. %{_libdir}/samba/libmessages-dgm-samba4.so
  889. %{_libdir}/samba/libmessages-util-samba4.so
  890. %{_libdir}/samba/libmscat-samba4.so
  891. %{_libdir}/samba/libmsghdr-samba4.so
  892. %{_libdir}/samba/libmsrpc3-samba4.so
  893. %{_libdir}/samba/libnon-posix-acls-samba4.so
  894. %{_libdir}/samba/libndr-samba-samba4.so
  895. %{_libdir}/samba/libndr-samba4.so
  896. %{_libdir}/samba/libnet-keytab-samba4.so
  897. %{_libdir}/samba/libnetif-samba4.so
  898. %{_libdir}/samba/libnpa-tstream-samba4.so
  899. %{_libdir}/samba/libnss-info-samba4.so
  900. %{_libdir}/samba/libposix-eadb-samba4.so
  901. %{_libdir}/samba/libprinting-migrate-samba4.so
  902. %{_libdir}/samba/libprocess-model-samba4.so
  903. %{_libdir}/samba/libregistry-samba4.so
  904. %{_libdir}/samba/libreplace-samba4.so
  905. %{_libdir}/samba/libroken-samba4.so.*
  906. %{_libdir}/samba/libsamba-cluster-support-samba4.so
  907. %{_libdir}/samba/libsamba-debug-samba4.so
  908. %{_libdir}/samba/libsamba-modules-samba4.so
  909. %{_libdir}/samba/libsamba-python.cpython-*-samba4.so
  910. %{_libdir}/samba/libsamba-security-samba4.so
  911. %{_libdir}/samba/libsamba-sockets-samba4.so
  912. %{_libdir}/samba/libsamba3-util-samba4.so
  913. %{_libdir}/samba/libsamdb-common-samba4.so
  914. %{_libdir}/samba/libsecrets3-samba4.so
  915. %{_libdir}/samba/libserver-role-samba4.so
  916. %{_libdir}/samba/libservice-samba4.so
  917. %{_libdir}/samba/libshares-samba4.so
  918. %{_libdir}/samba/libsmb-transport-samba4.so
  919. %{_libdir}/samba/libsmbclient-raw-samba4.so
  920. %{_libdir}/samba/libsmbd-base-samba4.so
  921. %{_libdir}/samba/libsmbd-conn-samba4.so
  922. %{_libdir}/samba/libsmbd-shim-samba4.so
  923. %{_libdir}/samba/libsmbldaphelper-samba4.so
  924. %{_libdir}/samba/libsmbpasswdparser-samba4.so
  925. %{_libdir}/samba/libsocket-blocking-samba4.so
  926. %{_libdir}/samba/libsys-rw-samba4.so
  927. %{_libdir}/samba/libtalloc-report-samba4.so
  928. %{_libdir}/samba/libtdb-wrap-samba4.so
  929. %{_libdir}/samba/libtrusts-util-samba4.so
  930. %{_libdir}/samba/libutil-cmdline-samba4.so
  931. %{_libdir}/samba/libutil-reg-samba4.so
  932. %{_libdir}/samba/libutil-setid-samba4.so
  933. %{_libdir}/samba/libutil-tdb-samba4.so
  934. %{_libdir}/samba/libwind-samba4.so.*
  935. %{_libdir}/samba/libxattr-tdb-samba4.so
  936. %if ! %with_libsmbclient
  937. %{_libdir}/libsmbclient.so.*
  938. %{_libdir}/libsmbsharemodes.so.*
  939. %{_mandir}/man7/libsmbclient.7.gz
  940. # ja manual
  941. %{_mandir}/ja/man7/libsmbclient.7.gz
  942. %endif # ! with_libsmbclient
  943. %if ! %with_libwbclient
  944. %{_libdir}/libwbclient.so.*
  945. %{_libdir}/samba/libwinbind-client.so
  946. %endif # ! with_libwbclient
  947. ## --------------------------------------------------------------------
  948. %files common
  949. %defattr(-,root,root)
  950. %doc smb.conf.example
  951. #%{_libdir}/samba/charset ???
  952. #%{_sysconfdir}/tmpfiles.d/samba.conf
  953. %{_bindir}/net
  954. %{_bindir}/pdbedit
  955. %{_bindir}/profiles
  956. %{_bindir}/smbcontrol
  957. %{_bindir}/testparm
  958. #%{_datadir}/samba/codepages
  959. %dir /var/run/samba
  960. %dir /var/run/winbindd
  961. %dir /var/lib/samba
  962. %attr(700,root,root) %dir /var/lib/samba/private
  963. %attr(755,root,root) %dir /var/lib/samba/msg
  964. %attr(755,root,root) %dir %{_sysconfdir}/samba
  965. %ghost %config(noreplace) %{_sysconfdir}/samba/smb.conf
  966. %config(noreplace) %{_sysconfdir}/samba/lmhosts
  967. %config(noreplace) %{_sysconfdir}/sysconfig/samba
  968. %{_mandir}/man1/profiles.1.gz
  969. %{_mandir}/man1/smbcontrol.1.gz
  970. %{_mandir}/man1/testparm.1.gz
  971. %{_mandir}/man5/lmhosts.5.gz
  972. %{_mandir}/man5/smb.conf.5.gz
  973. %{_mandir}/man8/net.8.gz
  974. %{_mandir}/man8/pdbedit.8.gz
  975. # ja manuals
  976. %{_mandir}/ja/man1/profiles.1.gz
  977. %{_mandir}/ja/man1/smbcontrol.1.gz
  978. %{_mandir}/ja/man1/testparm.1.gz
  979. %{_mandir}/ja/man5/lmhosts.5.gz
  980. %{_mandir}/ja/man5/smb.conf.5.gz
  981. %{_mandir}/ja/man8/net.8.gz
  982. %{_mandir}/ja/man8/pdbedit.8.gz
  983. # common libraries
  984. %{_libdir}/samba/libgenrand-samba4.so
  985. %{_libdir}/samba/libpopt-samba3-cmdline-samba4.so
  986. %{_libdir}/samba/libpopt-samba3-samba4.so
  987. %{_libdir}/samba/libserver-id-db-samba4.so
  988. %{_libdir}/samba/libtime-basic-samba4.so
  989. %{_libdir}/samba/pdb
  990. ## --------------------------------------------------------------------
  991. %files dc-libs
  992. %defattr(-,root,root)
  993. # dc
  994. %{_libdir}/libdcerpc-samr.so.*
  995. %{_libdir}/libdcerpc-server.so.*
  996. %{_libdir}/libsamba-policy.*.so.*
  997. %{_libdir}/samba/libHDB-SAMBA4-samba4.so
  998. %{_libdir}/samba/libdnsserver-common-samba4.so
  999. %{_libdir}/samba/libsamba-net.cpython-*-samba4.so
  1000. %{_libdir}/samba/libscavenge-dns-records-samba4.so
  1001. ## --------------------------------------------------------------------
  1002. %files dc
  1003. %defattr(-,root,root)
  1004. %{_bindir}/samba-tool
  1005. %{_sbindir}/samba
  1006. %{_sbindir}/samba_kcc
  1007. %{_sbindir}/samba_dnsupdate
  1008. %{_sbindir}/samba-gpupdate
  1009. %{_sbindir}/samba_spnupdate
  1010. %{_sbindir}/samba_upgradedns
  1011. %{_initrddir}/samba
  1012. %{_libdir}/samba/auth/samba4.so
  1013. %{_libdir}/samba/bind9
  1014. %{_libdir}/samba/gensec
  1015. %{_libdir}/samba/libheimntlm-samba4.so.*
  1016. %{_libdir}/samba/libkdc-samba4.so.*
  1017. %{_libdir}/samba/libpac-samba4.so
  1018. %dir %{_libdir}/samba/ldb
  1019. %{_libdir}/samba/ldb/*
  1020. %{_libdir}/samba/process_model
  1021. %{_libdir}/samba/service
  1022. %dir /var/lib/samba/sysvol
  1023. %{_datadir}/samba/setup
  1024. %{_mandir}/man8/samba.8*
  1025. %{_mandir}/man8/samba-tool.8*
  1026. %{_mandir}/man8/samba-gpupdate.8*
  1027. # ja manuals
  1028. %{_mandir}/ja/man8/samba.8*
  1029. %{_mandir}/ja/man8/samba-tool.8*
  1030. ## --------------------------------------------------------------------
  1031. %files winbind
  1032. %defattr(-,root,root)
  1033. #%{_bindir}/wbinfo3
  1034. %{_libdir}/samba/idmap
  1035. %{_libdir}/samba/nss_info
  1036. %{_libdir}/samba/libnss-info-samba4.so
  1037. %{_libdir}/samba/libidmap-samba4.so
  1038. %{_sbindir}/winbindd
  1039. %attr(750,root,wbpriv) %dir /var/lib/samba/winbindd_privileged
  1040. %config(noreplace) %{_sysconfdir}/security/pam_winbind.conf
  1041. %{_mandir}/man5/pam_winbind.conf.5*
  1042. %{_mandir}/man8/winbindd.8*
  1043. %{_mandir}/man8/idmap_*.8*
  1044. #%{_datadir}/locale/*/LC_MESSAGES/pam_winbind.mo
  1045. %{_initrddir}/winbind
  1046. # ja manuals
  1047. %{_mandir}/ja/man5/pam_winbind.conf.5*
  1048. %{_mandir}/ja/man8/winbindd.8*
  1049. %{_mandir}/ja/man8/idmap_*.8*
  1050. ## --------------------------------------------------------------------
  1051. %files winbind-krb5-locator
  1052. %defattr(-,root,root)
  1053. %ghost %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
  1054. %{_libdir}/samba/krb5/winbind_krb5_locator.so
  1055. %{_mandir}/man8/winbind_krb5_locator.8*
  1056. # ja manual
  1057. %{_mandir}/ja/man8/winbind_krb5_locator.8*
  1058. ## --------------------------------------------------------------------
  1059. %files winbind-clients
  1060. %defattr(-,root,root)
  1061. %{_bindir}/ntlm_auth
  1062. #%{_bindir}/ntlm_auth3
  1063. %{_bindir}/wbinfo
  1064. %{_libdir}/libnss_winbind.so*
  1065. %{_libdir}/libnss_wins.so*
  1066. #/%{smb_lib}/libnss_winbind.so.2
  1067. #/%{smb_lib}/libnss_wins.so.2
  1068. /%{_lib}/security/pam_winbind.so
  1069. %{_mandir}/man1/ntlm_auth.1.gz
  1070. %{_mandir}/man1/wbinfo.1.gz
  1071. %{_mandir}/man8/pam_winbind.8.gz
  1072. # ja manuals
  1073. %{_mandir}/ja/man1/ntlm_auth.1.gz
  1074. %{_mandir}/ja/man1/wbinfo.1.gz
  1075. %{_mandir}/ja/man8/pam_winbind.8.gz
  1076. ## --------------------------------------------------------------------
  1077. %files client
  1078. %defattr(-,root,root)
  1079. %{_bindir}/cifsdd
  1080. %{_bindir}/dbwrap_tool
  1081. %{_bindir}/findsmb
  1082. %{_bindir}/nmblookup
  1083. %{_bindir}/oLschema2ldif
  1084. %{_bindir}/regdiff
  1085. %{_bindir}/regpatch
  1086. %{_bindir}/regshell
  1087. %{_bindir}/regtree
  1088. %{_bindir}/rpcclient
  1089. %{_bindir}/samba-regedit
  1090. %{_bindir}/sharesec
  1091. %{_bindir}/smbcacls
  1092. %{_bindir}/smbclient
  1093. %{_bindir}/smbcquotas
  1094. #%{_bindir}/smbfilter
  1095. %{_bindir}/smbget
  1096. #%{_bindir}/findsmg
  1097. #%{_bindir}/smbtar
  1098. #%{_bindir}/smbiconv
  1099. %{_bindir}/smbpasswd
  1100. %{_bindir}/smbprint
  1101. %{_bindir}/smbspool
  1102. %{_bindir}/smbtar
  1103. %{_bindir}/smbtree
  1104. #%{_bindir}/split_tokens
  1105. #%exclude %{_libdir}/samba/libldb-cmdline.so
  1106. %{_libexecdir}/samba/smbspool_krb5_wrapper
  1107. %{_mandir}/man1/dbwrap_tool.1.gz
  1108. %{_mandir}/man1/findsmb.1.gz
  1109. %{_mandir}/man1/log2pcap.1.gz
  1110. %{_mandir}/man1/nmblookup.1.gz
  1111. %{_mandir}/man1/oLschema2ldif.1.gz
  1112. %{_mandir}/man1/regdiff.1.gz
  1113. %{_mandir}/man1/regpatch.1.gz
  1114. %{_mandir}/man1/regshell.1.gz
  1115. %{_mandir}/man1/regtree.1.gz
  1116. %{_mandir}/man1/rpcclient.1.gz
  1117. %{_mandir}/man1/sharesec.1.gz
  1118. %{_mandir}/man1/smbcacls.1.gz
  1119. %{_mandir}/man1/smbclient.1.gz
  1120. %{_mandir}/man1/smbcquotas.1.gz
  1121. %{_mandir}/man1/smbget.1.gz
  1122. %{_mandir}/man1/smbtar.1.gz
  1123. %{_mandir}/man1/smbtree.1.gz
  1124. %{_mandir}/man5/smbgetrc.5.gz
  1125. %{_mandir}/man5/smbpasswd.5.gz
  1126. %{_mandir}/man7/traffic_learner.7.gz
  1127. %{_mandir}/man7/traffic_replay.7.gz
  1128. %{_mandir}/man8/cifsdd.8.gz
  1129. %{_mandir}/man8/samba-regedit.8.gz
  1130. %{_mandir}/man8/smbpasswd.8.gz
  1131. %{_mandir}/man8/smbspool.8.gz
  1132. %{_mandir}/man8/smbspool_krb5_wrapper.8.gz
  1133. #ja manuals
  1134. %{_mandir}/ja/man1/dbwrap_tool.1.gz
  1135. %{_mandir}/ja/man1/findsmb.1.gz
  1136. %{_mandir}/ja/man1/log2pcap.1.gz
  1137. %{_mandir}/ja/man1/nmblookup.1.gz
  1138. %{_mandir}/ja/man1/rpcclient.1.gz
  1139. %{_mandir}/ja/man1/sharesec.1.gz
  1140. %{_mandir}/ja/man1/smbcacls.1.gz
  1141. %{_mandir}/ja/man1/smbclient.1.gz
  1142. %{_mandir}/ja/man1/smbcquotas.1.gz
  1143. %{_mandir}/ja/man1/smbget.1.gz
  1144. %{_mandir}/ja/man1/smbtar.1.gz
  1145. %{_mandir}/ja/man1/smbtree.1.gz
  1146. %{_mandir}/ja/man5/smbgetrc.5.gz
  1147. %{_mandir}/ja/man5/smbpasswd.5.gz
  1148. %{_mandir}/ja/man7/traffic_learner.7.gz
  1149. %{_mandir}/ja/man7/traffic_replay.7.gz
  1150. %{_mandir}/ja/man8/cifsdd.8.gz
  1151. %{_mandir}/ja/man8/samba-regedit.8.gz
  1152. %{_mandir}/ja/man8/smbpasswd.8.gz
  1153. %{_mandir}/ja/man8/smbspool.8.gz
  1154. %{_mandir}/ja/man8/smbspool_krb5_wrapper.8.gz
  1155. ## --------------------------------------------------------------------
  1156. %files test
  1157. %defattr(-,root,root)
  1158. %{_bindir}/gentest
  1159. %{_bindir}/locktest
  1160. %{_bindir}/masktest
  1161. %{_bindir}/ndrdump
  1162. %{_bindir}/smbtorture
  1163. %{_mandir}/man1/gentest.1*
  1164. %{_mandir}/man1/locktest.1*
  1165. %{_mandir}/man1/masktest.1*
  1166. %{_mandir}/man1/ndrdump.1*
  1167. %{_mandir}/man1/smbtorture.1*
  1168. %{_mandir}/man1/vfstest.1*
  1169. %{_libdir}/samba/libdlz-bind9-for-torture-samba4.so
  1170. %{_libdir}/samba/libtorture-samba4.so
  1171. # ja manual
  1172. %{_mandir}/ja/man1/vfstest.1*
  1173. ## --------------------------------------------------------------------
  1174. %files devel
  1175. %defattr(-,root,root)
  1176. %{samba_includedir}/charset.h
  1177. %{samba_includedir}/core/doserr.h
  1178. %{samba_includedir}/core/error.h
  1179. %{samba_includedir}/core/hresult.h
  1180. %{samba_includedir}/core/ntstatus.h
  1181. %{samba_includedir}/core/ntstatus_gen.h
  1182. %{samba_includedir}/core/werror.h
  1183. %{samba_includedir}/core/werror_gen.h
  1184. %{samba_includedir}/credentials.h
  1185. %{samba_includedir}/dcerpc.h
  1186. %{samba_includedir}/dcerpc_server.h
  1187. %{samba_includedir}/domain_credentials.h
  1188. %{samba_includedir}/gen_ndr/atsvc.h
  1189. %{samba_includedir}/gen_ndr/auth.h
  1190. %{samba_includedir}/gen_ndr/dcerpc.h
  1191. %{samba_includedir}/gen_ndr/krb5pac.h
  1192. %{samba_includedir}/gen_ndr/lsa.h
  1193. %{samba_includedir}/gen_ndr/misc.h
  1194. %{samba_includedir}/gen_ndr/nbt.h
  1195. %{samba_includedir}/gen_ndr/drsblobs.h
  1196. %{samba_includedir}/gen_ndr/drsuapi.h
  1197. %{samba_includedir}/gen_ndr/ndr_drsblobs.h
  1198. %{samba_includedir}/gen_ndr/ndr_drsuapi.h
  1199. %{samba_includedir}/gen_ndr/ndr_atsvc.h
  1200. %{samba_includedir}/gen_ndr/ndr_dcerpc.h
  1201. %{samba_includedir}/gen_ndr/ndr_krb5pac.h
  1202. %{samba_includedir}/gen_ndr/ndr_misc.h
  1203. %{samba_includedir}/gen_ndr/ndr_nbt.h
  1204. %{samba_includedir}/gen_ndr/ndr_samr.h
  1205. %{samba_includedir}/gen_ndr/ndr_samr_c.h
  1206. %{samba_includedir}/gen_ndr/ndr_svcctl.h
  1207. %{samba_includedir}/gen_ndr/ndr_svcctl_c.h
  1208. %{samba_includedir}/gen_ndr/netlogon.h
  1209. %{samba_includedir}/gen_ndr/samr.h
  1210. %{samba_includedir}/gen_ndr/security.h
  1211. %{samba_includedir}/gen_ndr/server_id.h
  1212. %{samba_includedir}/gen_ndr/svcctl.h
  1213. %{samba_includedir}/ldb_wrap.h
  1214. %{samba_includedir}/lookup_sid.h
  1215. %{samba_includedir}/machine_sid.h
  1216. %{samba_includedir}/ndr.h
  1217. %dir %{samba_includedir}/ndr
  1218. %{samba_includedir}/ndr/ndr_dcerpc.h
  1219. %{samba_includedir}/ndr/ndr_drsblobs.h
  1220. %{samba_includedir}/ndr/ndr_drsuapi.h
  1221. %{samba_includedir}/ndr/ndr_krb5pac.h
  1222. %{samba_includedir}/ndr/ndr_svcctl.h
  1223. %{samba_includedir}/ndr/ndr_nbt.h
  1224. %{samba_includedir}/netapi.h
  1225. %{samba_includedir}/param.h
  1226. %{samba_includedir}/passdb.h
  1227. %{samba_includedir}/policy.h
  1228. %{samba_includedir}/rpc_common.h
  1229. %{samba_includedir}/samba/session.h
  1230. %{samba_includedir}/samba/version.h
  1231. %{samba_includedir}/share.h
  1232. %{samba_includedir}/smb2_lease_struct.h
  1233. %{samba_includedir}/smbconf.h
  1234. %{samba_includedir}/smb_ldap.h
  1235. %{samba_includedir}/smbldap.h
  1236. %{samba_includedir}/tdr.h
  1237. %{samba_includedir}/tsocket.h
  1238. %{samba_includedir}/tsocket_internal.h
  1239. %dir %{samba_includedir}/util
  1240. %{samba_includedir}/util/attr.h
  1241. %{samba_includedir}/util/blocking.h
  1242. %{samba_includedir}/util/byteorder.h
  1243. %{samba_includedir}/util/data_blob.h
  1244. %{samba_includedir}/util/debug.h
  1245. %{samba_includedir}/util/discard.h
  1246. %{samba_includedir}/util/fault.h
  1247. %{samba_includedir}/util/genrand.h
  1248. %{samba_includedir}/util/idtree.h
  1249. %{samba_includedir}/util/idtree_random.h
  1250. #%{samba_includedir}/util/memory.h
  1251. #%{samba_includedir}/util/safe_string.h
  1252. %{samba_includedir}/util/signal.h
  1253. %{samba_includedir}/util/string_wrappers.h
  1254. %{samba_includedir}/util/substitute.h
  1255. #%{samba_includedir}/util/talloc_stack.h
  1256. %{samba_includedir}/util/tevent_ntstatus.h
  1257. %{samba_includedir}/util/tevent_unix.h
  1258. %{samba_includedir}/util/tevent_werror.h
  1259. %{samba_includedir}/util/tfork.h
  1260. %{samba_includedir}/util/time.h
  1261. %{samba_includedir}/util_ldb.h
  1262. %{_libdir}/libdcerpc-binding.so
  1263. %{_libdir}/libdcerpc-samr.so
  1264. %{_libdir}/libdcerpc.so
  1265. %{_libdir}/libndr-krb5pac.so
  1266. %{_libdir}/libndr-nbt.so
  1267. %{_libdir}/libndr-standard.so
  1268. %{_libdir}/libndr.so
  1269. %{_libdir}/libnetapi.so
  1270. %{_libdir}/libsamba-credentials.so
  1271. %{_libdir}/libsamba-hostconfig.so
  1272. %{_libdir}/libsamba-passdb.so
  1273. %{_libdir}/libsamba-policy.*.so
  1274. %{_libdir}/libsamba-util.so
  1275. %{_libdir}/libsamdb.so
  1276. %{_libdir}/libsmbconf.so
  1277. %{_libdir}/libsmbldap.so
  1278. %{_libdir}/libtevent-util.so
  1279. %{_libdir}/pkgconfig/dcerpc.pc
  1280. %{_libdir}/pkgconfig/dcerpc_samr.pc
  1281. %{_libdir}/pkgconfig/ndr.pc
  1282. %{_libdir}/pkgconfig/ndr_krb5pac.pc
  1283. %{_libdir}/pkgconfig/ndr_nbt.pc
  1284. %{_libdir}/pkgconfig/ndr_standard.pc
  1285. %{_libdir}/pkgconfig/netapi.pc
  1286. %{_libdir}/pkgconfig/samba-credentials.pc
  1287. %{_libdir}/pkgconfig/samba-hostconfig.pc
  1288. %{_libdir}/pkgconfig/samba-policy.*.pc
  1289. %{_libdir}/pkgconfig/samba-util.pc
  1290. %{_libdir}/pkgconfig/samdb.pc
  1291. %{_libdir}/libdcerpc-server.so
  1292. %{_libdir}/pkgconfig/dcerpc_server.pc
  1293. ## --------------------------------------------------------------------
  1294. %files python
  1295. %defattr(-,root,root,-)
  1296. %{python3_sitearch}/*
  1297. #%exclude %{python_sitearch}/_ldb.so
  1298. #%exclude %{python_sitearch}/_tevent.so
  1299. ## --------------------------------------------------------------------
  1300. %files pidl
  1301. %defattr(-,root,root,-)
  1302. %{perl_vendorlib}/Parse/*
  1303. %{_mandir}/man1/pidl.1.gz
  1304. %{_mandir}/man3/Parse::Pidl::Wireshark::NDR.3pm.gz
  1305. %{_mandir}/man3/Parse::Pidl::Wireshark::Conformance.3pm.gz
  1306. %{_mandir}/man3/Parse::Pidl::Dump.3pm.gz
  1307. %{_mandir}/man3/Parse::Pidl::NDR.3pm.gz
  1308. %{_mandir}/man3/Parse::Pidl::Util.3pm.gz
  1309. %attr(755,root,root) %{_bindir}/pidl
  1310. ## --------------------------------------------------------------------
  1311. %if %with_libsmbclient
  1312. %files -n libsmbclient
  1313. %defattr(-,root,root)
  1314. %{_libdir}/libsmbclient.so.*
  1315. %{_mandir}/man7/libsmbclient.7*
  1316. # ja manual
  1317. %{_mandir}/ja/man7/libsmbclient.7*
  1318. ## --------------------------------------------------------------------
  1319. %files -n libsmbclient-devel
  1320. %defattr(-,root,root)
  1321. %{samba_includedir}/libsmbclient.h
  1322. %{_libdir}/libsmbclient.so
  1323. %{_libdir}/pkgconfig/smbclient.pc
  1324. #%{_mandir}/man7/libsmbclient.7*
  1325. %endif # with_libsmbclient
  1326. ## --------------------------------------------------------------------
  1327. %if %with_libwbclient
  1328. %files -n libwbclient
  1329. %defattr(-,root,root)
  1330. %{_libdir}/samba/libwinbind-client-samba4.so
  1331. %{_libdir}/samba/wbclient/libwbclient.so.*
  1332. ## --------------------------------------------------------------------
  1333. %files -n libwbclient-devel
  1334. %defattr(-,root,root)
  1335. %{samba_includedir}/wbclient.h
  1336. %{_libdir}/samba/wbclient/libwbclient.so
  1337. %{_libdir}/pkgconfig/wbclient.pc
  1338. %endif # with_libwbclient
  1339. %if %build_compat32
  1340. ## --------------------------------------------------------------------
  1341. %files -n compat32-samba-libs
  1342. %defattr(-,root,root)
  1343. %{_libdir}/libdcerpc-binding.so.*
  1344. %{_libdir}/libdcerpc.so.*
  1345. %{_libdir}/libsamba-errors.so*
  1346. %{_libdir}/libndr-krb5pac.so.*
  1347. %{_libdir}/libndr-nbt.so.*
  1348. %{_libdir}/libndr-standard.so.*
  1349. %{_libdir}/libndr.so.*
  1350. %{_libdir}/libnetapi.so.*
  1351. %{_libdir}/libsamba-credentials.so.*
  1352. %{_libdir}/libsamba-hostconfig.so.*
  1353. %{_libdir}/libsamba-passdb.so.*
  1354. %{_libdir}/libsamba-util.so.*
  1355. %{_libdir}/libsamdb.so.*
  1356. %{_libdir}/libsmbconf.so.*
  1357. %{_libdir}/libsmbldap.so.*
  1358. %{_libdir}/libtevent-util.so.*
  1359. # libraries needed by the public libraries
  1360. %dir %{_libdir}/samba
  1361. %{_libdir}/samba/libCHARSET3-samba4.so
  1362. %{_libdir}/samba/libLIBWBCLIENT-OLD-samba4.so
  1363. %{_libdir}/samba/libMESSAGING-samba4.so
  1364. %{_libdir}/samba/libMESSAGING-SEND-samba4.so
  1365. %{_libdir}/samba/libaddns-samba4.so
  1366. %{_libdir}/samba/libads-samba4.so
  1367. %{_libdir}/samba/libasn1-samba4.so.*
  1368. %{_libdir}/samba/libasn1util-samba4.so
  1369. #{_libdir}/samba/libauth-sam-reply-samba4.so
  1370. %{_libdir}/samba/libauth-samba4.so
  1371. %{_libdir}/samba/libauth-unix-token-samba4.so
  1372. %{_libdir}/samba/libauth4-samba4.so
  1373. %{_libdir}/samba/libauthkrb5-samba4.so
  1374. %{_libdir}/samba/libcli-cldap-samba4.so
  1375. %{_libdir}/samba/libcli-ldap-common-samba4.so
  1376. %{_libdir}/samba/libcli-ldap-samba4.so
  1377. %{_libdir}/samba/libcli-nbt-samba4.so
  1378. %{_libdir}/samba/libcli-smb-common-samba4.so
  1379. %{_libdir}/samba/libcli-spoolss-samba4.so
  1380. %{_libdir}/samba/libcliauth-samba4.so
  1381. %{_libdir}/samba/libclidns-samba4.so
  1382. %{_libdir}/samba/libcluster-samba4.so
  1383. %{_libdir}/samba/libcmdline-contexts-samba4.so
  1384. %{_libdir}/samba/libcmdline-credentials-samba4.so
  1385. %{_libdir}/samba/libcmocka-samba4.so
  1386. %{_libdir}/samba/libcom_err-samba4.so*
  1387. %{_libdir}/samba/libcommon-auth-samba4.so
  1388. %{_libdir}/samba/libdb-glue-samba4.so
  1389. %{_libdir}/samba/libdbwrap-samba4.so
  1390. %{_libdir}/samba/libdcerpc-samba-samba4.so
  1391. %{_libdir}/samba/libdcerpc-samba4.so
  1392. %{_libdir}/samba/libdfs-server-ad-samba4.so
  1393. %{_libdir}/samba/libdsdb-garbage-collect-tombstones-samba4.so
  1394. %{_libdir}/samba/libdsdb-module-samba4.so
  1395. %{_libdir}/samba/libevents-samba4.so
  1396. %{_libdir}/samba/libflag-mapping-samba4.so
  1397. %{_libdir}/samba/libgenrand-samba4.so
  1398. %{_libdir}/samba/libgensec-samba4.so
  1399. %{_libdir}/samba/libgpext-samba4.so
  1400. %{_libdir}/samba/libgse-samba4.so
  1401. %{_libdir}/samba/libgssapi-samba4.so.*
  1402. %{_libdir}/samba/libhcrypto-samba4.so.*
  1403. %{_libdir}/samba/libhdb-samba4.so.*
  1404. %{_libdir}/samba/libheimbase-samba4.so.*
  1405. %{_libdir}/samba/libhttp-samba4.so
  1406. %{_libdir}/samba/libhx509-samba4.so.*
  1407. %{_libdir}/samba/libinterfaces-samba4.so
  1408. %{_libdir}/samba/libiov-buf-samba4.so
  1409. %{_libdir}/samba/libkrb5-samba4.so.*
  1410. %{_libdir}/samba/libkrb5samba-samba4.so
  1411. %{_libdir}/samba/libldbsamba-samba4.so
  1412. %{_libdir}/samba/liblibcli-lsa3-samba4.so
  1413. %{_libdir}/samba/liblibcli-netlogon3-samba4.so
  1414. %{_libdir}/samba/liblibsmb-samba4.so
  1415. %{_libdir}/samba/libmessages-dgm-samba4.so
  1416. %{_libdir}/samba/libmessages-util-samba4.so
  1417. %{_libdir}/samba/libmsghdr-samba4.so
  1418. %{_libdir}/samba/libmsrpc3-samba4.so
  1419. %{_libdir}/samba/libnon-posix-acls-samba4.so
  1420. %{_libdir}/samba/libndr-samba-samba4.so
  1421. %{_libdir}/samba/libndr-samba4.so
  1422. %{_libdir}/samba/libnet-keytab-samba4.so
  1423. %{_libdir}/samba/libnetif-samba4.so
  1424. %{_libdir}/samba/libnpa-tstream-samba4.so
  1425. %{_libdir}/samba/libnss-info-samba4.so
  1426. %{_libdir}/samba/libpopt-samba3-cmdline-samba4.so
  1427. %{_libdir}/samba/libpopt-samba3-samba4.so
  1428. %{_libdir}/samba/libposix-eadb-samba4.so
  1429. %{_libdir}/samba/libprinting-migrate-samba4.so
  1430. %{_libdir}/samba/libprocess-model-samba4.so
  1431. %{_libdir}/samba/libregistry-samba4.so
  1432. %{_libdir}/samba/libreplace-samba4.so
  1433. %{_libdir}/samba/libroken-samba4.so.*
  1434. %{_libdir}/samba/libsamba-cluster-support-samba4.so
  1435. %{_libdir}/samba/libsamba-debug-samba4.so
  1436. %{_libdir}/samba/libsamba-modules-samba4.so
  1437. %{_libdir}/samba/libsamba-security-samba4.so
  1438. %{_libdir}/samba/libsamba-sockets-samba4.so
  1439. %{_libdir}/samba/libsamba3-util-samba4.so
  1440. %{_libdir}/samba/libsamdb-common-samba4.so
  1441. %{_libdir}/samba/libsecrets3-samba4.so
  1442. %{_libdir}/samba/libserver-role-samba4.so
  1443. %{_libdir}/samba/libserver-id-db-samba4.so
  1444. %{_libdir}/samba/libservice-samba4.so
  1445. %{_libdir}/samba/libshares-samba4.so
  1446. %{_libdir}/samba/libsmb-transport-samba4.so
  1447. %{_libdir}/samba/libsmbclient-raw-samba4.so
  1448. %{_libdir}/samba/libsmbd-base-samba4.so
  1449. %{_libdir}/samba/libsmbd-conn-samba4.so
  1450. %{_libdir}/samba/libsmbd-shim-samba4.so
  1451. %{_libdir}/samba/libsmbldaphelper-samba4.so
  1452. %{_libdir}/samba/libsmbpasswdparser-samba4.so
  1453. %{_libdir}/samba/libsocket-blocking-samba4.so
  1454. %{_libdir}/samba/libsys-rw-samba4.so
  1455. %{_libdir}/samba/libtalloc-report-samba4.so
  1456. %{_libdir}/samba/libtalloc.so*
  1457. %{_libdir}/samba/libtdb-wrap-samba4.so
  1458. %{_libdir}/samba/libtevent.so*
  1459. %{_libdir}/samba/libtime-basic-samba4.so
  1460. %{_libdir}/samba/libtrusts-util-samba4.so
  1461. %{_libdir}/samba/libutil-cmdline-samba4.so
  1462. %{_libdir}/samba/libutil-reg-samba4.so
  1463. %{_libdir}/samba/libutil-setid-samba4.so
  1464. %{_libdir}/samba/libutil-tdb-samba4.so
  1465. %{_libdir}/samba/libwind-samba4.so.*
  1466. %{_libdir}/samba/libxattr-tdb-samba4.so
  1467. ## --------------------------------------------------------------------
  1468. %files -n compat32-libwbclient
  1469. %defattr(755,root,root)
  1470. %{_libdir}/samba/libwinbind-client-samba4.so
  1471. %{_libdir}/samba/wbclient/libwbclient.so.*
  1472. ## --------------------------------------------------------------------
  1473. %files -n compat32-libsmbclient
  1474. %defattr(755,root,root)
  1475. %{_libdir}/libsmbclient.so.*
  1476. %endif
  1477. %changelog
  1478. * Wed Nov 13 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.10-1
  1479. - new upstream release.
  1480. * Thu Oct 17 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.9-1
  1481. - new upstream release.
  1482. * Thu Oct 17 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.8-2
  1483. - fixed Obsoletes:.
  1484. - fixed dependency of compat32-samba-libs.
  1485. * Wed Sep 04 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.8-1
  1486. - new upstream release.
  1487. * Thu Aug 22 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.7-1
  1488. - new upstream release.
  1489. - updated samba-ja-docs.
  1490. * Tue May 14 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.3-1
  1491. - new upstream release.
  1492. * Sat May 11 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.2-1
  1493. - new upstream release.
  1494. - switched to python3.
  1495. - made to use bundled lib{talloc,tevent,ldb} and ctdb.
  1496. * Fri Jan 25 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.9.4-1
  1497. - new upstream release.
  1498. * Fri Nov 30 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.9.3-1
  1499. - new upstream release.
  1500. - updated samba-ja-docs.
  1501. * Wed Mar 14 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.8.0-1
  1502. - new upstream release.
  1503. * Thu Mar 08 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.8.0-0.2.rc4
  1504. - new upstream release.
  1505. - fixed %%files for compat32-samba-libs.
  1506. * Mon Jul 17 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.6.6-1
  1507. - new upstream release.
  1508. - updated samba-ja-docs.
  1509. * Mon May 29 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.6.4-1
  1510. - new upstream release.
  1511. * Mon May 1 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.6.3-1
  1512. - new upstream release.
  1513. * Thu Mar 16 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.6.0-1
  1514. - new upstream release.
  1515. * Tue Dec 20 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.5.3-1
  1516. - new upstream release.
  1517. * Sun Dec 11 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.5.2-1
  1518. - new upstream release.
  1519. - updated samba-ja-docs.
  1520. * Fri Jul 8 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.4.5-1
  1521. - new upstream release.
  1522. - updated samba-ja-docs.
  1523. * Wed Jun 8 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.4.4-1
  1524. - new upstream release.
  1525. - updated samba-ja-docs.
  1526. * Tue May 3 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.4.3-1
  1527. - new upstream release.
  1528. - updated samba-ja-docs.
  1529. * Wed Apr 13 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.4.2-1
  1530. - new upstream release.
  1531. * Wed Apr 13 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.4.0-1
  1532. - new upstream release.
  1533. * Thu Mar 10 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.6-1
  1534. - new upstream release.
  1535. - updated samba-ja-docs.
  1536. * Wed Feb 24 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.5-1
  1537. - new upstream release.
  1538. * Sat Jan 16 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.4-1
  1539. - new upstream release.
  1540. * Wed Dec 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.3-3
  1541. - built with gnutls-3.4.x.
  1542. * Sun Dec 20 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.3-2
  1543. - built with libldb-1.1.25.
  1544. * Thu Dec 17 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.3-1
  1545. - new upstream release.
  1546. - fixed missing %%changelog.
  1547. * Wed Dec 2 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.2-1
  1548. - new upstream release.
  1549. * Fri Oct 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.1-1
  1550. - new upstream release.
  1551. * Sat Sep 19 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.0-1
  1552. - new upstream release.
  1553. - built without libbsd.
  1554. * Sat Sep 19 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.4-1
  1555. - new upstream release.
  1556. * Fri Jul 24 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.3-1
  1557. - new upstream release.
  1558. * Sat Jun 13 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.2-1
  1559. - new upstream release.
  1560. * Fri Apr 17 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.1-1
  1561. - new upstream release.
  1562. * Thu Apr 16 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.0-2
  1563. - added subpackage compat32-samba-libs and samba-dc-libs.
  1564. - fixed %%files.
  1565. * Sat Mar 7 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.0-1
  1566. - new upstream release.
  1567. * Tue Feb 24 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.17-1
  1568. - new upstream release.
  1569. * Sun Jan 25 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.16-1
  1570. - new upstream release.
  1571. * Mon Jan 12 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.15-1
  1572. - new upstream release.
  1573. * Wed Dec 3 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.14-1
  1574. - new upstream release.
  1575. - re-enabled samba-ja-docs.
  1576. * Tue Dec 2 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 4.1.11-3
  1577. - fixed Group typo involved by previous release
  1578. * Sat Nov 22 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 4.1.11-2
  1579. - moved common, libs, python, liibsmbclient and libwbclient packages to System Environment/Libraries Group
  1580. * Tue Aug 19 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.11-1
  1581. - new upstream release.
  1582. * Wed Mar 12 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.6-1
  1583. - new upstream release.
  1584. - removed samba-ja-docs (docs-ja for 4.1.x has not released yet).
  1585. * Mon Dec 09 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.3-1
  1586. - new upstream release.
  1587. * Thu Nov 28 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.2-1
  1588. - new upstream release.
  1589. - removed a sub package "samba-swat" (removed in upstream).
  1590. - %%post was made to fix the permission of TLS key (CVE-2013-4476).
  1591. * Wed Oct 09 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.10-1
  1592. - new upstream release.
  1593. * Tue Oct 08 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.9-1
  1594. - new upstream release.
  1595. * Tue Mar 26 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.4-1
  1596. - new upstream release.
  1597. - fixed dependency.
  1598. - added documents from samba-docs-ja-4.0.0-1.
  1599. * Mon Mar 04 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.3-2
  1600. - fixed directory to place private data.
  1601. * Sun Mar 03 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.3-1
  1602. - new upstream release.
  1603. - fixed dates of %%changelog.
  1604. * Mon Dec 17 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.0-1
  1605. - new upstream release.
  1606. * Wed May 02 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.15-1
  1607. - new upstream release. (to fix CVE-2012-2111)
  1608. - added charset options to smb.conf.
  1609. * Sat Apr 14 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.14-1
  1610. - new upstream release. (to fix CVE-2012-1182)
  1611. * Tue Aug 09 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.11-1
  1612. - new upstream release. (to fix BTS:1189)
  1613. * Sat Jul 30 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.10-1
  1614. - new upstream release. (to fix CVE-2011-2522 and CVE-2011-2694)
  1615. * Mon Jul 18 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.8-3
  1616. - updated Source6.
  1617. * Fri Mar 25 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.8-2
  1618. - fix smb.conf(5).
  1619. * Thu Mar 24 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.8-1
  1620. - new upstream release.
  1621. - updated patches.
  1622. - added subpackages 'winbind-krb5-locator' and 'winbind-client'.
  1623. - dropped tdb and talloc subpackages became independent packages.
  1624. - dropped {,u}mount.cifs were included in cifs-utils.
  1625. * Sat Oct 02 2010 Shu KONNO <owa@bg.wakwak.com> 3.3.10-13
  1626. - rebuilt with rpm-4.8.1 for pkg-config
  1627. - changed spec file name as vine style
  1628. - dropt script lines in %%build that no work
  1629. * Sun Feb 7 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.3.10-12
  1630. - add patch1000 for fix CVE-2010-0547 (cifs.mount)
  1631. * Sat Jan 30 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.10-11
  1632. - new upstream release.
  1633. * Fri Nov 20 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.9-10
  1634. - added 'Packager' tag.
  1635. * Sun Oct 25 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.9-9
  1636. - new upstream release.
  1637. - added '--disable-fam' option.
  1638. - added 'compat32-*' subpackages.
  1639. - added 'libuuid-devel' to 'BuildRequires:'.
  1640. * Thu Jul 30 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.7-7
  1641. - new upstream release.
  1642. * Thu Jun 25 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.6-6
  1643. - new upstream release.
  1644. * Thu Jun 4 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.4-5
  1645. - increased release number for libtalloc/libtdb.
  1646. * Tue Jun 2 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.4-2
  1647. - fixed dependency.
  1648. - fixed modulepath.
  1649. * Fri May 29 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.4-1
  1650. - new upstream release.
  1651. * Sun Mar 01 2009 NAKAMURA Kenta <kenta@vinelinux.org> 3.2.5-4
  1652. - rebuilt with openldap-2.4.11
  1653. * Sat Jan 17 2009 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 3.2.5-3
  1654. - samba-doc: changed Group to Applications/Documentation
  1655. - samba-winbind-devel: changed Group to Development/Libraries
  1656. - libsmbclient: changed Group to System Environment/Libraries
  1657. - libsmbclient-devel: changed Group to Development/Libraries
  1658. - libtalloc: changed Group to System Environment/Libraries
  1659. - libtalloc-devel: changed Group to Development/Libraries
  1660. - libtdb: fixed summary
  1661. changed Group to System Environment/Libraries
  1662. - libtdb-devel: changed Group to Development/Libraries
  1663. * Thu Dec 04 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.5-2
  1664. - new upstream release
  1665. * Sat Nov 01 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.3-1
  1666. - new upstream release
  1667. - drop jp patch
  1668. - use UTF-8 as default charset
  1669. - rename samba-libsmbclient to libsmbclient
  1670. * Fri Apr 11 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 3.0.28a-1
  1671. - new upstream release.
  1672. - remove gamin-devel from BuildRequires: (no longer needed).
  1673. * Sat Sep 15 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 3.0.24-0vl4
  1674. - BuildRequires: gamin-devel (see [wishes:0127])
  1675. * Wed May 16 2007 KAZUKI SHIMURA <ksh753@gmail.com> 3.0.24-0vl3
  1676. - [SECURITY FIX] add security patches (#50-52)
  1677. - CVE-2007-2444: local SID/Name translation bug (user privilege elevation)
  1678. - CVE-2007-2446: multiple heap overflows allow remote code execution
  1679. - CVE-2007-2447: remote command injection vulnerability
  1680. * Fri Mar 09 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.24-0vl2
  1681. - apply upstream patches (#0-5)
  1682. - fix an issues with servers set to "security = share" and Vista clients
  1683. that send NTLMv2 responses
  1684. - fixe several point-n-print bugs with Vista clients
  1685. - fix failure when using the Vista backup utility
  1686. - fix expansion of the %a smb.conf variable for Vista clients
  1687. - fix MS-DFS referrals with Windows Vista clients
  1688. - fix for Vista failing to delete directories on a Samba share
  1689. - display service start/stop messages ([VineSeed:13299])
  1690. * Wed Feb 14 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.24-0vl1
  1691. - [SECURITY FIX] new upstream release
  1692. - CVE-2007-0452: potential denial of service bug in smbd
  1693. - CVE-2007-0453: buffer overrun in NSS host lookup winbind library on Solaris
  1694. - CVE-2007-0454: format string bug in afsacl.so vfs plugin
  1695. * Thu Dec 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23d-0vl1
  1696. - new upstream release
  1697. * Sat Nov 25 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23c-0vl3
  1698. - disable swat (via inetd) by default
  1699. - fix code for editing %%{_sysconfdir}/inetd.conf
  1700. * Sun Sep 17 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23c-0vl2
  1701. - fix dependencies:
  1702. - move PreReq: mktemp, psmisc, fileutils, sed, gawk, grep to -swat
  1703. - drop PreReq: gawk from -client
  1704. - drop PreReq: inetd from -swat
  1705. - drop Requires: tcp_wrappers from -swat (is needed by inetd)
  1706. - fix %%post etc...
  1707. - drop code for editing /etc/services: no more needed
  1708. - move code for editing %%{_sysconfdir}/{hosts.*,inetd.conf}
  1709. from %%triggerin swat -- inetd to %%post swat
  1710. - check if %%{_sysconfdir}/inetd.conf exist before updating at %%postun
  1711. * Fri Sep 08 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23c-0vl1
  1712. - new upstream release
  1713. * Sun Aug 27 2006 NAKAMURA Kenta <kenta@vinelinux.org> 3.0.23b-0vl2
  1714. - rebuilt with openldap-2.3.27-0vl1
  1715. * Mon Aug 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23b-0vl1
  1716. - new upstream release
  1717. * Fri Jul 28 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23a-0vl1
  1718. - new upstream release
  1719. * Sat Jul 22 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23-0vl1
  1720. - [SECURITY] new upstream release
  1721. - Memory exhaustion DoS against smbd (CVE-2006-3403)
  1722. - update patches
  1723. - buildroot.patch (#100)
  1724. - logfiles.patch (#103)
  1725. - smb.conf.patch (#106)
  1726. - update filter-requires-samba.sh (source999)
  1727. - get rid of bogus dependency on perl(Unicode::MapUTF8)
  1728. * Fri Jun 23 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.22-0vl1
  1729. - new upstream release
  1730. - renumber patches
  1731. - 000- for upstream patches
  1732. - 050- for security patches
  1733. - 100- for generic patches
  1734. - update logfiles.patch (#103)
  1735. - drop warning.patch (#104)
  1736. - not apply hex.patch (#105)
  1737. - add smb.conf.patch (#106)
  1738. - drop samba.log (source1), smb.conf (source2)
  1739. - use samba.pamd.stack instead of samba.pamd
  1740. - define macro: pkgingdir
  1741. - add files:
  1742. - samba-client
  1743. - %%{_bindir}/{smbget,eventlogadm}
  1744. - samba-common:
  1745. - %%{_bindir}/tdbtool
  1746. - separate development files to samba-libsmbclient-devel
  1747. - change groups
  1748. * Sat Apr 15 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl5
  1749. - remove unneeded dependencies
  1750. - update filter-requires-samba.sh (source999)
  1751. - overwrite __find_requires instead of __perl_requires
  1752. * Tue Mar 28 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl4
  1753. - rebuild with readline-5.1
  1754. * Sat Aug 13 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl3
  1755. - separate doc package with %%docpkg
  1756. - use %%htmlview instead of %%browser
  1757. * Sat Jul 16 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl2
  1758. - add %%config(noreplace) against %%{_sysconfdir}/xinetd.d/swat
  1759. * Fri Jul 15 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl1
  1760. - new upstream release
  1761. - install %%{_sysconfdir}/xinetd.d/swat
  1762. - update filter-requires-samba.sh
  1763. - add swat.desktop.in instead of swat.desktop
  1764. - switch browser by %%browser
  1765. - drop i18n patches
  1766. - update logfiles.patch (#3)
  1767. - add warning.patch (#4)
  1768. * Sun Jul 10 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.10-0vl2
  1769. - fix samba.log
  1770. - thanks, K. Moriyama [VinePlus:02606]
  1771. - remove docs/manpages from %%doc
  1772. * Mon Dec 27 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.10-0vl1
  1773. - new upstream release
  1774. - update struplower_m_i18n.patch (#102)
  1775. - drop obsolete patch (#10)
  1776. * Fri Dec 17 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.9-0vl2
  1777. - [SECURITY FIX] fix possible remote code execution (CAN-2004-1154)
  1778. - add samba-3.0.9-CAN-2004-1154.patch (#10)
  1779. - update patch (#102)
  1780. * Fri Nov 26 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.9-0vl1
  1781. - new upstream release
  1782. - drop obsolete patches (#10,11,110)
  1783. - update patches (#3,102)
  1784. * Sun Nov 21 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl6
  1785. - [SECURITY FIX] fix smbd buffer overrun (CAN-2004-0882)
  1786. - add samba-3.0.7-CAN-2004-0882.patch (patch11)
  1787. - update Source URL
  1788. * Tue Nov 09 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl5
  1789. - [SECURITY FIX] fix smbd remote DoS vulnerability (CAN-2004-0930)
  1790. - add samba-3.0.7-CAN-2004-0930.patch (patch10)
  1791. * Fri Oct 15 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl4
  1792. - update samba.log, {smb,winbind}.init
  1793. - use *.log as logfile name instead of log.* (patch3)
  1794. * Wed Oct 06 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl3
  1795. - change directories from %%{_localstatedir}/lock/samba
  1796. - LOCKDIR: %%{_localstatedir}/cache/samba
  1797. - PIDDIR: %%{_localstatedir}/run
  1798. - restart {smb,winbind} at postun (upgrade)
  1799. - samba-common
  1800. - convert smbpasswd at triggerpostun -- samba < 3.0.7
  1801. - add convert_smbpasswd
  1802. - add PreReq: gawk
  1803. * Sat Sep 25 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl2
  1804. - add docs_ja (source101) from 3.0.5-16ml
  1805. * Wed Sep 22 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl1
  1806. - new upstream release (shift to 3.0 series)
  1807. - refer to 3.0.6-3 (Fedora Core), 3.0.5-16ml (MIRACLE)
  1808. - drop obsolete paches, configure options
  1809. - update buildroot.patch
  1810. - add I18N patches (#101-)
  1811. - update smb.conf
  1812. - add URL
  1813. - use more macros
  1814. - change LIBDIR from %%{_sysconfdir}/samba to %%{_libdir}/samba
  1815. - move %%{_localstatedir}/log/samba, smbpasswd to samba-common
  1816. - move smbspool, smbcacls, rpcclient to samba-client
  1817. - update descriptions
  1818. * Wed Sep 08 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.11.ja.1.0-0vl1
  1819. - new upstream release
  1820. * Wed Sep 01 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.11.ja.1.0-0vl0.beta1
  1821. - 2.2.11-ja-1.0beta1
  1822. - drop patch10
  1823. - add BuildPreReq: openssl-devel
  1824. - swat
  1825. - add PreReq/Requires: inetd
  1826. - add swat.desktop
  1827. * Sun Jul 25 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9.ja.1.0-0vl3
  1828. - fix changelog
  1829. * Sat Jul 24 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9.ja.1.0-0vl2
  1830. - [SECURITY FIX] fix buffer overflow (CAN-2004-0686)
  1831. - add samba-2.2.9-ja-1.0-mangle.patch (Patch10)
  1832. - add BuildPreReq: cups-devel
  1833. - add Prereq: chkconfig mktemp psmisc (instead of each files)
  1834. * Thu Jun 03 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9.ja.1.0-0vl1
  1835. - new upstream release
  1836. * Thu May 27 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9.ja.1.0-0vl0.beta1
  1837. - 2.2.9-ja-1.0beta1
  1838. - add BuildPreReq: readline-devel
  1839. * Sat Jan 24 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.8a.ja.1.1-0vl3
  1840. - add ldconfig in %%post/%%postun script for libsmbclient
  1841. * Sat Jan 24 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.8a.ja.1.1-0vl2
  1842. - add libsmbclient subpackage.
  1843. * Thu Sep 11 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.2.8a.ja.1.1-0vl1
  1844. - new upstream release.
  1845. * Sat Aug 09 2003 KAZUKI SHIMURA <rito@pos.to> 2.2.8a.ja-1.0vl3
  1846. - fix smb.conf (SAMBADOC's path)
  1847. * Tue May 27 2003 Tomoya TAKA <taka@vinelinux.org> 2.2.8a.ja-1.0vl2
  1848. - tentatively skip to build examples/VFS on alpha
  1849. * Tue May 27 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.2.8a.ja-1.0vl1
  1850. - new upstream release.
  1851. * Mon May 19 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.2.7b.ja-1.0vl2
  1852. - fix smb.conf
  1853. - fix smbadduser
  1854. * Thu Apr 17 2003 KAZUKI SHIMURA <rito@pos.to> 2.2.7b.ja-1.0vl1
  1855. - new upstream version
  1856. * Sun Mar 23 2003 Satoshi MACHINO <machino@vinelinux.org> 2.2.7a.ja-1.1vl2
  1857. - added smbinit-vine.patch
  1858. -- added '-D' option in smbd and nmbd
  1859. * Thu Mar 20 2003 Satoshi MACHINO <machino@vinelinux.org> 2.2.7a.ja-1.1vl1
  1860. - New upstream version
  1861. -- security fix.
  1862. * Wed Feb 26 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  1863. - 2.2.7a.ja-1.0vl5
  1864. - merged from SPEC for RH60 by samba-jp.
  1865. * Mon Feb 17 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  1866. - 2.2.7a.ja-1.0vl4.beta1
  1867. - fix 'Requires:'.
  1868. * Tue Jan 28 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  1869. - 2.2.7a.ja-1.0vl3.alpha1
  1870. - disable --with-tdbsam.
  1871. * Sat Dec 28 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  1872. - 2.2.7a.ja-1.0vl2.alpha1
  1873. - modify %%post script for new password database.
  1874. * Fri Dec 27 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  1875. - 2.2.7a.ja-1.0vl1.alpha1
  1876. * Tue Nov 19 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  1877. - 2.2.6.ja-1.0vl1.alpha2
  1878. - apply alpha2 patch.
  1879. * Fri Nov 15 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  1880. - 2.2.6.ja-1.0vl1.alpha1
  1881. - remove swat from package 'samba'.
  1882. * Thu Nov 14 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  1883. - 2.2.6.ja-1.0vl0.alpha1
  1884. - enable winbind modules.
  1885. - change numbering rule.
  1886. * Thu Oct 24 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  1887. - 2.2.6_ja_0.alpha1-0vl1
  1888. * Tue Jun 11 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  1889. - 2.2.4_ja_0.alpha1.3-0vl1
  1890. * Sun Mar 17 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  1891. - 2.2.2_ja_1.1-0vl1
  1892. - disable winbind modules (2.2.2 or earlier has critical bugs).
  1893. - modify 'Requires:'.
  1894. * Fri Mar 15 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  1895. - 2.2.2_ja_1.1-0vl0
  1896. - shift sources to 2.2.x.
  1897. - add debugging mode for '%%files' section.
  1898. - modify spec largely because of too many difference between 2.0.x and 2.2.x.
  1899. - . exchange %%prep, %%build, %%install section with samba-jp's spec.
  1900. - . create a package 'samba-swat'.
  1901. - . move smbclient and nmblookup to samba-common.
  1902. - . move testprns to package 'samba' because it's checking tool for
  1903. - server on LOCALHOST.
  1904. - . move '%%post' to '%%post swat'.
  1905. - . disable '%%post common'.
  1906. * Sun Dec 02 2001 Toru Sagami <sagami@vinelinux.org>
  1907. - 2.0.10_ja_1.2
  1908. * Mon Sep 03 2001 Toru Sagami <sagami@vinelinux.org>
  1909. - 2.0.10_ja_1.1-0vl4
  1910. - eliminate executable bit in %%doc to erase perl/sh requirement
  1911. * Thu Aug 23 2001 Toru Sagami <sagami@vinelinux.org>
  1912. - 2.0.10_ja_1.1-0vl3: s/$RPM_BUILD_ROOT/%%{buildroot}/
  1913. - patch swat/ja/help/welcome.html to hide some missing matter
  1914. - also remove docs/zh_{CN,TW} files in %%doc
  1915. * Wed Aug 22 2001 Satoshi MACHINO <machino@vinelinux.org> 2.0.10_ja_1.1-0vl2
  1916. - for VineSeed
  1917. - deleted %%define _syssbindir and _localedir (defined in rpmmacros in rpm-3.0.6-0vl14)
  1918. * Wed Aug 22 2001 Satoshi MACHINO <machino@vinelinux.org> 2.0.10_ja_1.1-0vl1
  1919. - 2.0.10_ja_1.1
  1920. - for 2.1.x update
  1921. * Fri Aug 17 2001 <sagami@vinelinux.org>
  1922. - 2.0.10_ja_1.0-0vl2
  1923. - remove almost duplicated docs/{,ja/}{manpages,yodldocs} files in %%doc
  1924. * Mon Jul 09 2001 <sagami@vinelinux.org>
  1925. - 2.0.10_ja_1.0-0vl1: includes secrity fix
  1926. (http://www.samba.org/samba/whatsnew/macroexploit.html)
  1927. - remove using_samba, HowToUseSamba and docs/ja_JP.SJIS directory from %%doc
  1928. * Thu May 31 2001 <sagami@vinelinux.org>
  1929. - 2.0.9_ja_1.0-0vl1: added swat/ja/help/HowToUseSamba
  1930. - added BuildPreReq = pam-devel for Vine 2.1.5+
  1931. - fixed init script to match our current/old style
  1932. - eliminate CVS related files from %%doc
  1933. * Thu Apr 19 2001 <sagami@vinelinux.org>
  1934. - 2.0.7_ja_2.2-0vl1
  1935. * Thu Dec 21 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  1936. - 2.0.7_ja_1.3-0vl2
  1937. - rebuilt with readline2
  1938. - use better macros (although not almost complete... needs comfirmation)
  1939. * Tue Sep 19 2000 Jun Nishii <jun@vinelinux.org>
  1940. - 2.0.7_ja_1.3-0vl1
  1941. * Tue Sep 12 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  1942. - 2.0.7_ja_1.2.1-0vl2
  1943. - fixed missing Changelog.ja (was Chagelog.ja)
  1944. * Tue Sep 12 2000 Jun Nishii <jun@vinelinux.org>
  1945. - updated to 2.0.7-ja-1.2.1
  1946. * Wed Jul 19 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  1947. - updated to 2.0.7-ja-1.2
  1948. * Tue Jul 11 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  1949. - added some Japanese documents to %doc
  1950. * Mon Jul 10 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  1951. - updated to 2.0.7-ja-1.0
  1952. * Mon May 29 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  1953. - updated to 2.0.7-ja-0.99
  1954. * Mon May 29 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  1955. - added rpccilent
  1956. - modified tcpdconf for stability.
  1957. * Fri May 26 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  1958. - first test release for Vine based on RH6.2 spec file.
  1959. - activated swat in default for only localhost.
  1960. * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com>
  1961. - fix trigger, again.
  1962. * Mon Feb 7 2000 Bill Nottingham <notting@redhat.com>
  1963. - fix trigger.
  1964. * Fri Feb 4 2000 Bill Nottingham <notting@redhat.com>
  1965. - turn on quota support
  1966. * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com>
  1967. - rebuild to fox dependencies
  1968. - man pages are compressed
  1969. * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
  1970. - munge post scripts slightly
  1971. * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
  1972. - turn on mmap again. Wheee.
  1973. - ship smbmount on alpha
  1974. * Mon Dec 6 1999 Bill Nottingham <notting@redhat.com>
  1975. - turn off mmap. ;)
  1976. * Wed Dec 1 1999 Bill Nottingham <notting@redhat.com>
  1977. - change /var/log/samba to 0700
  1978. - turn on mmap support
  1979. * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com>
  1980. - update to 2.0.6
  1981. * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com>
  1982. - add a %defattr for -common
  1983. * Tue Oct 5 1999 Bill Nottingham <notting@redhat.com>
  1984. - shift some files into -client
  1985. - remove /home/samba from package.
  1986. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com>
  1987. - initscript oopsie. killproc <name> -HUP, not other way around.
  1988. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com>
  1989. - script cleanups. Again.
  1990. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com>
  1991. - add a patch to fix dropped reconnection attempts
  1992. * Mon Sep 6 1999 Jeff Johnson <jbj@redhat.com>
  1993. - use cp rather than mv to preserve /etc/services perms (#4938 et al).
  1994. - use mktemp to generate /etc/tmp.XXXXXX file name.
  1995. - add prereqs on sed/mktemp/killall (need to move killall to /bin).
  1996. - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7")
  1997. * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
  1998. - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd
  1999. * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com>
  2000. - fix typo in mount.smb
  2001. * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
  2002. - add a %trigger to work around (sort of) broken scripts in
  2003. previous releases
  2004. * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
  2005. - initscript munging
  2006. * Mon Aug 9 1999 Bill Nottingham <notting@redhat.com>
  2007. - add domain parsing to mount.smb
  2008. * Fri Aug 6 1999 Bill Nottingham <notting@redhat.com>
  2009. - add a -common package, shuffle files around.
  2010. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com>
  2011. - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable
  2012. * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com>
  2013. - update to 2.0.5
  2014. - fix mount.smb - smbmount options changed again.........
  2015. - fix postun. oops.
  2016. - update some stuff from the samba team's spec file.
  2017. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com>
  2018. - split off clients into separate package
  2019. - don't run samba by default
  2020. * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
  2021. - fix one problem with mount.smb script
  2022. - fix smbpasswd on sparc with a really ugly kludge
  2023. * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com>
  2024. - fixed logrotate script
  2025. * Tue May 25 1999 Bill Nottingham <notting@redhat.com>
  2026. - turn of 64-bit locking on 32-bit platforms
  2027. * Thu May 20 1999 Bill Nottingham <notting@redhat.com>
  2028. - so many releases, so little time
  2029. - explicitly uncomment 'printing = bsd' in sample config
  2030. * Tue May 18 1999 Bill Nottingham <notting@redhat.com>
  2031. - update to 2.0.4a
  2032. - fix mount.smb arg ordering
  2033. * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com>
  2034. - go back to stop/start for restart (-HUP didn't work in testing)
  2035. * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
  2036. - add a mount.smb to make smb mounting a little easier.
  2037. - smb filesystems apparently don't work on alpha. Oops.
  2038. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com>
  2039. - always create codepages
  2040. * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com>
  2041. - logrotate changes
  2042. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  2043. - auto rebuild in the new build environment (release 3)
  2044. * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com>
  2045. - updated init script to use graceful restart (not stop/start)
  2046. * Tue Mar 9 1999 Bill Nottingham <notting@redhat.com>
  2047. - update to 2.0.3
  2048. * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
  2049. - update to 2.0.2
  2050. * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com>
  2051. - swat swat
  2052. * Tue Feb 9 1999 Bill Nottingham <notting@redhat.com>
  2053. - fix bash2 breakage in post script
  2054. * Fri Feb 5 1999 Bill Nottingham <notting@redhat.com>
  2055. - update to 2.0.0
  2056. * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
  2057. - make sure all binaries are stripped
  2058. * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com>
  2059. - update to 1.9.18p10.
  2060. - fix %triggerpostun.
  2061. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com>
  2062. - updated postun triggerscript to check $0
  2063. - clear /etc/codepages from %preun instead of %postun
  2064. * Mon Jun 08 1998 Erik Troan <ewt@redhat.com>
  2065. - made the %postun script a tad less agressive; no reason to remove
  2066. the logs or lock file (after all, if the lock file is still there,
  2067. samba is still running)
  2068. - the %postun and %preun should only exectute if this is the final
  2069. removal
  2070. - migrated %triggerpostun from Red Hat's samba package to work around
  2071. packaging problems in some Red Hat samba releases
  2072. * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au>
  2073. - minor tidy up in preparation for release of 1.9.18p5
  2074. - added findsmb utility from SGI package
  2075. * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au>
  2076. - Updated version and codepage info.
  2077. - Release to test name resolve order
  2078. * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au>
  2079. - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com>
  2080. - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb
  2081. - Compounded make line
  2082. - Updated smb.init restart mechanism
  2083. - Use compound mkdir -p line instead of individual calls to mkdir
  2084. - Fixed smb.conf file path for log files
  2085. - Fixed smb.conf file path for incoming smb print spool directory
  2086. - Added a number of options to smb.conf file
  2087. - Added smbadduser command (missed from all previous RPMs) - Doooh!
  2088. - Added smbuser file and smb.conf file updates for username map