samba-vl.spec 88 KB

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